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

1 2

  /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/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/mesa3d/src/mesa/program/
hash_table.c 115 const unsigned bucket = hash_value % ht->num_buckets; local
118 foreach(node, & ht->buckets[bucket]) {
134 const unsigned bucket = hash_value % ht->num_buckets; local
142 insert_at_head(& ht->buckets[bucket], & node->link);
149 const unsigned bucket = hash_value % ht->num_buckets; local
152 foreach(node, & ht->buckets[bucket]) {
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 107 int bucket = ((System.identityHashCode(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE; local
108 Object cache = sCache[bucket];
112 sCache[bucket] = cache;
114 // Log.e("cache", "new empty " + kind.getName() + " at " + bucket);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
ArrayUtils.java 107 int bucket = ((System.identityHashCode(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE; local
108 Object cache = sCache[bucket];
112 sCache[bucket] = cache;
114 // Log.e("cache", "new empty " + kind.getName() + " at " + bucket);
  /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/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/chromium/chrome/browser/extensions/
extensions_quota_service_unittest.cc 14 typedef QuotaLimitHeuristic::Bucket Bucket;
37 buckets_[id] = new Bucket();
42 typedef std::map<int, Bucket*> BucketMap;
116 Bucket* b,
141 Bucket b;
160 Bucket bucket; local
162 bucket.Reset(k2PerMinute, kStartTime);
163 DoMoreThan2PerMinuteFor5Minutes(kStartTime, &lim, &bucket, -1)
    [all...]
  /external/jdiff/src/jdiff/
HTMLStatistics.java 203 int bucket = (int)(pkg.pdiff); local
204 hist[bucket]++;
206 if (bucket != 0)
207 h_.writeText(" <TD ALIGN=\"center\">" + bucket + "</TD>");
290 int bucket = (int)(classDiff.pdiff); local
291 hist[bucket]++;
293 if (bucket != 0)
294 h_.writeText(" <TD ALIGN=\"center\">" + bucket + "</TD>");
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbvideo.h 161 vidmem_bucket *bucket; local
167 for ( bucket=&surfaces; bucket; bucket=bucket->next ) {
168 bucket->dirty = 0;
  /external/stlport/stlport/stl/
_unordered_map.h 179 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_map
339 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multimap
_unordered_set.h 165 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_set
315 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multiset
  /external/stlport/stlport/stl/debug/
_hashtable.h 186 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
191 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
199 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
204 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
322 size_type bucket(const _KT& __k) const { return _M_non_dbg_impl.bucket(__k); } function in class:hashtable
  /external/v8/src/
string-search.h 491 int bucket = (sizeof(PatternChar) == 1) ? c : c % AlphabetSize(); local
492 bad_char_occurrence[bucket] = i;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_unordered_map.h 179 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_map
339 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multimap
_unordered_set.h 165 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_set
315 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multiset
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 186 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
191 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
199 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
204 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
322 size_type bucket(const _KT& __k) const { return _M_non_dbg_impl.bucket(__k); } function in class:hashtable
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_unordered_map.h 179 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_map
339 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multimap
_unordered_set.h 165 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_set
315 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multiset
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 186 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
191 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
199 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
204 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
322 size_type bucket(const _KT& __k) const { return _M_non_dbg_impl.bucket(__k); } function in class:hashtable
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_unordered_map.h 179 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_map
339 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multimap
_unordered_set.h 165 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_set
315 size_type bucket(const _KT& __k) const { return _M_ht.bucket(__k); } function in class:unordered_multiset
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 186 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
191 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
199 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
204 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators
322 size_type bucket(const _KT& __k) const { return _M_non_dbg_impl.bucket(__k); } function in class:hashtable
  /external/bison/lib/
hash.c 54 /* The array of buckets starts at BUCKET and extends to BUCKET_LIMIT-1,
57 struct hash_entry *bucket; member in struct:hash_table
93 slot. A bucket is the collection of all entries hashing to the same slot.
96 In the ideal case, the length of each bucket is roughly the number of
99 entry is linear in time with the size of the bucket. Consequently, a
119 /* If a deletion empties a bucket and causes the ratio of used buckets to
171 /* Return the length of the longest chain (bucket). */
176 struct hash_entry const *bucket; local
179 for (bucket = table->bucket; bucket < table->bucket_limit; bucket++
203 struct hash_entry const *bucket; local
252 struct hash_entry const *bucket local
281 struct hash_entry const *bucket; local
300 struct hash_entry const *bucket local
330 struct hash_entry const *bucket; local
362 struct hash_entry const *bucket; local
607 struct hash_entry *bucket; local
650 struct hash_entry *bucket; local
747 struct hash_entry *bucket local
822 struct hash_entry *bucket; local
911 struct hash_entry *bucket; local
986 struct hash_entry *bucket; local
1031 struct hash_entry const *bucket; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
app_launcher_handler.cc 57 extension_misc::AppLaunchBucket bucket = local
59 CHECK(bucket < extension_misc::APP_LAUNCH_BUCKET_BOUNDARY);
60 return bucket;
518 bool promo_active, extension_misc::AppLaunchBucket bucket) {
519 CHECK(bucket != extension_misc::APP_LAUNCH_BUCKET_INVALID);
521 UMA_HISTOGRAM_ENUMERATION(extension_misc::kAppLaunchHistogram, bucket,
535 extension_misc::AppLaunchBucket bucket) {
536 CHECK(bucket != extension_misc::APP_LAUNCH_BUCKET_INVALID);
543 UMA_HISTOGRAM_ENUMERATION(extension_misc::kAppLaunchHistogram, bucket,

Completed in 934 milliseconds

1 2