/external/compiler-rt/lib/scudo/ |
scudo_allocator.cpp | 161 static thread_local AllocatorCache Cache; 169 // quarantine and swallowing the cache. 175 getAllocator().DestroyCache(&Cache); 201 getAllocator().InitCache(&Cache); 206 explicit QuarantineCallback(AllocatorCache *Cache) 207 : Cache_(Cache) {} 243 typedef ScudoQuarantine::Cache QuarantineCache; 341 Ptr = BackendAllocator.Allocate(&Cache, NeededSize, MinAlignment); 419 QuarantineCallback(&Cache), Chunk, Size); 494 QuarantineCallback(&Cache), Chunk, OldSize) [all...] |
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
ThreadReferenceImpl.java | 51 * is resumed, that cache must be purged. 53 * cache some info that is only valid as long as the entire VM is suspended. 54 * If _any_ thread is resumed, this cache must be purged. To handle this, 64 // the thread is resumed, we abandon the current cache object and 86 * method that wants to use this cache must make a local copy of 88 * these methods will use a copy of the cache object that was in 108 private static class Cache extends ObjectReferenceImpl.Cache { 111 protected ObjectReferenceImpl.Cache newCache() { 112 return new Cache(); [all...] |
/external/doclava/src/com/google/doclava/ |
Converter.java | 330 private static Cache mClasses = new Cache() { 450 private static Cache mMethods = new Cache() { 556 private static Cache mFields = new Cache() { 574 private static Cache mPackagees = new Cache() { 586 private static Cache mTypes = new Cache() { [all...] |
/device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/ |
SecCarInit.asm | 34 ; Description: This function initializes the Cache for Data, Stack, and Code
|
/external/guice/core/src/com/google/inject/internal/ |
WeakKeySet.java | 21 import com.google.common.cache.Cache; 22 import com.google.common.cache.CacheBuilder; 23 import com.google.common.cache.RemovalCause; 24 import com.google.common.cache.RemovalListener; 25 import com.google.common.cache.RemovalNotification; 54 private final Cache<State, Set<KeyAndSource>> evictionCache =
|
/external/llvm/lib/CodeGen/ |
InterferenceCache.h | 38 /// Entry - A cache entry containing interference information for all aliases 44 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions 100 assert(!hasRefs() && "Cannot clear cache entry with references"); 132 // We don't keep a cache entry for every physical register, that would use too 133 // much memory. Instead, a fixed number of cache entries are used in a round- 145 // The actual cache entries. 162 /// init - Prepare cache for a new function. 170 /// Cursor - The primary query interface for the block interference cache. 202 void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) { 207 setEntry(Cache.get(PhysReg)) [all...] |
/external/syzkaller/vendor/golang.org/x/net/http/httpguts/ |
guts.go | 30 "Cache-Control": true,
|
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Arm/ |
ArmV7Support.asm | 29 mcr p15, 0, r0, c7, c6, 1 ; invalidate single data cache line
33 mcr p15, 0, r0, c7, c10, 1 ; clean single data cache line
38 mcr p15, 0, r0, c7, c5, 1 ; invalidate single instruction cache line to PoU
44 mcr p15, 0, r0, c7, c11, 1 ; clean single data cache line to PoU
49 mcr p15, 0, r0, c7, c14, 1 ; clean and invalidate single data cache line
69 mcr p15,0,R0,c7,c5,0 ;Invalidate entire instruction cache
95 bic r0, r0, #CTRL_C_BIT ; Disable D Cache
96 bic r0, r0, #CTRL_I_BIT ; Disable I Cache
108 ldr R1,=DC_ON ; Specify SCTLR.C bit : (Data) Cache enable bit
117 ldr R1,=DC_ON ; Specify SCTLR.C bit : (Data) Cache enable bit [all...] |
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/MultiPlatformLib/ |
MultiPlatformLib.h | 69 #include <Ppi/Cache.h>
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/ |
MemoryCallback.c | 38 #include <Ppi/Cache.h>
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafety.h | 219 void threadSafetyCleanup(BeforeSet *Cache);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_clock.h | 83 typedef DenseSlabAllocCache Cache;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
CFLSteensAliasAnalysis.h | 58 /// Inserts the given Function into the cache. 63 /// Ensures that the given function is available in the cache. 64 /// Returns the appropriate entry from the cache. 97 /// in the cache as an Optional without a value. This way, if we 100 DenseMap<Function *, Optional<FunctionInfo>> Cache;
|
ObjCARCAnalysisUtils.h | 93 DenseMap<const Value *, WeakTrackingVH> &Cache) { 94 if (auto InCache = Cache.lookup(V)) 98 Cache[V] = const_cast<Value *>(Computed); 255 /// A cache of MDKinds used by various ARC optimizations.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/ |
PtrState.cpp | 178 bool BottomUpPtrState::InitBottomUp(ARCMDKindCache &Cache, Instruction *I) { 194 I->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease)); 348 bool TopDownPtrState::MatchWithRelease(ARCMDKindCache &Cache, 355 Release->getMetadata(Cache.get(ARCMDKindID::ImpreciseRelease));
|
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/java/io/grpc/clientcacheexample/ |
ClientCacheExampleActivity.java | 59 private SafeMethodCachingInterceptor.Cache cache; field in class:ClientCacheExampleActivity 74 cache = SafeMethodCachingInterceptor.newLruCache(CACHE_SIZE_IN_BYTES); 83 new GrpcTask(this, cache) 95 private final SafeMethodCachingInterceptor.Cache cache; field in class:ClientCacheExampleActivity.GrpcTask 98 private GrpcTask(Activity activity, SafeMethodCachingInterceptor.Cache cache) { 100 this.cache = cache; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ListFormatter.java | 169 return cache.get(locale, style.getName()); 311 private static class Cache { 312 private final ICUCache<String, ListFormatter> cache = field in class:ListFormatter.Cache 317 ListFormatter result = cache.get(key); 320 cache.put(key, result); 338 static Cache cache = new Cache(); field in class:ListFormatter
|
TimeZoneNames.java | 116 private static Cache TZNAMES_CACHE = new Cache(); 485 * TimeZoneNames cache used by {@link TimeZoneNames#getInstance(ULocale)} 487 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ListFormatter.java | 170 return cache.get(locale, style.getName()); 316 private static class Cache { 317 private final ICUCache<String, ListFormatter> cache = field in class:ListFormatter.Cache 322 ListFormatter result = cache.get(key); 325 cache.put(key, result); 343 static Cache cache = new Cache(); field in class:ListFormatter
|
TimeZoneNames.java | 133 private static Cache TZNAMES_CACHE = new Cache(); 515 * TimeZoneNames cache used by {@link TimeZoneNames#getInstance(ULocale)} 517 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> {
|
/external/lzma/C/ |
Ppmd7Enc.c | 15 p->Cache = 0;
23 Byte temp = p->Cache;
30 p->Cache = (Byte)((UInt32)p->Low >> 24);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/ |
LTO.h | 176 /// This is the type of a native object cache. To request an item from the 177 /// cache, pass a unique string as the Key. For hits, the cached file will be 179 /// the cache will return a stream callback which must be called at most once to 186 /// if (AddStreamFn AddStream = Cache(Task, Key)) 197 AddStreamFn AddStream, NativeObjectCache Cache)> 237 /// and Cache functions to add up to getMaxTasks() native object files to 265 /// The Cache parameter is optional. If supplied, it will be used to cache 269 /// Cache) for each task identifier. 270 Error run(AddStreamFn AddStream, NativeObjectCache Cache = nullptr) [all...] |
/external/u-boot/board/renesas/MigoR/ |
lowlevel_init.S | 31 write32 CCR_A, CCR_D ! Address of Cache Control Register 32 ! Instruction Cache Invalidate 64 write32 CCR_A, CCR_D_2 ! Address of Cache Control Register
|
/external/v8/tools/clang/blink_gc_plugin/ |
RecordInfo.h | 123 RecordInfo(clang::CXXRecordDecl* record, RecordCache* cache); 191 for (Cache::iterator it = cache_.begin(); it != cache_.end(); ++it) { 207 typedef std::map<clang::CXXRecordDecl*, RecordInfo> Cache; 208 Cache cache_;
|
/external/volley/src/main/java/com/android/volley/ |
CacheDispatcher.java | 28 * Provides a thread for performing cache triage on a queue of requests. 30 * <p>Requests added to the specified cache queue are resolved from cache. Any deliverable response 31 * is posted back to the caller via a {@link ResponseDelivery}. Cache misses and responses that 45 /** The cache to read from. */ 46 private final Cache mCache; 54 /** Manage list of waiting requests and de-duplicate requests with same cache key. */ 58 * Creates a new cache triage dispatcher thread. You must call {@link #start()} in order to 63 * @param cache Cache interface to use for resolutio [all...] |