HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 151 - 175 of 317) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
LTO.cpp 774 Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
817 Result = runThinLTO(AddStream, Cache);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 108 Value *getReplacement(DivCacheTy &Cache);
152 Value *FastDivInsertionTask::getReplacement(DivCacheTy &Cache) {
157 // Then, look for a value in Cache.
161 auto CacheI = Cache.find(Key);
163 if (CacheI == Cache.end()) {
169 CacheI = Cache.insert({Key, *OptResult}).first;
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcBoot.c 69 PXEBC_DHCP_PACKET_CACHE *Cache;
86 Cache = Mode->ProxyOfferReceived ? &Private->ProxyOffer : &Private->DhcpAck;
87 OfferType = Mode->UsingIpv6 ? Cache->Dhcp6.OfferType : Cache->Dhcp4.OfferType;
101 VendorOpt = &Cache->Dhcp4.VendorOpt;
109 Cache->Dhcp4.OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL) {
277 PXEBC_DHCP_PACKET_CACHE *Cache;
297 Cache = Mode->ProxyOfferReceived ? &Private->ProxyOffer : &Private->DhcpAck;
298 OfferType = Mode->UsingIpv6 ? Cache->Dhcp6.OfferType : Cache->Dhcp4.OfferType;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Arm/
ArmV7Support.S 28 mcr p15, 0, r0, c7, c6, 1 @invalidate single data cache line
32 mcr p15, 0, r0, c7, c10, 1 @clean single data cache line
37 mcr p15, 0, r0, c7, c11, 1 @clean single data cache line to PoU
41 mcr p15, 0, r0, c7, c5, 1 @Invalidate single instruction cache line to PoU
46 mcr p15, 0, r0, c7, c14, 1 @clean and invalidate single data cache line
65 mcr p15,0,R0,c7,c5,0 @Invalidate entire instruction cache
93 bic r0, r0, #CTRL_C_BIT @ Disable D Cache
94 bic r0, r0, #CTRL_I_BIT @ Disable I Cache
183 mov R3, R3, LSR #23 @ Cache level value (naturally aligned)
189 mov R12, R6, LSR R2 @ bottom 3 bits are the Cache type for this level
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
ItaniumDemangle.cpp 83 /// has an unexpanded parameter pack below it that may affect this cache.
84 enum class Cache : unsigned char { Yes, No, Unknown, };
88 Cache RHSComponentCache;
92 Cache ArrayCache;
96 Cache FunctionCache;
98 Node(Kind K_, Cache RHSComponentCache_ = Cache::No,
99 Cache ArrayCache_ = Cache::No, Cache FunctionCache_ = Cache::No
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_shader_cache.c 36 disk_cache_compute_key(ctx->Cache, NULL, 0, sha1);
112 * Store tgsi and any other required state in on-disk shader cache.
117 if (!st->ctx->Cache)
130 fprintf(stderr, "putting %s tgsi_tokens in cache\n",
272 assert(!"Invalid TGSI shader disk cache item!");
275 fprintf(stderr, "Error reading program from cache (invalid "
276 "TGSI cache item)\n");
293 if (!ctx->Cache)
296 /* If we didn't load the GLSL metadata from cache then we could not have
315 fprintf(stderr, "%s tgsi_tokens retrieved from cache\n"
    [all...]
  /external/volley/src/main/java/com/android/volley/
Request.java 114 * When a request can be retrieved from cache but must be refreshed from the network, the cache
116 * it hasn't been evicted from cache.
118 private Cache.Entry mCacheEntry = null;
294 /** Returns the cache key for this request. By default, this is the URL. */
299 // legacy behavior where all methods had the same cache key. We can't determine which method
311 * Annotates this request with an entry retrieved for it from cache. Used for cache coherency
316 public Request<?> setCacheEntry(Cache.Entry entry) {
321 /** Returns the annotated cache entry, or null if there isn't one. *
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
BasicNetwork.java 21 import com.android.volley.Cache;
22 import com.android.volley.Cache.Entry;
127 // Handle cache validation.
254 private Map<String, String> getCacheHeaders(Cache.Entry entry) {
255 // If there's no cache entry, we're done.
326 * Combine cache headers with network response headers for an HTTP 304 response.
329 * from the cache entry plus the new ones from the response. See also:
346 // Second, add headers from the cache entry to the network response as long as
  /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/llvm/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 50 /// \brief Inserts the given Function into the cache.
55 /// \brief Ensures that the given function is available in the cache.
56 /// Returns the appropriate entry from the cache.
120 /// in the cache as an Optional without a value. This way, if we
123 DenseMap<Function *, Optional<FunctionInfo>> Cache;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_disk_cache.c 111 read_and_upload(struct brw_context *brw, struct disk_cache *cache,
121 /* We don't care what instance of the program it is for the disk cache
154 uint8_t *buffer = disk_cache_get(cache, binary_sha1, &buffer_size);
168 fprintf(stderr, "attempting to populate bo cache with binary: %s\n",
179 /* Something very bad has gone wrong discard the item from the cache and
183 fprintf(stderr, "Error reading program from cache (invalid i965 "
184 "cache item)\n");
187 disk_cache_remove(cache, binary_sha1);
233 brw_upload_cache(&brw->cache, cache_id, &prog_key, brw_prog_key_size(stage),
249 struct disk_cache *cache = brw->ctx.Cache local
325 struct disk_cache *cache = brw->ctx.Cache; local
389 struct disk_cache *cache = brw->ctx.Cache; local
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 96 ctx->VertexProgram.Cache = _mesa_new_program_cache();
102 ctx->FragmentProgram.Cache = _mesa_new_program_cache();
119 _mesa_delete_program_cache(ctx, ctx->VertexProgram.Cache);
121 _mesa_delete_shader_cache(ctx, ctx->FragmentProgram.Cache);
  /external/libcxxabi/src/demangle/
ItaniumDemangle.h 116 /// has an unexpanded parameter pack below it that may affect this cache.
117 enum class Cache : unsigned char { Yes, No, Unknown, };
126 Cache RHSComponentCache;
130 Cache ArrayCache;
134 Cache FunctionCache;
137 Node(Kind K_, Cache RHSComponentCache_ = Cache::No,
138 Cache ArrayCache_ = Cache::No, Cache FunctionCache_ = Cache::No
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 394 DenseMap<Value *, Value *> &Cache) {
395 auto CacheIt = Cache.find(Cond);
396 if (CacheIt != Cache.end())
413 Cache[Cond] = Cond;
424 FindLIVLoopCondition(BO->getOperand(0), L, Changed, Cache)) {
425 Cache[Cond] = LHS;
429 FindLIVLoopCondition(BO->getOperand(1), L, Changed, Cache)) {
430 Cache[Cond] = RHS;
435 Cache[Cond] = nullptr;
440 DenseMap<Value *, Value *> Cache;
    [all...]
RewriteStatepointsForGC.cpp 155 // The type of the internal cache used inside the findBasePointers family
500 static Value *findBaseDefiningValueCached(Value *I, DefiningValueMapTy &Cache) {
501 Value *&Cached = Cache[I];
507 assert(Cache[I] != nullptr);
513 static Value *findBaseOrBDV(Value *I, DefiningValueMapTy &Cache) {
514 Value *Def = findBaseDefiningValueCached(I, Cache);
515 auto Found = Cache.find(Def);
516 if (Found != Cache.end()) {
648 static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache) {
649 Value *Def = findBaseOrBDV(I, Cache);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 415 DenseMap<Value *, Value *> &Cache) {
416 auto CacheIt = Cache.find(Cond);
417 if (CacheIt != Cache.end())
434 Cache[Cond] = Cond;
473 ParentChain, Cache)) {
474 Cache[Cond] = LHS;
481 ParentChain, Cache)) {
482 Cache[Cond] = RHS;
488 Cache[Cond] = nullptr;
498 DenseMap<Value *, Value *> Cache;
    [all...]
RewriteStatepointsForGC.cpp 250 // The type of the internal cache used inside the findBasePointers family
615 static Value *findBaseDefiningValueCached(Value *I, DefiningValueMapTy &Cache) {
616 Value *&Cached = Cache[I];
622 assert(Cache[I] != nullptr);
628 static Value *findBaseOrBDV(Value *I, DefiningValueMapTy &Cache) {
629 Value *Def = findBaseDefiningValueCached(I, Cache);
630 auto Found = Cache.find(Def);
631 if (Found != Cache.end()) {
765 static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache) {
766 Value *Def = findBaseOrBDV(I, Cache);
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheManualTest.java 15 package com.google.common.cache;
30 Cache<Object, Object> cache = CacheBuilder.newBuilder().recordStats().build(); local
31 CacheStats stats = cache.stats();
40 assertNull(cache.getIfPresent(one));
41 stats = cache.stats();
46 assertNull(cache.asMap().get(one));
47 assertFalse(cache.asMap().containsKey(one));
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two))
106 Cache<Integer, Integer> cache = CacheBuilder.newBuilder().recordStats().build(); local
    [all...]
  /external/mesa3d/src/compiler/glsl/
shader_cache.cpp 27 * GLSL shader cache implementation
40 * shader into the cache, and optimisticly return early from glCompileShader
42 * in the hope that the final linked shader will be found in the cache.
43 * If anything goes wrong (shader variant not found, backend cache item is
88 struct disk_cache *cache = ctx->Cache; local
89 if (!cache)
118 disk_cache_put_key(cache, prog->Shaders[i]->sha1);
127 disk_cache_put(cache, prog->data->sha1, metadata.data, metadata.size,
132 fprintf(stderr, "putting program metadata in cache: %s\n", sha1_buf)
150 struct disk_cache *cache = ctx->Cache; local
    [all...]
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
OkUrlFactoryTest.java 37 private Cache cache; field in class:OkUrlFactoryTest
41 cache = new Cache(new File("/cache/"), 10 * 1024 * 1024, fileSystem);
42 client.setCache(cache);
47 cache.delete();
84 .addHeader("Cache-Control: max-age=0")
100 .addHeader("Cache-Control: max-age=0")
123 assertResponseHeader(connection2, "CACHE 200")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
Local.h 104 SimplifyCFGOptions &setAssumptionCache(AssumptionCache *Cache) {
105 AC = Cache;
  /frameworks/av/media/codec2/hidl/client/
client.cpp 98 class Codec2Client::Cache {
109 // Called by s() exactly once to initialize the cache. The index must be a
111 // init(index) will associate the cache to the service with name
118 Cache() = default;
164 static std::vector<Cache>& List() {
165 static std::vector<Cache> sCaches{[]() {
167 std::vector<Cache> caches(numServices);
339 // TODO: Cache and query properly!
643 return Cache::List()[mServiceIndex].getTraits();
862 Cache& cache = Cache::List()[index]; local
    [all...]
  /external/ImageMagick/MagickCore/
cache-view.c 19 % MagickCore Cache View Methods %
51 #include "MagickCore/cache.h"
52 #include "MagickCore/cache-private.h"
53 #include "MagickCore/cache-view.h"
100 % AcquireAuthenticCacheView() acquires an authentic view into the pixel cache.
137 % AcquireVirtualCacheView() acquires a virtual view into the pixel cache,
199 % CloneCacheView() makes an exact copy of the specified cache view.
207 % o cache_view: the cache view.
255 % o cache_view: the cache view.
287 % cache as defined by the geometry parameters. A pointer to the pixels i
    [all...]
  /external/google-benchmark/src/
sysinfo.cc 254 std::string dir = "/sys/devices/system/cpu/cpu0/cache/";
269 "Invalid cache size format: failed to read size suffix");
271 PrintErrorAndDie("Invalid cache size format: Expected bytes ", suffix);
339 CInfo* Cache = &it->Cache;
342 C.level = Cache->Level;
343 C.size = Cache->Size;
344 switch (Cache->Type) {
368 struct cacheattr_entry *cache = SYSPAGE_ENTRY(cacheattr); local
373 switch (cache->flags)
    [all...]
  /external/libcxx/utils/google-benchmark/src/
sysinfo.cc 248 std::string dir = "/sys/devices/system/cpu/cpu0/cache/";
263 "Invalid cache size format: failed to read size suffix");
265 PrintErrorAndDie("Invalid cache size format: Expected bytes ", suffix);
333 CInfo* Cache = &it->Cache;
336 C.level = Cache->Level;
337 C.size = Cache->Size;
338 switch (Cache->Type) {

Completed in 705 milliseconds

1 2 3 4 5 67 8 91011>>