Searched refs:cache (Results 276 - 300 of 1307) sorted by relevance

<<11121314151617181920>>

/external/llvm/bindings/python/llvm/
H A Dobject.py45 In addition, we also provide a "cache" method on each class to cache all
47 cache=True to the appropriate get_XXX() method to have this done for you.
74 symbols = list(obj.get_symbols(cache=True))
123 def get_sections(self, cache=False):
138 if cache:
139 last.cache()
151 def get_symbols(self, cache=False):
166 if cache:
167 last.cache()
271 def cache(self): member in class:Section
344 def cache(self): member in class:Symbol
426 def cache(self): member in class:Relocation
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_upload.c278 (*atoms)->dirty.cache);
298 (a->cache & b->cache)) != 0;
306 a->cache |= b->cache;
316 result->cache = a->cache ^ b->cache;
449 state->cache |= ~0;
462 if ((state->mesa | state->cache | stat
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java34 static Interval[] cache = new Interval[INTERVAL_POOL_MAX_VALUE+1]; field in class:Interval
54 // cache just a..a
58 if ( cache[a]==null ) {
59 cache[a] = new Interval(a,a);
61 return cache[a];
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dremove_operation.cc23 // Removes cache file and moves the metadata entry to the trash.
25 internal::FileCache* cache,
49 error = cache->Remove(*local_id);
66 internal::FileCache* cache)
70 cache_(cache),
24 UpdateLocalState(internal::ResourceMetadata* metadata, internal::FileCache* cache, const base::FilePath& path, bool is_recursive, std::string* local_id, ResourceEntry* entry, base::FilePath* changed_path) argument
62 RemoveOperation( base::SequencedTaskRunner* blocking_task_runner, OperationDelegate* delegate, internal::ResourceMetadata* metadata, internal::FileCache* cache) argument
/external/chromium_org/sdch/open-vcdiff/
H A Dautogen.sh26 rm -rf autom4te.cache
64 rm -rf autom4te.cache
/external/chromium_org/third_party/freetype/src/cache/
H A Dftcbasic.c5 /* The FreeType basic cache interface (body). */
87 FTC_Cache cache = (FTC_Cache)ftccache; local
90 FTC_Family_Init( FTC_FAMILY( family ), cache ); local
155 FTC_Cache cache,
166 error = FTC_Manager_LookupSize( cache->manager,
203 FTC_Cache cache,
220 FTC_GNode_UnselectFamily( gnode, cache );
228 * basic image cache
278 FTC_ImageCache_Lookup( FTC_ImageCache cache,
321 FTC_GCACHE_LOOKUP_CMP( cache,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_screen.h75 struct svga_host_surface_cache cache; member in struct:svga_screen
/external/chromium_org/third_party/opus/src/celt/
H A Dmodes.h79 PulseCache cache; member in struct:OpusCustomMode
/external/chromium_org/third_party/skia/experimental/webtry/setup/
H A Dcontinue_install32 mkdir /home/webtry/cache
33 mkdir /home/webtry/cache/src
/external/freetype/src/cache/
H A Dftcbasic.c5 /* The FreeType basic cache interface (body). */
87 FTC_Cache cache = (FTC_Cache)ftccache; local
90 FTC_Family_Init( FTC_FAMILY( family ), cache ); local
155 FTC_Cache cache,
166 error = FTC_Manager_LookupSize( cache->manager,
203 FTC_Cache cache,
220 FTC_GNode_UnselectFamily( gnode, cache );
228 * basic image cache
278 FTC_ImageCache_Lookup( FTC_ImageCache cache,
321 FTC_GCACHE_LOOKUP_CMP( cache,
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DMemoryCache.java1 package com.bumptech.glide.load.engine.cache;
8 * An interface for adding and removing resources from an in memory cache
12 * An interface that will be called whenever a bitmap is removed from the cache.
19 * Adjust the maximum size of the cache by multiplying the original size of the cache by the given multiplier.
22 * If the size multiplier causes the size of the cache to be decreased, items will be evicted until the cache
37 * Add bitmap to the cache with the given key
45 * Set the listener to be called when a bitmap is removed from the cache
51 * Evict all items from the memory cache
[all...]
H A DMemoryCacheAdapter.java1 package com.bumptech.glide.load.engine.cache;
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DModelCache.java9 * A simple cache that can be used by {@link ModelLoader} and {@link ModelLoaderFactory} to cache some data for a given
10 * model, width and height. For a loader that takes a model and returns a url, the cache could be used to safely memoize
73 private final LruCache<ModelKey<A>, B> cache; field in class:ModelCache
80 cache = new LruCache<ModelKey<A>, B>(size) {
99 B result = cache.get(key);
114 cache.put(key, value);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalListeners.java17 package com.google.common.cache;
/external/libnl/include/netlink/genl/
H A Dfamily.h16 #include <netlink/cache.h>
/external/libopus/celt/
H A Dmodes.h79 PulseCache cache; member in struct:OpusCustomMode
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen.h75 struct svga_host_surface_cache cache; member in struct:svga_screen
/external/chromium_org/chrome/test/base/
H A Dtesting_profile_manager.cc97 ProfileInfoCache& cache = profile_manager_->GetProfileInfoCache(); local
98 size_t index = cache.GetIndexOfProfileWithPath(profile_path);
99 cache.SetAvatarIconOfProfileAtIndex(index, avatar_id);
100 cache.SetSupervisedUserIdOfProfileAtIndex(index, supervised_user_id);
103 cache.SetNameOfProfileAtIndex(index, user_name);
126 // Add the guest profile to the profile manager, but not to the info cache.
149 ProfileInfoCache& cache = profile_manager_->GetProfileInfoCache(); local
150 cache.DeleteProfileFromCache(profile->GetPath());
159 ProfileInfoCache& cache = profile_manager_->GetProfileInfoCache(); local
160 cache
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dplatform-win32.cc232 int64_t LocalOffset(TimezoneCache* cache);
235 int64_t DaylightSavingsOffset(TimezoneCache* cache);
239 char* LocalTimezone(TimezoneCache* cache);
251 bool InDST(TimezoneCache* cache);
366 int64_t Win32Time::LocalOffset(TimezoneCache* cache) { argument
367 cache->InitializeIfNeeded();
390 return (cache->tzinfo_.Bias + cache->tzinfo_.DaylightBias) * -kMsPerMinute;
392 return (cache->tzinfo_.Bias + cache
400 InDST(TimezoneCache* cache) argument
425 DaylightSavingsOffset(TimezoneCache* cache) argument
432 LocalTimezone(TimezoneCache* cache) argument
470 DisposeTimezoneCache(TimezoneCache* cache) argument
475 ClearTimezoneCache(TimezoneCache* cache) argument
482 LocalTimezone(double time, TimezoneCache* cache) argument
489 LocalTimeOffset(TimezoneCache* cache) argument
500 DaylightSavingsOffset(double time, TimezoneCache* cache) argument
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_storage.cc46 // load the backend, that happens lazily when the cache is used.
50 // Deletes any pre-existing cache of the same name and then loads it.
55 // removing the cache's directory.
59 // Writes the cache names (and sizes) to disk if applicable.
63 // Loads the cache names from disk if applicable.
75 // used again. Therefore this class holds a reference to each cache until the
76 // cache is deleted.
93 scoped_refptr<ServiceWorkerCache> cache = variable
95 cache_refs_.insert(std::make_pair(cache_name, cache));
96 callback.Run(cache);
301 const ServiceWorkerCacheStorageIndex::Cache& cache = index.cache(i); local
392 scoped_refptr<ServiceWorkerCache> cache = GetLoadedCache(cache_name); local
438 base::WeakPtr<ServiceWorkerCache> cache = it->second; local
520 CreateCacheDidCreateCache( const std::string& cache_name, const CacheAndErrorCallback& callback, const scoped_refptr<ServiceWorkerCache>& cache) argument
543 CreateCacheDidWriteIndex( const CacheAndErrorCallback& callback, const scoped_refptr<ServiceWorkerCache>& cache, bool success) argument
[all...]
/external/chromium_org/net/url_request/
H A Dview_cache_helper_unittest.cc28 // Gets a pointer to the cache backend.
74 void WriteToEntry(disk_cache::Backend* cache, const std::string& key, argument
79 int rv = cache->CreateEntry(key, &entry, cb.callback());
82 rv = cache->OpenEntry(key, &entry, cb.callback());
95 disk_cache::Backend* cache; local
98 &cache, cb.callback());
102 WriteToEntry(cache, "first", "some", empty, empty);
103 WriteToEntry(cache, "second", "only hex_dumped", "same", "kind");
104 WriteToEntry(cache, "third", empty, "another", "thing");
191 disk_cache::Backend* cache; local
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3_unittest.cc267 TestCacheTables cache(1024);
269 cache.GetInitData(&init_data);
329 TestCacheTables cache(1024);
331 cache.GetInitData(&init_data);
420 TestCacheTables cache(1024);
422 cache.GetInitData(&init_data);
428 int timestamp1 = index.CalculateTimestamp(cache.start_time());
429 int timestamp2 = index.CalculateTimestamp(cache.start_time() +
433 int timestamp3 = index.CalculateTimestamp(cache.start_time() +
437 int timestamp4 = index.CalculateTimestamp(cache
[all...]
/external/elfutils/0.153/libdwfl/
H A Drelocate.c55 We update the section header in place to cache the result. */
93 load address (or unloadedness). This serves as a cache,
118 #define RELOC_SYMTAB_CACHE(cache) \
119 struct reloc_symtab_cache cache = \
126 Elf *relocated, struct reloc_symtab_cache *cache,
129 if (cache->symdata == NULL)
148 cache->symelf = relocated;
149 cache->symdata = elf_getdata (scn, NULL);
150 cache->strtabndx = shdr->sh_link;
151 if (unlikely (cache
125 relocate_getsym(Dwfl_Module *mod, Elf *relocated, struct reloc_symtab_cache *cache, int symndx, GElf_Sym *sym, GElf_Word *shndx) argument
[all...]
/external/e2fsprogs/misc/
H A De2image.c755 struct ext2_qcow2_l2_cache *cache; local
760 &cache);
767 cache->count = count;
768 cache->free = count;
769 cache->next_offset = image->l2_offset;
782 table->next = cache->free_head;
783 cache->free_head = table;
786 image->l2_cache = cache;
790 com_err(program_name, ret, _("while allocating l2 cache"));
796 struct ext2_qcow2_l2_cache *cache local
958 struct ext2_qcow2_l2_cache *cache = img->l2_cache; local
982 struct ext2_qcow2_l2_cache *cache = image->l2_cache; local
1016 struct ext2_qcow2_l2_cache *cache = image->l2_cache; local
1040 struct ext2_qcow2_l2_cache *cache = img->l2_cache; local
[all...]
/external/chromium_org/base/
H A Dpath_service.cc115 PathMap cache; // Cache mappings from path key to path value. member in struct:__anon2398::PathData
118 bool cache_disabled; // Don't use cache if true;
149 // Tries to find |key| in the cache. |path_data| should be locked by the caller!
154 PathMap::const_iterator it = path_data->cache.find(key);
155 if (it != path_data->cache.end()) {
169 path_data->cache[key] = it->second;
229 path_data->cache[key] = path;
273 // Clear the cache now. Some of its entries could have depended
275 path_data->cache.clear();
292 // Clear the cache no
[all...]

Completed in 765 milliseconds

<<11121314151617181920>>