| /minix3/minix/drivers/power/acpi/utilities/ |
| H A D | utcache.c | 74 ACPI_MEMORY_LIST *Cache; in AcpiOsCreateCache() local 87 Cache = AcpiOsAllocate (sizeof (ACPI_MEMORY_LIST)); in AcpiOsCreateCache() 88 if (!Cache) in AcpiOsCreateCache() 95 ACPI_MEMSET (Cache, 0, sizeof (ACPI_MEMORY_LIST)); in AcpiOsCreateCache() 96 Cache->ListName = CacheName; in AcpiOsCreateCache() 97 Cache->ObjectSize = ObjectSize; in AcpiOsCreateCache() 98 Cache->MaxDepth = MaxDepth; in AcpiOsCreateCache() 100 *ReturnCache = Cache; in AcpiOsCreateCache() 119 ACPI_MEMORY_LIST *Cache) in AcpiOsPurgeCache() argument 128 if (!Cache) in AcpiOsPurgeCache() [all …]
|
| H A D | uttrack.c | 107 ACPI_MEMORY_LIST *Cache; in AcpiUtCreateList() local 110 Cache = AcpiOsAllocate (sizeof (ACPI_MEMORY_LIST)); in AcpiUtCreateList() 111 if (!Cache) in AcpiUtCreateList() 116 ACPI_MEMSET (Cache, 0, sizeof (ACPI_MEMORY_LIST)); in AcpiUtCreateList() 118 Cache->ListName = ListName; in AcpiUtCreateList() 119 Cache->ObjectSize = ObjectSize; in AcpiUtCreateList() 121 *ReturnCache = Cache; in AcpiUtCreateList()
|
| /minix3/external/bsd/llvm/dist/llvm/unittests/ExecutionEngine/MCJIT/ |
| H A D | MCJITObjectCacheTest.cpp | 126 std::unique_ptr<TestObjectCache> Cache(new TestObjectCache); in TEST_F() local 133 TheJIT->setObjectCache(Cache.get()); in TEST_F() 136 const MemoryBuffer *ObjBuffer = Cache->getObjectInternal(SavedModulePointer); in TEST_F() 142 EXPECT_TRUE(Cache->wasModuleLookedUp(SavedModulePointer)); in TEST_F() 145 ObjBuffer = Cache->getObjectInternal(SavedModulePointer); in TEST_F() 149 EXPECT_FALSE(Cache->wereDuplicatesInserted()); in TEST_F() 155 std::unique_ptr<TestObjectCache> Cache(new TestObjectCache); in TEST_F() local 159 TheJIT->setObjectCache(Cache.get()); in TEST_F() 176 TheJIT->setObjectCache(Cache.get()); in TEST_F() 180 EXPECT_TRUE(Cache->wasModuleLookedUp(SecondModulePointer)); in TEST_F() [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | LeaksContext.h | 42 Cache(nullptr), Name(name) { } 45 Cache = nullptr; 60 if (Cache) { 61 assert(Cache != o && "Object already in set!"); 62 Ts.insert(Cache); 64 Cache = o; 68 if (o == Cache) 69 Cache = nullptr; // Cache hit 77 assert(!Cache && "No value should be cached anymore!"); 97 const T* Cache;
|
| H A D | Value.cpp | 285 static bool contains(SmallPtrSetImpl<ConstantExpr *> &Cache, ConstantExpr *Expr, in contains() argument 287 if (!Cache.insert(Expr).second) in contains() 296 if (contains(Cache, CE, C)) in contains() 314 SmallPtrSet<ConstantExpr *, 4> Cache; in contains() local 315 return contains(Cache, CE, C); in contains()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Analysis/ |
| H A D | MemoryDependenceAnalysis.cpp | 701 static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache, in AssertSorted() argument 703 if (Count == -1) Count = Cache.size(); in AssertSorted() 707 assert(!(Cache[i] < Cache[i-1]) && "Cache isn't sorted!"); in AssertSorted() 728 NonLocalDepInfo &Cache = CacheP.first; in getNonLocalCallDependency() local 736 if (!Cache.empty()) { in getNonLocalCallDependency() 741 return Cache; in getNonLocalCallDependency() 746 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache.end(); in getNonLocalCallDependency() 752 std::sort(Cache.begin(), Cache.end()); in getNonLocalCallDependency() 770 unsigned NumSortedEntries = Cache.size(); in getNonLocalCallDependency() 771 DEBUG(AssertSorted(Cache)); in getNonLocalCallDependency() [all …]
|
| H A D | CFLAliasAnalysis.cpp | 176 DenseMap<Function *, Optional<FunctionInfo>> Cache; member 201 void evict(Function *Fn) { Cache.erase(Fn); } in evict() 206 auto Iter = Cache.find(Fn); in ensureCached() 207 if (Iter == Cache.end()) { in ensureCached() 209 Iter = Cache.find(Fn); in ensureCached() 210 assert(Iter != Cache.end()); in ensureCached() 947 auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>())); in scan() 953 Cache[Fn] = std::move(Info); in scan()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Support/ |
| H A D | SourceMgr.cpp | 43 if (LineNoCacheTy *Cache = getCache(LineNoCache)) in ~SourceMgr() local 44 delete Cache; in ~SourceMgr() 96 if (LineNoCacheTy *Cache = getCache(LineNoCache)) in getLineAndColumn() local 97 if (Cache->LastQueryBufferID == BufferID && in getLineAndColumn() 98 Cache->LastQuery <= Loc.getPointer()) { in getLineAndColumn() 99 Ptr = Cache->LastQuery; in getLineAndColumn() 100 LineNo = Cache->LineNoOfQuery; in getLineAndColumn() 113 LineNoCacheTy &Cache = *getCache(LineNoCache); in getLineAndColumn() local 114 Cache.LastQueryBufferID = BufferID; in getLineAndColumn() 115 Cache.LastQuery = Ptr; in getLineAndColumn() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Basic/ |
| H A D | FileSystemStatCache.cpp | 56 FileSystemStatCache *Cache, vfs::FileSystem &FS) { in get() argument 61 if (Cache) in get() 62 R = Cache->getStat(Path, Data, isFile, F, FS); in get()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | FileSystemStatCache.h | 72 std::unique_ptr<vfs::File> *F, FileSystemStatCache *Cache, 77 void setNextStatCache(std::unique_ptr<FileSystemStatCache> Cache) { in setNextStatCache() argument 78 NextStatCache = std::move(Cache); in setNextStatCache()
|
| /minix3/crypto/external/bsd/openssl/dist/crypto/des/times/ |
| H A D | aix.cc | 6 Data/Instr Cache : 16 K 7 L2 Cache : 256 K
|
| /minix3/minix/drivers/power/acpi/include/platform/ |
| H A D | aclinuxex.h | 109 ACPI_CACHE_T *Cache) in AcpiOsAcquireObject() argument 111 return kmem_cache_zalloc (Cache, in AcpiOsAcquireObject()
|
| /minix3/external/bsd/file/dist/magic/magdir/ |
| H A D | wsdl | 4 # wsdl: PHP WSDL Cache, http://www.php.net/manual/en/book.soap.php 5 # Cache format extracted from source:
|
| /minix3/minix/drivers/power/acpi/include/ |
| H A D | acpiosxf.h | 286 ACPI_CACHE_T *Cache); 292 ACPI_CACHE_T *Cache); 298 ACPI_CACHE_T *Cache); 304 ACPI_CACHE_T *Cache,
|
| H A D | acdebug.h | 351 ACPI_MEMORY_LIST *Cache);
|
| H A D | acobject.h | 532 ACPI_OBJECT_CACHE_LIST Cache; member
|
| /minix3/crypto/external/bsd/openssl/dist/times/ |
| H A D | aix.t | 5 Data/Instr Cache : 16 K 6 L2 Cache : 256 K
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | ImmutableList.h | 144 CacheTy Cache; variable 173 ListTy* L = Cache.FindNodeOrInsertPos(ID, InsertPos); in concat() 182 Cache.InsertNode(L, InsertPos); in concat()
|
| /minix3/crypto/external/bsd/openssl/dist/crypto/bn/ |
| H A D | todo | 1 Cache RECP_CTX values
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | InterferenceCache.h | 202 void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) { in setPhysReg() argument 207 setEntry(Cache.get(PhysReg)); in setPhysReg()
|
| /minix3/external/bsd/llvm/dist/clang/lib/AST/ |
| H A D | Type.cpp | 2156 typedef TypePropertyCache<Private> Cache; typedef 2203 return Cache::get(cast<ComplexType>(T)->getElementType()); in computeCachedProperties() 2205 return Cache::get(cast<PointerType>(T)->getPointeeType()); in computeCachedProperties() 2207 return Cache::get(cast<BlockPointerType>(T)->getPointeeType()); in computeCachedProperties() 2210 return Cache::get(cast<ReferenceType>(T)->getPointeeType()); in computeCachedProperties() 2213 return merge(Cache::get(MPT->getClass()), in computeCachedProperties() 2214 Cache::get(MPT->getPointeeType())); in computeCachedProperties() 2219 return Cache::get(cast<ArrayType>(T)->getElementType()); in computeCachedProperties() 2222 return Cache::get(cast<VectorType>(T)->getElementType()); in computeCachedProperties() 2224 return Cache::get(cast<FunctionType>(T)->getReturnType()); in computeCachedProperties() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/Lex/ |
| H A D | PTHLexer.cpp | 692 CacheTy Cache; member in clang::PTHStatCache 696 : Cache(FL.getNumBuckets(), FL.getNumEntries(), FL.getBuckets(), in PTHStatCache() 703 CacheTy::iterator I = Cache.find(Path); in getStat() 706 if (I == Cache.end()) in getStat()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | CallEvent.h | 901 SmallVector<void *, 8> Cache; variable 905 Cache.push_back(const_cast<void *>(Memory)); in reclaim() 910 if (Cache.empty()) in allocate() 913 return Cache.pop_back_val(); in allocate()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | Sema.cpp | 535 RecordCompleteMap::iterator Cache = MNCComplete.find(RD); in MethodsAndNestedClassesComplete() local 536 if (Cache != MNCComplete.end()) in MethodsAndNestedClassesComplete() 537 return Cache->second; in MethodsAndNestedClassesComplete() 577 RecordCompleteMap::iterator Cache = RecordsComplete.find(RD); in IsRecordFullyDefined() local 578 if (Cache != RecordsComplete.end()) in IsRecordFullyDefined() 579 return Cache->second; in IsRecordFullyDefined()
|
| /minix3/external/bsd/llvm/dist/llvm/test/MC/PowerPC/ |
| H A D | ppc64-encoding-bookII.s | 5 # Cache management instruction
|