Home
last modified time | relevance | path

Searched refs:cacheType (Results 1 – 9 of 9) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleCache.java29 public SimpleCache(int cacheType) { in SimpleCache() argument
30 this(cacheType, DEFAULT_CAPACITY); in SimpleCache()
33 public SimpleCache(int cacheType, int initialCapacity) { in SimpleCache() argument
34 if (cacheType == ICUCache.WEAK) { in SimpleCache()
35 type = cacheType; in SimpleCache()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DSimpleCache.java33 public SimpleCache(int cacheType) { in SimpleCache() argument
34 this(cacheType, DEFAULT_CAPACITY); in SimpleCache()
37 public SimpleCache(int cacheType, int initialCapacity) { in SimpleCache() argument
38 if (cacheType == ICUCache.WEAK) { in SimpleCache()
39 type = cacheType; in SimpleCache()
/external/OpenCL-CTS/test_conformance/api/
Dtest_queries.cpp590 cl_device_mem_cache_type cacheType; in test_get_device_info()
591 …GetDeviceInfo( deviceID, CL_DEVICE_GLOBAL_MEM_CACHE_TYPE, sizeof( cacheType ), &cacheType, &size ); in test_get_device_info()
593 if( size != sizeof( cacheType ) ) in test_get_device_info()
595 … mem cache type does not validate! (expected %d, got %d)\n", (int)sizeof( cacheType ), (int)size ); in test_get_device_info()
598 …ar *cacheTypeName = ( cacheType == CL_NONE ) ? "CL_NONE" : ( cacheType == CL_READ_ONLY_CACHE ) ? "… in test_get_device_info()
613 if( size != sizeof( cacheType ) ) in test_get_device_info()
618 …const char *localMemTypeName = ( localMemType == CL_LOCAL ) ? "CL_LOCAL" : ( cacheType == CL_GLOBA… in test_get_device_info()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineCreationCacheControlTests.cpp305 CacheType cacheType; member
417 if (params.cacheType != TestParams::EXPLICIT_CACHE) in createPipelineCache()
737 if (testParameter.cacheType == TestParams::DERIVATIVE_INDEX) in createPipelineCreateInfos()
912 …if ((testParameter.cacheType == TestParams::DERIVATIVE_HANDLE) && (*basePipeline == VK_NULL_HANDLE… in testInstance()
959 if (testParameter.cacheType == TestParams::DERIVATIVE_INDEX) in createPipelineCreateInfos()
1097 …if ((testParameter.cacheType == TestParams::DERIVATIVE_HANDLE) && (*basePipeline == VK_NULL_HANDLE… in testInstance()
/external/angle/src/libANGLE/renderer/vulkan/
DProgramExecutableVk.h204 void accumulateCacheStats(VulkanCacheType cacheType, const CacheStats &cacheStats);
DProgramExecutableVk.cpp103 DescriptorSetIndex CacheTypeToDescriptorSetIndex(VulkanCacheType cacheType) in CacheTypeToDescriptorSetIndex() argument
105 switch (cacheType) in CacheTypeToDescriptorSetIndex()
1964 void ProgramExecutableVk::accumulateCacheStats(VulkanCacheType cacheType, in accumulateCacheStats() argument
1967 DescriptorSetIndex dsIndex = CacheTypeToDescriptorSetIndex(cacheType); in accumulateCacheStats()
DRendererVk.cpp3261 int cacheType = 0; in logCacheStats() local
3265 INFO() << " CacheType " << cacheType++ << ": " << stats.getHitRatio(); in logCacheStats()
/external/llvm-project/mlir/lib/Dialect/Affine/IR/
DAffineOps.cpp2401 StringRef readOrWrite, cacheType; in parseAffinePrefetchOp() local
2416 parser.parseKeyword(&cacheType) || in parseAffinePrefetchOp()
2430 if (!cacheType.equals("data") && !cacheType.equals("instr")) in parseAffinePrefetchOp()
2436 parser.getBuilder().getBoolAttr(cacheType.equals("data"))); in parseAffinePrefetchOp()
/external/llvm-project/mlir/lib/Dialect/StandardOps/IR/
DOps.cpp2560 StringRef readOrWrite, cacheType; in parsePrefetchOp() local
2572 parser.parseKeyword(&cacheType) || parser.parseColonType(type) || in parsePrefetchOp()
2584 if (!cacheType.equals("data") && !cacheType.equals("instr")) in parsePrefetchOp()
2590 parser.getBuilder().getBoolAttr(cacheType.equals("data"))); in parsePrefetchOp()