HomeSort by relevance Sort by last modified time
    Searched refs:cache_id (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/eigen/bench/
check_cache_queries.cpp 58 int cache_id = 0; local
62 EIGEN_CPUID(abcd,0x4,cache_id);
71 cout << "cache[" << cache_id << "].type = " << cache_type << "\n";
72 cout << "cache[" << cache_id << "].level = " << cache_level << "\n";
73 cout << "cache[" << cache_id << "].ways = " << ways << "\n";
74 cout << "cache[" << cache_id << "].partitions = " << partitions << "\n";
75 cout << "cache[" << cache_id << "].line_size = " << line_size << "\n";
76 cout << "cache[" << cache_id << "].sets = " << sets << "\n";
77 cout << "cache[" << cache_id << "].size = " << cache_size << "\n";
79 cache_id++
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_database.h 64 : cache_id(0), group_id(0), online_wildcard(false), cache_size(0) {}
66 int64 cache_id; member in struct:appcache::AppCacheDatabase::CacheRecord
74 EntryRecord() : cache_id(0), flags(0), response_id(0), response_size(0) {}
76 int64 cache_id; member in struct:appcache::AppCacheDatabase::EntryRecord
87 int64 cache_id; member in struct:appcache::AppCacheDatabase::NamespaceRecord
95 OnlineWhiteListRecord() : cache_id(0), is_pattern(false) {}
97 int64 cache_id; member in struct:appcache::AppCacheDatabase::OnlineWhiteListRecord
121 bool FindGroupForCache(int64 cache_id, GroupRecord* record);
127 bool FindCache(int64 cache_id, CacheRecord* record);
132 bool DeleteCache(int64 cache_id);
    [all...]
appcache_working_set.cc 35 DCHECK(cache->cache_id() != kAppCacheNoCacheId);
36 int64 cache_id = cache->cache_id(); local
37 DCHECK(caches_.find(cache_id) == caches_.end());
38 caches_.insert(CacheMap::value_type(cache_id, cache));
42 caches_.erase(cache->cache_id());
appcache_database.cc 69 "(cache_id INTEGER PRIMARY KEY,"
76 "(cache_id INTEGER,"
83 "(cache_id INTEGER,"
91 "(cache_id INTEGER,"
117 "(cache_id)",
122 "(cache_id, url)",
132 "(cache_id)",
142 "(cache_id, namespace_url)",
147 "(cache_id)",
197 : cache_id(0)
    [all...]
appcache_request_handler.h 51 void GetExtraResponseInfo(int64* cache_id, GURL* manifest_url);
73 void DeliverAppCachedResponse(const AppCacheEntry& entry, int64 cache_id,
97 int64 cache_id, int64 group_id, const GURL& mainfest_url) OVERRIDE;
appcache_host.cc 30 info->cache_id = cache->cache_id();
351 void AppCacheHost::LoadSelectedCache(int64 cache_id) {
352 DCHECK(cache_id != kAppCacheNoCacheId);
353 pending_selected_cache_id_ = cache_id;
354 storage()->LoadCache(cache_id, this);
357 void AppCacheHost::OnCacheLoaded(AppCache* cache, int64 cache_id) {
358 if (cache_id == pending_main_resource_cache_id_) {
361 } else if (cache_id == pending_selected_cache_id_) {
476 void AppCacheHost::LoadMainResourceCache(int64 cache_id) {
    [all...]
appcache_request_handler.cc 167 int64* cache_id, GURL* manifest_url) {
169 *cache_id = job_->cache_id();
204 const AppCacheEntry& entry, int64 cache_id, int64 group_id,
213 job_->DeliverAppCachedResponse(manifest_url, group_id, cache_id,
251 int64 cache_id, int64 group_id, const GURL& manifest_url) {
277 if (ResourceType::IsFrame(resource_type_) && cache_id != kAppCacheNoCacheId) {
282 host_->LoadMainResourceCache(cache_id);
291 found_cache_id_ = cache_id;
349 found_cache_id_ = cache->cache_id();
    [all...]
appcache_storage_impl.cc 55 database->FindResponseIdsForCacheAsVector(cache_record.cache_id,
59 database->DeleteCache(cache_record.cache_id) &&
60 database->DeleteEntriesForCache(cache_record.cache_id) &&
61 database->DeleteNamespacesForCache(cache_record.cache_id) &&
62 database->DeleteOnlineWhiteListForCache(cache_record.cache_id) &&
378 info.cache_id = cache_record.cache_id;
399 bool FindRelatedCacheRecords(int64 cache_id);
415 int64 cache_id) {
416 return database_->FindEntriesForCache(cache_id, &entry_records_) &
    [all...]
appcache_url_request_job.h 48 int64 cache_id, const AppCacheEntry& entry,
74 int64 cache_id() const { return cache_id_; } function in class:appcache::AppCacheURLRequestJob
129 virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) OVERRIDE;
appcache_storage_impl.h 57 int64 cache_id) OVERRIDE;
100 CacheLoadTask* GetPendingCacheLoadTask(int64 cache_id);
103 int64 cache_id, std::vector<GURL>* urls);
133 int64 cache_id, int64 group_id, const GURL& manifest_url);
appcache.cc 19 AppCache::AppCache(AppCacheStorage* storage, int64 cache_id)
20 : cache_id_(cache_id),
157 DCHECK(cache_id_ == cache_record.cache_id);
201 cache_record->cache_id = cache_id_;
212 record.cache_id = cache_id_;
224 record.cache_id = cache_id_;
232 record.cache_id = cache_id_;
240 record.cache_id = cache_id_;
appcache.h 49 AppCache(AppCacheStorage* storage, int64 cache_id);
51 int64 cache_id() const { return cache_id_; } function in class:appcache::AppCache
  /art/runtime/verifier/
reg_type.h 276 RegType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
278 : descriptor_(descriptor), klass_(GcRoot<mirror::Class>(klass)), cache_id_(cache_id) {
311 uint16_t cache_id)
318 ConflictType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
320 : RegType(klass, descriptor, cache_id) {
341 uint16_t cache_id)
348 UndefinedType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
350 : RegType(klass, descriptor, cache_id) {
361 PrimitiveType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
367 Cat1Type(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
    [all...]
reg_type.cc 67 PrimitiveType::PrimitiveType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
69 : RegType(klass, descriptor, cache_id) {
74 Cat1Type::Cat1Type(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
76 : PrimitiveType(klass, descriptor, cache_id) {
79 Cat2Type::Cat2Type(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
81 : PrimitiveType(klass, descriptor, cache_id) {
146 uint16_t cache_id) {
148 instance_ = new DoubleHiType(klass, descriptor, cache_id);
166 uint16_t cache_id) {
168 instance_ = new DoubleLoType(klass, descriptor, cache_id);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_cache.c 35 * consumers can query the hash table of state using a cache_id,
57 GLuint hash = item->cache_id, i;
75 return a->cache_id == b->cache_id &&
130 * Returns the buffer object matching cache_id and key, or NULL.
134 enum brw_cache_id cache_id,
143 lookup.cache_id = cache_id;
157 brw->state.dirty.cache |= (1 << cache_id);
208 if (item->cache_id != result_item->cache_id |
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_cache.c 35 * consumers can query the hash table of state using a cache_id,
57 GLuint hash = item->cache_id, i;
75 return a->cache_id == b->cache_id &&
130 * Returns the buffer object matching cache_id and key, or NULL.
134 enum brw_cache_id cache_id,
143 lookup.cache_id = cache_id;
157 brw->state.dirty.cache |= (1 << cache_id);
208 if (item->cache_id != result_item->cache_id |
    [all...]
  /external/chromium_org/content/browser/appcache/
mock_appcache_storage.cc 139 const GURL& entry_url, int64 cache_id) {
140 AppCache* cache = working_set_.GetCache(cache_id);
251 int64 cache_id; member in struct:content::__anon11353::FoundCandidate
257 : cache_id(kAppCacheNoCacheId), group_id(0), is_cache_in_use(false) {}
300 best_candidate->cache_id = cache->cache_id();
377 found_candidate.cache_id = cache->cache_id();
404 AppCacheEntry(), found_candidate.cache_id, found_candidate.group_id,
415 found_fallback_candidate.cache_id,
475 int64 cache_id = cache->cache_id(); local
    [all...]
appcache_interceptor.cc 63 int64* cache_id,
65 DCHECK(*cache_id == kAppCacheNoCacheId);
69 handler->GetExtraResponseInfo(cache_id, manifest_url);
appcache_database_unittest.cc 44 int64 group_id, cache_id, response_id, deleteable_response_rowid; local
45 group_id = cache_id = response_id = deleteable_response_rowid = 0;
46 EXPECT_TRUE(db.FindLastStorageIds(&group_id, &cache_id, &response_id,
49 EXPECT_EQ(0, cache_id);
201 entry.cache_id = 1;
209 entry.cache_id = 2;
216 entry.cache_id = 2;
227 EXPECT_EQ(1, found[0].cache_id);
243 EXPECT_EQ(2, found[0].cache_id);
248 EXPECT_EQ(2, found[1].cache_id);
    [all...]
mock_appcache_storage_unittest.cc 36 virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) OVERRIDE {
38 loaded_cache_id_ = cache_id;
65 int64 cache_id,
72 found_cache_id_ = cache_id;
116 int64 cache_id = service.storage()->NewCacheId(); local
117 scoped_refptr<AppCache> cache(new AppCache(service.storage(), cache_id));
121 service.storage()->LoadCache(cache_id, &delegate);
122 EXPECT_EQ(cache_id, delegate.loaded_cache_id_);
184 int64 cache_id = storage->NewCacheId(); local
185 scoped_refptr<AppCache> cache(new AppCache(service.storage(), cache_id));
235 int64 cache_id = storage->NewCacheId(); local
312 int64 cache_id = storage->NewCacheId(); local
354 int64 cache_id = storage->NewCacheId(); local
396 int64 cache_id = storage->NewCacheId(); local
    [all...]
appcache_interceptor.h 42 int64* cache_id,
mock_appcache_storage.h 78 int64 cache_id) OVERRIDE;
124 return stored_caches_.find(cache->cache_id()) != stored_caches_.end();
170 int64 cache_id,
178 simulated_found_cache_id_ = cache_id;
appcache_storage_impl_unittest.cc 208 virtual void OnCacheLoaded(AppCache* cache, int64 cache_id) OVERRIDE {
210 loaded_cache_id_ = cache_id;
244 int64 cache_id,
251 found_cache_id_ = cache_id;
513 int64 cache_id = storage()->NewCacheId(); local
514 scoped_refptr<AppCache> cache(new AppCache(storage(), cache_id));
517 storage()->LoadCache(cache_id, delegate());
518 EXPECT_EQ(cache_id, delegate()->loaded_cache_id_);
657 EXPECT_TRUE(database()->FindCache(cache_->cache_id(), &cache_record));
749 EXPECT_EQ(1, cache_record.cache_id);
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
frame.c 35 const int cache_id = ctx->id_; local
38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
60 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
61 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
221 const int cache_id = ctx->id_; local
224 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
225 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
249 const int cache_id = ctx->id_; local
253 const int y_offset = cache_id * 16 * dec->cache_y_stride_;
254 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_
713 const int cache_id = ctx->id_; local
    [all...]
  /external/webp/src/dec/
frame.c 35 const int cache_id = ctx->id_; local
38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
60 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
61 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
221 const int cache_id = ctx->id_; local
224 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
225 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
249 const int cache_id = ctx->id_; local
253 const int y_offset = cache_id * 16 * dec->cache_y_stride_;
254 const int uv_offset = cache_id * 8 * dec->cache_uv_stride_
713 const int cache_id = ctx->id_; local
    [all...]

Completed in 485 milliseconds

1 2 3