HomeSort by relevance Sort by last modified time
    Searched defs:Cache (Results 26 - 50 of 327) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 53 /// \brief Inserts the given Function into the cache.
58 /// \brief Ensures that the given function is available in the cache.
59 /// Returns the appropriate entry from the cache.
113 /// in the cache as an Optional without a value. This way, if we
116 DenseMap<Function *, Optional<FunctionInfo>> Cache;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
81 /// \brief Ensures that the given function is available in the cache.
82 /// Returns the appropriate entry from the cache.
85 /// \brief Inserts the given Function into the cache.
95 /// in the cache as an Optional without a value. This way, if we
98 DenseMap<const Function *, Optional<FunctionInfo>> Cache;
CFLSteensAliasAnalysis.h 53 /// \brief Inserts the given Function into the cache.
58 /// \brief Ensures that the given function is available in the cache.
59 /// Returns the appropriate entry from the cache.
113 /// in the cache as an Optional without a value. This way, if we
116 DenseMap<Function *, Optional<FunctionInfo>> Cache;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.c 76 Allocate and initialize an IP4 route cache entry.
81 @param[in] Tag The tag from the caller. This marks all the cache
84 @return NULL if failed to allocate memory for the cache, other point
85 to the created route cache entry.
117 Free the route cache entry. It is reference counted.
119 @param RtCacheEntry The route cache entry to free.
136 Initialize an empty route cache table.
138 @param[in, out] RtCache The rotue cache table to initialize.
155 Clean up a route cache, that is free all the route cache
    [all...]
