HomeSort by relevance Sort by last modified time
    Searched defs:bucket (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp 52 PartitionBucket* bucket = &root->buckets[i]; variable
53 bucket->root = root;
54 bucket->currPage = &root->seedPage;
55 bucket->freePages = 0;
56 bucket->numFullPages = 0;
63 root->seedPage.bucket = &root->seedBucket;
89 static bool partitionAllocShutdownBucket(PartitionBucket* bucket, Vector<PartitionPageHeader*>* superPages)
92 bool noLeaks = !bucket->numFullPages;
93 PartitionFreepagelistEntry* entry = bucket->freePages;
100 PartitionPageHeader* page = bucket->currPage
    [all...]
  /frameworks/compile/mclinker/lib/Support/
HandleToArea.cpp 23 Bucket bucket;
24 bucket.hash_value = HashFunction()(
28 bucket.handle = pHandle;
29 bucket.area = pArea;
30 m_AreaMap.push_back(bucket);
48 HandleToAreaMap::iterator bucket, bEnd = m_AreaMap.end(); local
49 for (bucket = m_AreaMap.begin(); bucket != bEnd; ++bucket) {
65 HandleToAreaMap::iterator bucket, bEnd = m_AreaMap.end(); local
83 HandleToAreaMap::const_iterator bucket, bEnd = m_AreaMap.end(); local
    [all...]
  /external/chromium/net/base/
ssl_false_start_blacklist.cc 14 const unsigned bucket = Hash(last_two_labels) & (kBuckets - 1); local
15 const uint32 start = kHashTable[bucket];
16 const uint32 end = kHashTable[bucket + 1];
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_1_autogen.h 1521 CommonDecoder::Bucket* bucket = decoder_->GetBucket(kBucketId); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
bloom_filter.h 42 const uint32_t bucket = static_cast<uint32_t>(position % BIGRAM_FILTER_MODULO); local
43 mFilter[bucket >> 3] |= static_cast<uint8_t>(1 << (bucket & 0x7));
48 const uint32_t bucket = static_cast<uint32_t>(position % BIGRAM_FILTER_MODULO); local
49 return (mFilter[bucket >> 3] & static_cast<uint8_t>(1 << (bucket & 0x7))) != 0;
  /external/chromium_org/chrome/browser/ui/webui/ntp/
core_app_launcher_handler.cc 29 extension_misc::AppLaunchBucket bucket,
31 DCHECK_LT(bucket, extension_misc::APP_LAUNCH_BUCKET_BOUNDARY);
34 bucket,
38 bucket,
46 extension_misc::AppLaunchBucket bucket = local
49 bucket = extension_misc::APP_LAUNCH_APP_LIST_SEARCH_WEBSTORE;
51 bucket = extension_misc::APP_LAUNCH_APP_LIST_SEARCH_CHROME;
52 RecordAppLaunchType(bucket, extension->GetType());
58 extension_misc::AppLaunchBucket bucket = local
61 bucket = extension_misc::APP_LAUNCH_APP_LIST_MAIN_WEBSTORE
87 extension_misc::AppLaunchBucket bucket = local
    [all...]
  /external/chromium_org/net/base/
file_stream_metrics.cc 47 int bucket = GetFileErrorUmaBucket(error); local
56 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_Open", bucket, max_bucket);
61 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_Write", bucket, max_bucket);
66 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_Read", bucket, max_bucket);
71 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_Seek", bucket, max_bucket);
76 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_Flush", bucket, max_bucket);
81 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_SetEof", bucket,
87 UMA_HISTOGRAM_ENUMERATION("Net.FileErrorRange_GetSize", bucket,
  /external/oprofile/daemon/liblegacy/
opd_image.c 227 size_t bucket; local
230 bucket = opd_hash_image(name, tid, tgid);
231 list_for_each(pos, &opd_images[bucket]) {
241 if (pos == &opd_images[bucket])
  /external/chromium_org/chrome/common/metrics/
metrics_log_base.cc 165 HistogramEventProto::Bucket* bucket = histogram_proto->add_bucket(); local
166 bucket->set_min(min);
167 bucket->set_max(max);
168 bucket->set_count(count);
172 bucket->set_bucket_index(index);
  /external/chromium_org/gpu/command_buffer/client/
query_tracker_unittest.cc 99 QuerySyncManager::Bucket* GetBucket(QueryTracker::Query* query) {
100 return query->info_.bucket;
182 QuerySyncManager::Bucket* bucket = GetBucket(query); local
183 EXPECT_EQ(1u, bucket->used_query_count);
193 EXPECT_EQ(1u, bucket->used_query_count);
202 EXPECT_EQ(0u, bucket->used_query_count);
query_tracker.cc 44 Bucket* bucket = new Bucket(syncs); local
45 buckets_.push_back(bucket);
47 free_queries_.push_back(QueryInfo(bucket, shm_id, shm_offset, syncs));
53 ++(info->bucket->used_query_count);
60 DCHECK_GT(info.bucket->used_query_count, 0u);
61 --(info.bucket->used_query_count);
68 if (free_queries_.front().bucket->used_query_count)
74 std::deque<Bucket*> new_buckets
76 Bucket* bucket = buckets_.front(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_screen_cache.h 79 /** Head for the bucket lists. */
107 struct list_head bucket[SVGA_HOST_SURFACE_CACHE_BUCKETS]; member in struct:svga_host_surface_cache
svga_screen_cache.c 77 * Compute the bucket for this key.
100 unsigned bucket; local
105 bucket = svga_screen_cache_bucket(key);
109 curr = cache->bucket[bucket].next;
111 while (curr != &cache->bucket[bucket]) {
151 debug_printf("%s: cache %s after %u tries (bucket %d)\n", __FUNCTION__,
152 handle ? "hit" : "miss", tries, bucket);
304 unsigned bucket; local
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 65 // Then compute the bucket size, minimum of 1 bucket.
93 // Figure out how many buckets we need, then compute the bucket
100 // Compute bucket contents and final ordering.
103 uint32_t bucket = Data[i]->HashValue % Header.bucket_count; local
104 Buckets[bucket].push_back(Data[i]);
117 Asm->OutStreamer.AddComment("Header Bucket Count");
141 Asm->OutStreamer.AddComment("Bucket " + Twine(i));
151 // bucket.
156 Asm->OutStreamer.AddComment("Hash in Bucket " + Twine(i))
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.h 79 /** Head for the bucket lists. */
107 struct list_head bucket[SVGA_HOST_SURFACE_CACHE_BUCKETS]; member in struct:svga_host_surface_cache
svga_screen_cache.c 77 * Compute the bucket for this key.
100 unsigned bucket; local
105 bucket = svga_screen_cache_bucket(key);
109 curr = cache->bucket[bucket].next;
111 while (curr != &cache->bucket[bucket]) {
151 debug_printf("%s: cache %s after %u tries (bucket %d)\n", __FUNCTION__,
152 handle ? "hit" : "miss", tries, bucket);
304 unsigned bucket; local
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_AlphabeticIndex.cpp 101 // Iterate to the nth bucket.
162 const AlphabeticIndex::Bucket* bucket = ii->getBucket(index); local
163 if (bucket == NULL) {
169 if (bucket->getLabelType() != U_ALPHAINDEX_NORMAL) {
173 const UnicodeString& label(bucket->getLabel());
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 213 info[vertex.get(wInfo.semidom).getIndex()].bucket.add(w);
224 wParentBucket = info[wInfo.parent.getIndex()].bucket;
279 public ArrayList<SsaBasicBlock> bucket; field in class:Dominators.DFSInfo
282 bucket = new ArrayList<SsaBasicBlock>();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 213 info[vertex.get(wInfo.semidom).getIndex()].bucket.add(w);
224 wParentBucket = info[wInfo.parent.getIndex()].bucket;
279 public ArrayList<SsaBasicBlock> bucket; field in class:Dominators.DFSInfo
282 bucket = new ArrayList<SsaBasicBlock>();
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 115 const unsigned bucket = hash_value % ht->num_buckets; local
118 foreach(node, & ht->buckets[bucket]) {
141 const unsigned bucket = hash_value % ht->num_buckets; local
149 insert_at_head(& ht->buckets[bucket], & node->link);
156 const unsigned bucket = hash_value % ht->num_buckets; local
160 foreach(node, & ht->buckets[bucket]) {
174 insert_at_head(& ht->buckets[bucket], & hn->link);
196 int bucket; local
198 for (bucket = 0; bucket < ht->num_buckets; bucket++)
    [all...]
  /external/freetype/src/cache/
ftccache.c 87 /* get a top bucket for specified hash from cache,
130 * the bucket lists
144 /* split a single bucket */
488 FTC_Node* bucket; local
501 bucket = pnode = FTC_NODE__TOP_FOR_HASH( cache, hash );
520 /* Update bucket by modified linked list */
521 bucket = pnode = FTC_NODE__TOP_FOR_HASH( cache, hash );
537 if ( node != *bucket )
540 node->link = *bucket;
541 *bucket = node
575 FTC_Node* bucket = cache->buckets + i; local
    [all...]
  /external/mesa3d/src/mesa/program/
hash_table.c 115 const unsigned bucket = hash_value % ht->num_buckets; local
118 foreach(node, & ht->buckets[bucket]) {
141 const unsigned bucket = hash_value % ht->num_buckets; local
149 insert_at_head(& ht->buckets[bucket], & node->link);
156 const unsigned bucket = hash_value % ht->num_buckets; local
160 foreach(node, & ht->buckets[bucket]) {
174 insert_at_head(& ht->buckets[bucket], & hn->link);
196 int bucket; local
198 for (bucket = 0; bucket < ht->num_buckets; bucket++)
    [all...]
  /external/qemu/
qdict.c 110 const char *key, unsigned int bucket)
114 QLIST_FOREACH(entry, &qdict->table[bucket], next)
134 unsigned int bucket; local
137 bucket = tdb_hash(key) % QDICT_BUCKET_MAX;
138 entry = qdict_find(qdict, key, bucket);
146 QLIST_INSERT_HEAD(&qdict->table[bucket], entry, next);
172 unsigned int bucket = tdb_hash(key) % QDICT_BUCKET_MAX; local
173 return (qdict_find(qdict, key, bucket) == NULL ? 0 : 1);
396 unsigned int bucket = tdb_hash(entry->key) % QDICT_BUCKET_MAX; local
397 ret = qdict_next_entry(qdict, bucket + 1)
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
DNSUtil.java 169 List<SRVRecord> bucket = buckets.get(priority); local
171 if (bucket == null) {
172 bucket = new LinkedList<SRVRecord>();
173 buckets.put(priority, bucket);
175 bucket.add(r);
181 List<SRVRecord> bucket = buckets.get(priority); local
183 while ((bucketSize = bucket.size()) > 0) {
184 int[] totals = new int[bucket.size()];
189 for (SRVRecord r : bucket) {
194 for (SRVRecord r : bucket) {
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 110 int bucket = ((System.identityHashCode(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE; local
111 Object cache = sCache[bucket];
115 sCache[bucket] = cache;
117 // Log.e("cache", "new empty " + kind.getName() + " at " + bucket);

Completed in 955 milliseconds

1 2 3 4 5 6 7