Home
last modified time | relevance | path

Searched refs:buckets_ (Results 1 – 19 of 19) sorted by relevance

/third_party/gn/src/gn/
Dhash_table_base.h201 if (buckets_ != buckets0_) in ~HashTableBase()
202 free(buckets_); in ~HashTableBase()
210 if (other.buckets_ != other.buckets0_) { in HashTableBase()
213 buckets_ = reinterpret_cast<Node*>(malloc(other.size_ * sizeof(Node))); in HashTableBase()
215 memcpy(buckets_, other.buckets_, other.size_ * sizeof(Node)); in HashTableBase()
227 : count_(other.count_), size_(other.size_), buckets_(other.buckets_) { in HashTableBase()
228 if (buckets_ == other.buckets0_) { in HashTableBase()
230 buckets_ = buckets0_; in HashTableBase()
232 other.buckets_ = other.buckets0_; in HashTableBase()
387 Node* node = buckets_; in NodeBegin()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dalphaindex.cpp181 delete buckets_; in ~ImmutableIndex()
187 return buckets_->getBucketCount(); in getBucketCount()
193 return buckets_->getBucketIndex(name, *collatorPrimaryOnly_, errorCode); in getBucketIndex()
198 if (0 <= index && index < buckets_->getBucketCount()) { in getBucket()
199 return icu::getBucket(*buckets_->immutableVisibleList_, index); in getBucket()
211 buckets_(NULL) { in AlphabeticIndex()
222 buckets_(NULL) { in AlphabeticIndex()
232 delete buckets_; in ~AlphabeticIndex()
284 return buckets_->getBucketCount(); in getBucketCount()
631 if (U_FAILURE(errorCode) || buckets_ != NULL) { in initBuckets()
[all …]
/third_party/icu/icu4c/source/i18n/
Dalphaindex.cpp181 delete buckets_; in ~ImmutableIndex()
187 return buckets_->getBucketCount(); in getBucketCount()
193 return buckets_->getBucketIndex(name, *collatorPrimaryOnly_, errorCode); in getBucketIndex()
198 if (0 <= index && index < buckets_->getBucketCount()) { in getBucket()
199 return icu::getBucket(*buckets_->immutableVisibleList_, index); in getBucket()
211 buckets_(NULL) { in AlphabeticIndex()
222 buckets_(NULL) { in AlphabeticIndex()
232 delete buckets_; in ~AlphabeticIndex()
284 return buckets_->getBucketCount(); in getBucketCount()
626 if (U_FAILURE(errorCode) || buckets_ != NULL) { in initBuckets()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dalphaindex.cpp181 delete buckets_; in ~ImmutableIndex()
187 return buckets_->getBucketCount(); in getBucketCount()
193 return buckets_->getBucketIndex(name, *collatorPrimaryOnly_, errorCode); in getBucketIndex()
198 if (0 <= index && index < buckets_->getBucketCount()) { in getBucket()
199 return icu::getBucket(*buckets_->immutableVisibleList_, index); in getBucket()
211 buckets_(nullptr) { in AlphabeticIndex()
222 buckets_(nullptr) { in AlphabeticIndex()
232 delete buckets_; in ~AlphabeticIndex()
284 return buckets_->getBucketCount(); in getBucketCount()
626 if (U_FAILURE(errorCode) || buckets_ != nullptr) { in initBuckets()
[all …]
/third_party/node/deps/brotli/c/enc/
Dhash_longest_match_quickly_inc.h43 uint32_t* buckets_; /* uint32_t[BUCKET_SIZE]; */ member
52 self->buckets_ = (uint32_t*)common->extra; in FN()
58 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
100 self->buckets_[key] = (uint32_t)ix; in FN()
104 self->buckets_[(key + off) & BUCKET_MASK] = (uint32_t)ix; in FN()
155 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_to_binary_tree_inc.h41 uint32_t* buckets_; /* uint32_t[BUCKET_SIZE]; */ member
60 self->buckets_ = (uint32_t*)common->extra; in FN()
61 self->forest_ = &self->buckets_[BUCKET_SIZE]; in FN()
72 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
124 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_longest_match64_inc.h57 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ member
75 self->buckets_ = (uint32_t*)&self->num_[self->bucket_size_]; in FN()
113 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
171 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_longest_match_inc.h54 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ member
72 self->buckets_ = (uint32_t*)(&self->num_[self->bucket_size_]); in FN()
114 self->buckets_[offset] = (uint32_t)ix; in FN()
167 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
/third_party/skia/third_party/externals/brotli/c/enc/
Dhash_longest_match_quickly_inc.h43 uint32_t* buckets_; /* uint32_t[BUCKET_SIZE]; */ member
52 self->buckets_ = (uint32_t*)common->extra; in FN()
58 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
100 self->buckets_[key] = (uint32_t)ix; in FN()
104 self->buckets_[(key + off) & BUCKET_MASK] = (uint32_t)ix; in FN()
155 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_to_binary_tree_inc.h41 uint32_t* buckets_; /* uint32_t[BUCKET_SIZE]; */ member
60 self->buckets_ = (uint32_t*)common->extra; in FN()
61 self->forest_ = &self->buckets_[BUCKET_SIZE]; in FN()
72 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
124 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_longest_match_inc.h54 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ member
72 self->buckets_ = (uint32_t*)(&self->num_[self->bucket_size_]); in FN()
114 self->buckets_[offset] = (uint32_t)ix; in FN()
167 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
Dhash_longest_match64_inc.h57 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ member
75 self->buckets_ = (uint32_t*)&self->num_[self->bucket_size_]; in FN()
113 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
171 uint32_t* BROTLI_RESTRICT buckets = self->buckets_; in FN()
/third_party/node/deps/icu-small/source/i18n/unicode/
Dalphaindex.h292 : buckets_(bucketList), collatorPrimaryOnly_(collatorPrimaryOnly) {} in ImmutableIndex()
294 BucketList *buckets_; variable
750 BucketList *buckets_; variable
/third_party/icu/icu4c/source/i18n/unicode/
Dalphaindex.h292 : buckets_(bucketList), collatorPrimaryOnly_(collatorPrimaryOnly) {} in ImmutableIndex()
294 BucketList *buckets_; variable
750 BucketList *buckets_; variable
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dalphaindex.h292 : buckets_(bucketList), collatorPrimaryOnly_(collatorPrimaryOnly) {} in ImmutableIndex()
294 BucketList *buckets_; variable
750 BucketList *buckets_; variable
/third_party/node/deps/v8/tools/
Dwindbg.js835 const buckets_count = rs[s].buckets_.Count();
837 let bucket = rs[s].buckets_[b];
/third_party/libabigail/tests/data/test-annotate/
Dtest19-pr19023-libtcmalloc_and_profiler.so.abi5586 …const, HeapProfileTable::Snapshot::Entry> > > HeapProfileTable::Snapshot::ReportState::buckets_ -->
5587 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
5595 …const, HeapProfileTable::Snapshot::Entry> > > HeapProfileTable::Snapshot::ReportState::buckets_ -->
5596 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
5803 …const, HeapProfileTable::Snapshot::Entry> > > HeapProfileTable::Snapshot::ReportState::buckets_ -->
5804 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
5812 …const, HeapProfileTable::Snapshot::Entry> > > HeapProfileTable::Snapshot::ReportState::buckets_ -->
5813 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest19-pr19023-libtcmalloc_and_profiler.so.abi3331 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
3338 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
3477 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
3484 …<var-decl name='buckets_' type-id='type-id-264' visibility='default' filepath='src/heap-profile-ta…
Dtest-libandroid.so.abi6254 …<var-decl name='buckets_' type-id='224e4514' visibility='default' filepath='frameworks/base/libs/a…
6274 …<var-decl name='buckets_' type-id='98ae5868' visibility='default' filepath='frameworks/base/libs/a…
6294 …<var-decl name='buckets_' type-id='ba25cd2e' visibility='default' filepath='frameworks/base/libs/a…