Ip4Route.h 2 EFI IP4 route table and route cache table defintions.
23 #define IP4_ROUTE_CACHE_MAX 64 // Max NO. of cache entry per hash bucket
44 /// The route cache entry. The route cache entry is optional.
48 /// The cache entry field Tag is used to tag all the route
49 /// cache entry spawned from a route table entry. This makes
50 /// it simple to delete all the route cache entries from a
63 /// The route cache table is organized as a hash table. Each
64 /// IP4 route table has a embedded route cache. For now the
65 /// route cache and route table are binded togehter. But keep
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootClient.h 39 // Structure for a cache item
55 // Cache info.
57 HTTP_BOOT_CACHE_CONTENT *Cache;
HttpBootClient.c 460 Release all the resource of a cache item.
462 @param[in] Cache The pointer to the cache item.
467 IN HTTP_BOOT_CACHE_CONTENT *Cache
475 if (Cache != NULL) {
479 if (Cache->RequestData != NULL) {
480 if (Cache->RequestData->Url != NULL) {
481 FreePool (Cache->RequestData->Url);
483 FreePool (Cache->RequestData);
489 if (Cache->ResponseData != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.h 2 EFI IP6 route table and route cache table defintions.
24 /// Max NO. of cache entry per hash bucket
59 // the default routes. A route table also contains a route cache.
66 IP6_ROUTE_CACHE Cache;
71 as the index of the route cache bucket according to the prefix of two IPv6 addresses.
86 Allocate and initialize an IP6 route cache entry.
91 @param[in] Tag The tag from the caller. This marks all the cache entries
94 @return NULL if it failed to allocate memory for the cache. Otherwise, point
95 to the created route cache entry.
107 Free the route cache entry. It is reference counted.
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_dense_alloc.h 13 // DenseSlabAllocCache is a thread-local cache for DenseSlabAlloc.
32 IndexT cache[kSize]; member in class:__tsan::DenseSlabAllocCache
39 typedef DenseSlabAllocCache Cache;
40 typedef typename Cache::IndexT IndexT;
61 IndexT Alloc(Cache *c) {
64 return c->cache[--c->pos];
67 void Free(Cache *c, IndexT idx) {
69 if (c->pos == Cache::kSize)
71 c->cache[c->pos++] = idx;
80 void FlushCache(Cache *c)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/cs/
ThreadLocalCoders.java 40 private static abstract class Cache {
43 private ThreadLocal<Object[]> cache = new ThreadLocal<>(); field in class:ThreadLocalCoders.Cache
46 Cache(int size) {
62 Object[] oa = cache.get();
65 cache.set(oa);
88 private static Cache decoderCache = new Cache(CACHE_SIZE) {
112 private static Cache encoderCache = new Cache(CACHE_SIZE) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
IdeBus.h 100 UINT8 *Cache;
  /external/clang/lib/AST/
OpenMPClause.cpp 572 llvm::SmallPtrSet<const ValueDecl *, 8> Cache;
575 if (Cache.count(VD))
578 Cache.insert(VD);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 45 typedef QuarantineCache<Callback> Cache;
60 void Put(Cache *c, Callback cb, Node *ptr, uptr size) {
66 void NOINLINE Drain(Cache *c, Callback cb) {
84 Cache cache_;
88 Cache tmp;
101 void NOINLINE DoRecycle(Cache *c, Callback cb) {
117 // Per-thread cache of memory blocks.
  /external/fio/engines/
pmemblk.c 90 static fio_pmemblk_file_t Cache;
100 for (i = Cache; i != NULL; i = i->pmb_next)
109 pmb->pmb_next = Cache;
110 Cache = pmb;
117 if (pmb == Cache) {
118 Cache = Cache->pmb_next;
123 for (i = Cache; i != NULL; i = i->pmb_next)
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GenderInfo.java 225 private static class Cache {
226 private final ICUCache<ULocale, GenderInfo> cache = field in class:GenderInfo.Cache
230 GenderInfo result = cache.get(locale);
236 // We call get() recursively so that we can leverage the cache
241 cache.put(locale, result);
261 private static Cache genderInfoCache = new Cache();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GenderInfo.java 223 private static class Cache {
224 private final ICUCache<ULocale, GenderInfo> cache = field in class:GenderInfo.Cache
228 GenderInfo result = cache.get(locale);
234 // We call get() recursively so that we can leverage the cache
239 cache.put(locale, result);
259 private static Cache genderInfoCache = new Cache();
  /external/swiftshader/third_party/LLVM/lib/Support/
SourceMgr.cpp 38 // Delete the line # cache if allocated.
39 if (LineNoCacheTy *Cache = getCache(LineNoCache))
40 delete Cache;
96 // If we have a line number cache, and if the query is to a later point in the
99 if (LineNoCacheTy *Cache = getCache(LineNoCache))
100 if (Cache->LastQueryBufferID == BufferID &&
101 Cache->LastQuery <= Loc.getPointer()) {
102 Ptr = Cache->LastQuery;
103 LineNo = Cache->LineNoOfQuery;
112 // Allocate the line number cache if it doesn't exist
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
CoderResult.java 194 private static abstract class Cache {
196 private Map<Integer,WeakReference<CoderResult>> cache = null; field in class:CoderResult.Cache
206 if (cache == null) {
207 cache = new HashMap<Integer,WeakReference<CoderResult>>();
208 } else if ((w = cache.get(k)) != null) {
213 cache.put(k, new WeakReference<CoderResult>(e));
220 private static Cache malformedCache
221 = new Cache() {
239 private static Cache unmappableCache
240 = new Cache() {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcBoot.c 68 PXEBC_DHCP_PACKET_CACHE *Cache;
85 Cache = Mode->ProxyOfferReceived ? &Private->ProxyOffer : &Private->DhcpAck;
86 OfferType = Mode->UsingIpv6 ? Cache->Dhcp6.OfferType : Cache->Dhcp4.OfferType;
100 VendorOpt = &Cache->Dhcp4.VendorOpt;
108 Cache->Dhcp4.OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL) {
276 PXEBC_DHCP_PACKET_CACHE *Cache;
296 Cache = Mode->ProxyOfferReceived ? &Private->ProxyOffer : &Private->DhcpAck;
297 OfferType = Mode->UsingIpv6 ? Cache->Dhcp6.OfferType : Cache->Dhcp4.OfferType;
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 463 StringRef Cache =
465 if (!Cache.empty())
467 CI.getPCHContainerReader(), Cache);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
BaseLocale.java 23 private static final Cache CACHE = new Cache();
65 BaseLocale baseLocale = CACHE.get(key);
255 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
257 public Cache() {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ListFormatter.java 166 return cache.get(locale, style.getName());
300 private static class Cache {
301 private final ICUCache<String, ListFormatter> cache = field in class:ListFormatter.Cache
306 ListFormatter result = cache.get(key);
309 cache.put(key, result);
327 static Cache cache = new Cache(); field in class:ListFormatter
TimeZoneNames.java 116 private static Cache TZNAMES_CACHE = new Cache();
483 * TimeZoneNames cache used by {@link TimeZoneNames#getInstance(ULocale)}
485 private static class Cache extends SoftCache<String, TimeZoneNames, ULocale> {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
245 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
247 public Cache() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
251 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
253 public Cache() {

Completed in 793 milliseconds

12 3 4 5 6 7 8 91011>>