Searched refs:cache (Results 251 - 275 of 1307) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_viewport_state.c55 brw->state.dirty.cache |= CACHE_NEW_CLIP_VP;
62 .cache = 0,
98 brw->state.dirty.cache |= CACHE_NEW_SF_VP;
105 .cache = 0,
130 .cache = (CACHE_NEW_CLIP_VP |
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_cache_perftest.cc40 // Creates num_entries on the cache, and writes 200 bytes of metadata and up
42 bool TimeWrite(int num_entries, disk_cache::Backend* cache, argument
56 base::PerfTimeLogger timer("Write disk cache entries");
66 int rv = cache->CreateEntry(entry.key, &cache_entry, cb.callback());
94 bool TimeRead(int num_entries, disk_cache::Backend* cache, argument
108 const char* message = cold ? "Read disk cache entries (cold)" :
109 "Read disk cache entries (warm)";
115 int rv = cache->OpenEntry(entries[i].key, &cache_entry, cb.callback());
153 base::PerfTimeLogger timer("Hash disk cache keys");
168 scoped_ptr<disk_cache::Backend> cache; local
[all...]
/external/libnl/lib/
H A Dcache_mngr.c17 * The purpose of a cache manager is to keep track of caches and
23 * nature of a manager, it is not possible to have a cache maintain
24 * two instances of the same cache type. The socket is subscribed
25 * to the event notification group of each cache and also put into
48 * @par 1) Creating a new cache manager
52 * // Allocate a new cache manager for RTNETLINK and automatically
57 * @par 2) Keep track of a cache
59 * struct nl_cache *cache;
61 * // Create a new cache for links/interfaces and ask the manager to
63 * // to initially fill the cache
213 struct nl_cache *cache; local
[all...]
/external/chromium_org/chrome/browser/extensions/updater/
H A Dlocal_extension_cache_unittest.cc122 LocalExtensionCache cache(cache_dir,
126 cache.SetCacheStatusPollingDelayForTests(base::TimeDelta());
129 cache.Init(true, base::Bind(&SimpleCallback, &initialized));
148 // Older version should be removed on cache initialization.
153 // support use case when device was not used to more than 30 days and cache
155 EXPECT_TRUE(cache.GetExtension(kTestExtensionId1, NULL, NULL));
156 EXPECT_TRUE(cache.GetExtension(kTestExtensionId2, NULL, NULL));
157 EXPECT_TRUE(cache.GetExtension(kTestExtensionId3, NULL, NULL));
160 cache.Shutdown(base::Bind(&SimpleCallback, &did_shutdown));
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslatorUnitTest.java135 ClassCache cache = mock(ClassCache.class);
137 AndroidTranslator translator = new AndroidTranslator(handler, cache);
140 verify(cache).isWriting();
141 verifyNoMoreInteractions(cache);
147 ClassCache cache = mock(ClassCache.class);
148 when(cache.isWriting()).thenReturn(true);
149 new AndroidTranslator(null, cache).onLoad(classPool, "java.lang.Object");
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager_browsertest.cc139 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); local
143 ASSERT_EQ(cache.GetNumberOfProfiles(), 1U);
146 base::FilePath singleton_profile_path = cache.GetPathOfProfileAtIndex(0);
155 EXPECT_EQ(cache.GetNumberOfProfiles(), 1U);
156 base::FilePath new_profile_path = cache.GetPathOfProfileAtIndex(0);
175 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); local
188 ASSERT_EQ(cache.GetNumberOfProfiles(), 2U);
191 base::FilePath profile_path1 = cache.GetPathOfProfileAtIndex(0);
192 base::FilePath profile_path2 = cache.GetPathOfProfileAtIndex(1);
204 EXPECT_EQ(cache
283 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); local
351 ProfileInfoCache& cache = profile_manager->GetProfileInfoCache(); local
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_storage_manager_unittest.cc70 const scoped_refptr<ServiceWorkerCache>& cache,
72 callback_cache_ = cache;
182 bool CachePut(const scoped_refptr<ServiceWorkerCache>& cache, argument
190 cache->Put(
202 bool CacheMatch(const scoped_refptr<ServiceWorkerCache>& cache, argument
208 cache->Match(
273 scoped_refptr<ServiceWorkerCache> cache = callback_cache_; local
275 EXPECT_TRUE(cache.get() != callback_cache_.get());
285 scoped_refptr<ServiceWorkerCache> cache = callback_cache_; local
287 EXPECT_TRUE(cache
68 CacheAndErrorCallback( base::RunLoop* run_loop, const scoped_refptr<ServiceWorkerCache>& cache, ServiceWorkerCacheStorage::CacheStorageError error) argument
354 scoped_refptr<ServiceWorkerCache> cache = callback_cache_; local
364 scoped_refptr<ServiceWorkerCache> cache = callback_cache_; local
426 base::WeakPtr<ServiceWorkerCache> cache = callback_cache_->AsWeakPtr(); local
436 base::WeakPtr<ServiceWorkerCache> cache = callback_cache_->AsWeakPtr(); local
[all...]
H A Dservice_worker_cache_listener.h68 const scoped_refptr<ServiceWorkerCache>& cache,
76 const scoped_refptr<ServiceWorkerCache>& cache,
87 // Hangs onto a scoped_refptr for the cache if it isn't already doing so.
89 // with this cache.
90 CacheID StoreCacheReference(const scoped_refptr<ServiceWorkerCache>& cache);
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientShader.cpp384 // Only initialize the cache in getCache16/32.
403 uint16_t cache[], SkColor c0, SkColor c1, int count) {
424 cache[0] = SkPackRGB16(SkR32ToR16(rr), SkG32ToG16(gg), SkB32ToB16(bb));
425 cache[kCache16Count] = SkDitherPack888ToRGB16(rr, gg, bb);
426 cache += 1;
452 SkPMColor cache[], SkColor c0, SkColor c1,
511 cache[kCache32Count*0] = SkPackARGB32(0xFF, (r + 0 ) >> 16,
514 cache[kCache32Count*1] = SkPackARGB32(0xFF, (r + 0x8000) >> 16,
517 cache[kCache32Count*2] = SkPackARGB32(0xFF, (r + 0xC000) >> 16,
520 cache[kCache32Coun
402 Build16bitCache( uint16_t cache[], SkColor c0, SkColor c1, int count) argument
451 Build32bitCache( SkPMColor cache[], SkColor c0, SkColor c1, int count, U8CPU paintAlpha, uint32_t gradFlags) argument
591 initCache16(GradientShaderCache* cache) argument
624 initCache32(GradientShaderCache* cache) argument
[all...]
/external/skia/src/effects/gradients/
H A DSkGradientShader.cpp287 // Only initialize the cache in getCache16/32.
306 uint16_t cache[], SkColor c0, SkColor c1, int count) {
327 cache[0] = SkPackRGB16(SkR32ToR16(rr), SkG32ToG16(gg), SkB32ToB16(bb));
328 cache[kCache16Count] = SkDitherPack888ToRGB16(rr, gg, bb);
329 cache += 1;
355 SkPMColor cache[], SkColor c0, SkColor c1,
414 cache[kCache32Count*0] = SkPackARGB32(0xFF, (r + 0 ) >> 16,
417 cache[kCache32Count*1] = SkPackARGB32(0xFF, (r + 0x8000) >> 16,
420 cache[kCache32Count*2] = SkPackARGB32(0xFF, (r + 0xC000) >> 16,
423 cache[kCache32Coun
305 Build16bitCache( uint16_t cache[], SkColor c0, SkColor c1, int count) argument
354 Build32bitCache( SkPMColor cache[], SkColor c0, SkColor c1, int count, U8CPU paintAlpha, uint32_t gradFlags) argument
494 initCache16(GradientShaderCache* cache) argument
527 initCache32(GradientShaderCache* cache) argument
[all...]
/external/skia/src/core/
H A DSkPaint.cpp246 SkGlyphCache* cache = autoCache.getCache(); local
247 return cache->getBaseGlyphCount(text);
563 SkGlyphCache* cache = autoCache.getCache(); local
572 *gptr++ = cache->unicharToGlyph(SkUTF8_NextUnichar(&text));
579 *gptr++ = cache->unicharToGlyph(SkUTF16_NextUnichar(&text16));
587 *gptr++ = cache->unicharToGlyph(*text32++);
617 SkGlyphCache* cache = autoCache.getCache(); local
624 if (0 == cache->unicharToGlyph(SkUTF8_NextUnichar(&text))) {
634 if (0 == cache->unicharToGlyph(SkUTF16_NextUnichar(&text))) {
644 if (0 == cache
667 SkGlyphCache* cache = autoCache.getCache(); local
676 sk_getMetrics_utf8_next(SkGlyphCache* cache, const char** text) argument
684 sk_getMetrics_utf8_prev(SkGlyphCache* cache, const char** text) argument
692 sk_getMetrics_utf16_next(SkGlyphCache* cache, const char** text) argument
700 sk_getMetrics_utf16_prev(SkGlyphCache* cache, const char** text) argument
708 sk_getMetrics_utf32_next(SkGlyphCache* cache, const char** text) argument
719 sk_getMetrics_utf32_prev(SkGlyphCache* cache, const char** text) argument
730 sk_getMetrics_glyph_next(SkGlyphCache* cache, const char** text) argument
742 sk_getMetrics_glyph_prev(SkGlyphCache* cache, const char** text) argument
754 sk_getAdvance_utf8_next(SkGlyphCache* cache, const char** text) argument
762 sk_getAdvance_utf8_prev(SkGlyphCache* cache, const char** text) argument
770 sk_getAdvance_utf16_next(SkGlyphCache* cache, const char** text) argument
778 sk_getAdvance_utf16_prev(SkGlyphCache* cache, const char** text) argument
786 sk_getAdvance_utf32_next(SkGlyphCache* cache, const char** text) argument
797 sk_getAdvance_utf32_prev(SkGlyphCache* cache, const char** text) argument
808 sk_getAdvance_glyph_next(SkGlyphCache* cache, const char** text) argument
820 sk_getAdvance_glyph_prev(SkGlyphCache* cache, const char** text) argument
879 sk_getMetrics_utf8_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
887 sk_getMetrics_utf16_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
895 sk_getMetrics_utf16_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
904 sk_getMetrics_utf32_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
915 sk_getMetrics_utf32_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
926 sk_getMetrics_glyph_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
938 sk_getMetrics_glyph_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
1060 measure_text(SkGlyphCache* cache, const char* text, size_t byteLength, int* count, SkRect* bounds) const argument
1150 SkGlyphCache* cache = autoCache.getCache(); local
1228 SkGlyphCache* cache = autoCache.getCache(); local
1280 FontMetricsCacheProc(const SkGlyphCache* cache, void* context) argument
1350 SkGlyphCache* cache = autoCache.getCache(); local
1966 SkGlyphCache* cache; local
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_update_job_unittest.cc77 "Content-type: text/cache-manifest\0"
434 "Content-type: text/cache-manifest\0"
760 AppCache* cache = MakeCacheForGroup(1, 111); local
765 host1->AssociateCompleteCache(cache);
766 host2->AssociateCompleteCache(cache);
777 expect_newest_cache_ = cache; // newest cache unaffected by update
830 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 33); local
833 host->AssociateCompleteCache(cache);
844 expect_old_cache_ = cache;
867 AppCache* cache = MakeCacheForGroup(1, 111); local
956 AppCache* cache = MakeCacheForGroup(1, 111); local
998 AppCache* cache = MakeCacheForGroup(1, response_writer_->response_id()); local
1046 AppCache* cache = MakeCacheForGroup(1, wrong_manifest_url, 111); local
1150 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), local
1206 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
1269 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
1329 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
1389 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
1466 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 99); local
1511 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 25); local
1603 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 33); local
1647 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 22); local
1885 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 11); local
1981 AppCache* cache = MakeCacheForGroup(1, 111); local
2177 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
2280 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
2338 AppCache* cache = MakeCacheForGroup(1, 111); local
2480 AppCache* cache = MakeCacheForGroup(1, 111); local
2562 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), 42); local
2779 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), local
2842 AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(), local
3064 AppCache* cache = new AppCache(service_->storage(), cache_id); local
3193 AppCache* cache = group_->newest_complete_cache(); local
3224 VerifyManifest1(AppCache* cache) argument
3264 VerifyManifestMergedTypes(AppCache* cache) argument
3297 VerifyEmptyManifest(AppCache* cache) argument
3315 VerifyEmptyFileManifest(AppCache* cache) argument
3335 VerifyMasterEntryNoUpdate(AppCache* cache) argument
3361 VerifyManifestWithIntercept(AppCache* cache) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPaint.cpp531 SkGlyphCache* cache = autoCache.getCache(); local
540 *gptr++ = cache->unicharToGlyph(SkUTF8_NextUnichar(&text));
547 *gptr++ = cache->unicharToGlyph(SkUTF16_NextUnichar(&text16));
555 *gptr++ = cache->unicharToGlyph(*text32++);
585 SkGlyphCache* cache = autoCache.getCache(); local
592 if (0 == cache->unicharToGlyph(SkUTF8_NextUnichar(&text))) {
602 if (0 == cache->unicharToGlyph(SkUTF16_NextUnichar(&text))) {
612 if (0 == cache->unicharToGlyph(*text++)) {
635 SkGlyphCache* cache = autoCache.getCache(); local
638 textData[index] = cache
644 sk_getMetrics_utf8_next(SkGlyphCache* cache, const char** text) argument
652 sk_getMetrics_utf8_prev(SkGlyphCache* cache, const char** text) argument
660 sk_getMetrics_utf16_next(SkGlyphCache* cache, const char** text) argument
668 sk_getMetrics_utf16_prev(SkGlyphCache* cache, const char** text) argument
676 sk_getMetrics_utf32_next(SkGlyphCache* cache, const char** text) argument
687 sk_getMetrics_utf32_prev(SkGlyphCache* cache, const char** text) argument
698 sk_getMetrics_glyph_next(SkGlyphCache* cache, const char** text) argument
710 sk_getMetrics_glyph_prev(SkGlyphCache* cache, const char** text) argument
722 sk_getAdvance_utf8_next(SkGlyphCache* cache, const char** text) argument
730 sk_getAdvance_utf8_prev(SkGlyphCache* cache, const char** text) argument
738 sk_getAdvance_utf16_next(SkGlyphCache* cache, const char** text) argument
746 sk_getAdvance_utf16_prev(SkGlyphCache* cache, const char** text) argument
754 sk_getAdvance_utf32_next(SkGlyphCache* cache, const char** text) argument
765 sk_getAdvance_utf32_prev(SkGlyphCache* cache, const char** text) argument
776 sk_getAdvance_glyph_next(SkGlyphCache* cache, const char** text) argument
788 sk_getAdvance_glyph_prev(SkGlyphCache* cache, const char** text) argument
847 sk_getMetrics_utf8_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
855 sk_getMetrics_utf16_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
863 sk_getMetrics_utf16_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
872 sk_getMetrics_utf32_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
883 sk_getMetrics_utf32_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
894 sk_getMetrics_glyph_00(SkGlyphCache* cache, const char** text, SkFixed, SkFixed) argument
906 sk_getMetrics_glyph_xy(SkGlyphCache* cache, const char** text, SkFixed x, SkFixed y) argument
1028 measure_text(SkGlyphCache* cache, const char* text, size_t byteLength, int* count, SkRect* bounds) const argument
1111 SkGlyphCache* cache = autoCache.getCache(); local
1189 SkGlyphCache* cache = autoCache.getCache(); local
1241 FontMetricsCacheProc(const SkGlyphCache* cache, void* context) argument
1311 SkGlyphCache* cache = autoCache.getCache(); local
1910 SkGlyphCache* cache; local
[all...]
/external/libnl/lib/genl/
H A Dctrl.c147 * Look up generic netlink family by id in the provided cache.
148 * @arg cache Generic netlink family cache.
151 * Searches through the cache looking for a registered family
158 struct genl_family *genl_ctrl_search(struct nl_cache *cache, int id) argument
162 if (cache->c_ops != &genl_ctrl_ops)
165 nl_list_for_each_entry(fam, &cache->c_items, ce_list) {
181 * Look up generic netlink family by family name in the provided cache.
182 * @arg cache Generic netlink family cache
192 genl_ctrl_search_by_name(struct nl_cache *cache, const char *name) argument
224 struct nl_cache *cache; local
[all...]
/external/libnl/lib/route/
H A Dcls.c70 static int cls_request_update(struct nl_cache *cache, struct nl_sock *sk) argument
74 .tcm_ifindex = cache->c_iarg1,
75 .tcm_parent = cache->c_iarg2,
279 * Build a classifier cache including all classifiers attached to the
285 * @arg result Pointer to store resulting cache.
287 * Allocates a new cache, initializes it properly and updates it to
291 * cache after using it.
296 struct nl_cache * cache; local
299 if (!(cache = nl_cache_alloc(&rtnl_cls_ops)))
302 cache
[all...]
/external/pixman/test/
H A Dglyph-test.c225 pixman_glyph_cache_t *cache; local
229 cache = pixman_glyph_cache_create ();
240 pixman_glyph_cache_freeze (cache);
254 if (!(glyph = pixman_glyph_cache_lookup (cache, key1, key2)))
257 pixman_glyph_cache_insert (cache, key1, key2, 5, 8, glyph_img);
285 cache, 4 * n_glyphs, glyphs);
299 cache, 4 * n_glyphs, glyphs);
302 pixman_glyph_cache_thaw (cache);
312 pixman_glyph_cache_remove (cache, key1, key2);
321 pixman_glyph_cache_destroy (cache);
[all...]
/external/chromium_org/chrome/browser/history/
H A Durl_index_private_data.cc184 search_term_cache_.clear(); // Invalidate the term cache.
200 // If we trim the results set we do not want to cache the results for next
264 search_term_cache_.clear(); // Invalidate the term cache.
338 search_term_cache_.clear(); // This invalidates the cache.
395 search_term_cache_.clear(); // This invalidates the cache.
407 // If there is no cache file then simply give up. This will cause us to
415 LOG(WARNING) << "Failed to parse URLIndexPrivateData cache data read from "
559 // See if this term or a prefix thereof is present in the cache.
646 // Record a new cache entry for this word if the term is longer than
763 search_term_cache_.clear(); // Invalidate the term cache
1034 RestorePrivateData( const InMemoryURLIndexCacheItem& cache, const std::string& languages) argument
1064 RestoreWordList( const InMemoryURLIndexCacheItem& cache) argument
1080 RestoreWordMap( const InMemoryURLIndexCacheItem& cache) argument
1096 RestoreCharWordMap( const InMemoryURLIndexCacheItem& cache) argument
1124 RestoreWordIDHistoryMap( const InMemoryURLIndexCacheItem& cache) argument
1154 RestoreHistoryInfoMap( const InMemoryURLIndexCacheItem& cache) argument
1192 RestoreWordStartsMap( const InMemoryURLIndexCacheItem& cache, const std::string& languages) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dmanage_profile_handler.cc257 const ProfileInfoCache& cache = local
259 const size_t icon_index = cache.ChooseAvatarIconIndexForNewProfile();
262 profile_info.SetString("name", cache.ChooseNameForNewProfile(icon_index));
276 const ProfileInfoCache& cache = local
279 size_t profile_index = cache.GetIndexOfProfileWithPath(profile->GetPath());
282 cache.GetGAIAPictureOfProfileAtIndex(profile_index);
295 default_name_list.AppendString(cache.ChooseNameForNewProfile(i));
304 const ProfileInfoCache& cache = local
307 for (size_t i = 0, e = cache.GetNumberOfProfiles(); i < e; ++i) {
309 base::UTF16ToUTF8(cache
444 const ProfileInfoCache& cache = local
[all...]
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_unittest.cc290 // when first requested. Subsequent requests are served from the cache without
312 // served from the cache.
326 // data, served from the cache.
334 // Verify that the downloaded data is present in the cache.
345 // Verifies that a request to download and cache all external data referenced by
347 // served from the cache without further download attempts.
365 // expected data, served from the cache.
382 // the expected data, served from the cache.
393 // Verify that the downloaded data is present in the cache.
396 CloudExternalDataStore cache(kCacheKe
[all...]
/external/chromium_org/net/tools/quic/
H A Dquic_in_memory_cache_test.cc64 QuicInMemoryCache* cache = QuicInMemoryCache::GetInstance(); local
66 cache->GetResponse(request_headers);
75 cache->AddResponse(request_headers, response_headers, body);
85 QuicInMemoryCache* cache = QuicInMemoryCache::GetInstance(); local
87 cache->GetResponse(request_headers);
93 response = cache->GetResponse(request_headers);
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGlideBuilder.java10 import com.bumptech.glide.load.engine.cache.DiskCache;
11 import com.bumptech.glide.load.engine.cache.DiskCacheAdapter;
12 import com.bumptech.glide.load.engine.cache.DiskLruCacheWrapper;
13 import com.bumptech.glide.load.engine.cache.LruResourceCache;
14 import com.bumptech.glide.load.engine.cache.MemoryCache;
15 import com.bumptech.glide.load.engine.cache.MemorySizeCalculator;
/external/oprofile/events/mips/vr5500/
H A Devents8 event:0x2 counters:0,1 um:zero minimum:500 name:LOAD_PREF_CACHE_INSTRUCTIONS : Execution of load/prefetch/cache instruction
14 event:0x8 counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : Data cache miss
15 event:0x9 counters:0,1 um:zero minimum:500 name:ICACHE_MISSES : Instruction cache miss
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXSlider.cpp86 AXObjectCache* cache = m_renderer->document().axObjectCache(); local
88 AXSliderThumb* thumb = static_cast<AXSliderThumb*>(cache->getOrCreate(SliderThumbRole));
94 cache->remove(thumb->axObjectID());
/external/chromium_org/third_party/mesa/src/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/chromium_org/ui/views/accessibility/
H A Dax_view_obj_wrapper.cc25 AXAuraObjCache* cache = AXAuraObjCache::GetInstance(); local
27 return cache->GetOrCreate(view_->parent());
29 return cache->GetOrCreate(view_->GetWidget());

Completed in 3840 milliseconds

<<11121314151617181920>>