Searched defs:Bucket (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dresults.py98 bucket = Bucket(rule, num_keys)
105 class Bucket(object): class in inherits:object
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstack_trace_table.h64 struct Bucket { struct in class:tcmalloc::StackTraceTable
71 Bucket* next;
86 Bucket** table_;
H A Dprofiledata.h160 struct Bucket { struct in class:ProfileData
164 Bucket* hash_; // hash table
H A Ddeep-heap-profile.h80 typedef HeapProfileTable::Bucket Bucket; typedef in class:DeepHeapProfile
236 // Contains extended information for HeapProfileTable::Bucket. These objects
238 // a Bucket and other additional information.
244 Bucket* bucket;
265 DeepBucket* Lookup(Bucket* bucket,
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstack_trace_table.h64 struct Bucket { struct in class:tcmalloc::StackTraceTable
71 Bucket* next;
86 Bucket** table_;
H A Dprofiledata.h160 struct Bucket { struct in class:ProfileData
164 Bucket* hash_; // hash table
H A Dheap-profile-table.h206 struct Bucket : public Stats { struct in class:HeapProfileTable
210 Bucket* next; // Next entry in hash-table
216 Bucket* bucket() const {
217 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
220 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); }
272 static int UnparseBucket(const Bucket& b,
281 void DeallocateBucketTable(Bucket** table);
287 Bucket* GetBucket(int depth, const void* const key[], Bucket** table,
316 Bucket** MakeSortedBucketLis
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.h51 class GPU_EXPORT Bucket { class in class:gpu::CommonDecoder
53 Bucket();
54 ~Bucket();
94 DISALLOW_COPY_AND_ASSIGN(Bucket);
108 Bucket* CreateBucket(uint32 bucket_id);
111 Bucket* GetBucket(uint32 bucket_id) const;
168 typedef std::map<uint32, linked_ptr<Bucket> > BucketMap;
H A Dcommon_decoder.cc10 CommonDecoder::Bucket::Bucket() : size_(0) {} function in class:gpu::CommonDecoder::Bucket
12 CommonDecoder::Bucket::~Bucket() {}
14 void* CommonDecoder::Bucket::GetData(size_t offset, size_t size) const {
21 void CommonDecoder::Bucket::SetSize(size_t size) {
29 bool CommonDecoder::Bucket::SetData(
38 void CommonDecoder::Bucket::SetFromString(const char* str) {
50 bool CommonDecoder::Bucket::GetAsString(std::string* str) {
83 CommonDecoder::Bucket* CommonDecode
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dbisect_test_ordering.py43 class Bucket(object): class in inherits:object
62 self.buckets = [Bucket([self.expected_failure])]
72 self.buckets = [Bucket(self.tests[:-1]), Bucket([self.expected_failure])]
81 return self.test_bucket_list_fails([Bucket([self.expected_failure])])
122 first_half = Bucket(bucket_to_split.tests[:halfway_point])
123 second_half = Bucket(bucket_to_split.tests[halfway_point:])
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dbucket.py14 class Bucket(object): class in inherits:object
161 self._buckets[int(words[0])] = Bucket(
/external/llvm/include/llvm/Support/
H A DArrayRecycler.h41 SmallVector<FreeList*, 8> Bucket; member in class:llvm::ArrayRecycler
43 // Remove an entry from the free list in Bucket[Idx] and return it.
46 if (Idx >= Bucket.size())
48 FreeList *Entry = Bucket[Idx];
51 Bucket[Idx] = Entry->Next;
55 // Add an entry to the free list at Bucket[Idx].
59 if (Idx >= Bucket.size())
60 Bucket.resize(size_t(Idx) + 1);
61 Entry->Next = Bucket[Idx];
62 Bucket[Id
[all...]
/external/chromium_org/third_party/jinja2/
H A Dbccache.py57 class Bucket(object): class in inherits:object
112 these methods are passed a :class:`~jinja2.bccache.Bucket`.
178 bucket = Bucket(environment, key, checksum)
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Ddmprof_test.py16 from lib.bucket import Bucket namespace
175 bucket1 = Bucket([0x1212, 0x013], 'malloc', 0x29492, '_Z')
177 bucket2 = Bucket([0x18242, 0x1381], 'malloc', 0x9492, '_Z')
179 bucket3 = Bucket([0x18242, 0x181], 'malloc', 0x949, '_Z')
/external/icu/icu4c/source/i18n/unicode/
H A Dalphaindex.h193 * The Bucket class is not intended for public subclassing.
196 class U_I18N_API Bucket : public UObject { class in class:AlphabeticIndex
202 virtual ~Bucket();
226 Bucket *displayBucket_;
230 Bucket(const UnicodeString &label, // Parameter strings are copied.
278 const Bucket *getBucket(int32_t index) const;
467 * Add a record to the index. Each record will be associated with an index Bucket
519 * Given the name of a record, return the zero-based index of the Bucket
522 * Bucket numbers are zero-based, in Bucket iteratio
[all...]
/external/llvm/lib/Support/
H A DStringMap.cpp168 int Bucket = FindKey(Key); local
169 if (Bucket == -1) return nullptr;
171 StringMapEntryBase *Result = TheTable[Bucket];
172 TheTable[Bucket] = getTombstoneVal();
211 StringMapEntryBase *Bucket = TheTable[I]; local
212 if (Bucket && Bucket != getTombstoneVal()) {
217 NewTableArray[FullHash & (NewSize-1)] = Bucket;
231 NewTableArray[NewBucket] = Bucket;
H A DFoldingSet.cpp285 void **Bucket = GetBucketFor(IDHash, Buckets, NumBuckets); local
286 void *Probe = *Bucket;
300 InsertPos = Bucket;
319 void **Bucket = static_cast<void**>(InsertPos); local
321 void *Next = *Bucket;
327 Next = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(Bucket)|1);
331 *Bucket = N;
361 void **Bucket = GetBucketPtr(Ptr); local
362 Ptr = *Bucket;
367 *Bucket
390 FoldingSetIteratorImpl(void **Bucket) argument
407 void **Bucket = GetBucketPtr(Probe); local
422 FoldingSetBucketIteratorImpl(void **Bucket) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/metrics_private/
H A Dmetrics_apitest.cc54 struct Bucket { struct in namespace:__anon3771
63 Bucket buckets[10];
128 const Bucket& bucket = sparse_histogram.buckets[j];
/external/chromium_org/extensions/browser/
H A Dquota_service.h7 // represented by a 'Bucket' that holds state for that item for one single
11 // arguments to a unique Bucket (the BucketMapper), and another to determine
97 // (represented by its Bucket) constitutes a quota violation.
101 // Bucket objects (see Below) and how often they are replenished.
111 // A Bucket is how the heuristic portrays an individual item (since quota
118 class Bucket { class in class:extensions::QuotaLimitHeuristic
120 Bucket() : num_tokens_(0) {} function in class:extensions::QuotaLimitHeuristic::Bucket
140 DISALLOW_COPY_AND_ASSIGN(Bucket);
142 typedef std::list<Bucket*> BucketList;
169 Bucket bucket
[all...]
H A Dquota_service_unittest.cc20 typedef QuotaLimitHeuristic::Bucket Bucket; typedef in namespace:extensions
45 buckets_[id] = new Bucket();
51 typedef std::map<int, Bucket*> BucketMap;
150 Bucket* b,
175 Bucket b;
195 Bucket bucket;
/external/chromium_org/gpu/command_buffer/client/
H A Dquery_tracker.h32 struct Bucket { struct in class:gpu::gles2::QuerySyncManager
33 explicit Bucket(QuerySync* sync_mem) function in struct:gpu::gles2::QuerySyncManager::Bucket
41 QueryInfo(Bucket* bucket, int32 id, uint32 offset, QuerySync* sync_mem)
55 Bucket* bucket;
70 std::deque<Bucket*> buckets_;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h59 struct Bucket { struct in class:__sanitizer::AddrHashMap
82 Bucket *bucket_;
93 Bucket *table_;
151 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap");
158 Bucket *b = &table_[hash];
287 Bucket *b = h->bucket_;
/external/compiler-rt/lib/ubsan/
H A Dubsan_type_hash.cc215 HashValue *Bucket = getTypeCacheHashTableBucket(Hash); local
216 if (*Bucket == Hash) {
237 *Bucket = Hash;
/external/llvm/include/llvm/ADT/
H A DSmallPtrSet.h148 const void *const *Bucket; member in class:llvm::SmallPtrSetIteratorImpl
152 : Bucket(BP), End(E) {
157 return Bucket == RHS.Bucket;
160 return Bucket != RHS.Bucket;
168 assert(Bucket <= End);
169 while (Bucket != End &&
170 (*Bucket == SmallPtrSetImplBase::getEmptyMarker() ||
171 *Bucket
[all...]
/external/icu/icu4c/source/i18n/
H A Dalphaindex.cpp82 inline AlphabeticIndex::Bucket *getBucket(const UVector &list, int32_t i) {
83 return static_cast<AlphabeticIndex::Bucket *>(list[i]);
151 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, i);
160 const AlphabeticIndex::Bucket *bucket = getBucket(*bucketList_, start);
196 const AlphabeticIndex::Bucket *
437 Bucket *asciiBuckets[26] = {
441 Bucket *pinyinBuckets[26] = {
455 Bucket *bucket = new Bucket(getUnderflowLabel(), emptyString_, U_ALPHAINDEX_UNDERFLOW);
485 bucket = new Bucket(getInflowLabe
1236 AlphabeticIndex::Bucket::Bucket(const UnicodeString &label, function in class:AlphabeticIndex::Bucket
[all...]

Completed in 9879 milliseconds

12