HomeSort by relevance Sort by last modified time
    Searched refs:bucket (Results 101 - 125 of 231) sorted by null

1 2 3 45 6 7 8 910

  /external/freetype/src/base/
ftdbgmem.c 925 FT_MemSource* bucket = table->sources; local
926 FT_MemSource* limit = bucket + FT_MEM_SOURCE_BUCKETS;
933 for ( ; bucket < limit; bucket++ )
935 FT_MemSource source = *bucket;
946 for ( bucket = table->sources; bucket < limit; bucket++ )
948 FT_MemSource source = *bucket;
  /external/chromium_org/chrome/browser/resources/file_manager/js/
metrics.js 111 // Collect invalid values in the overflow bucket at the end.
116 // of using histograms for enum-like types. Bucket #0 works as a regular
117 // bucket AND the underflow bucket.
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
policies.py 10 from lib.bucket import BUCKET_ID, COMMITTED
181 bucket = bucket_set.get(int(words[BUCKET_ID]))
182 if not bucket or bucket.allocator_type == 'malloc':
183 component_match = policy.find_malloc(bucket)
184 elif bucket.allocator_type == 'mmap':
  /external/libvpx/libvpx/
vpxenc.c 1357 struct hist_bucket bucket[64]; local
1385 struct hist_bucket bucket[RATE_BINS]; member in struct:rate_hist
    [all...]
  /external/blktrace/
stats.h 116 static inline void histlog2_account(__u32 *bucket, __u32 val,
120 bucket[index]++;
  /external/icu4c/test/intltest/
alphaindextst.cpp 32 const AlphabeticIndex::Bucket *bucket; local
33 for (int32_t i = 0; (bucket = index.getBucket(i)) != NULL; ++i) {
37 dest.append(bucket->getLabel());
368 assertEquals("initial bucket index", -1, index.getBucketIndex());
372 assertEquals("bucket index", bucketIndex, index.getBucketIndex());
377 const AlphabeticIndex::Bucket *bucket = immIndex->getBucket(bucketIndex); local
378 TEST_ASSERT(bucket != NULL);
379 assertEquals("bucket label vs. immutable: locale=" + UnicodeString(localeName)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 204 // Hash table bucket to hold (de)allocation stats
206 struct Bucket : public Stats {
210 Bucket* next; // Next entry in hash-table
215 // Access to the stack-trace bucket
216 Bucket* bucket() const { function in struct:HeapProfileTable::AllocValue
217 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
220 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); }
261 // Unparse bucket b and print its portion of profile dump into buf.
267 // counting bucket b
    [all...]
  /external/chromium_org/third_party/jinja2/
loaders.py 121 bucket = bcc.get_bucket(environment, name, filename, source)
122 code = bucket.code
129 # if the bytecode cache is available and the bucket doesn't
130 # have a code so far, we give the bucket the new code and put
132 if bcc is not None and bucket.code is None:
133 bucket.code = code
134 bcc.set_bucket(bucket)
  /external/elfutils/src/
strip.c 1412 Elf32_Word *bucket = (Elf32_Word *) hashd->d_buf; local
1466 Elf64_Xword *bucket = (Elf64_Xword *) hashd->d_buf; local
    [all...]
  /external/chromium_org/chrome/common/metrics/
entropy_provider_unittest.cc 153 const size_t bucket = static_cast<size_t>(kBucketCount * entropy_value); local
154 ASSERT_LT(bucket, kBucketCount);
155 distribution[bucket] += 1;
  /bionic/linker/
linker.h 124 unsigned* bucket; member in struct:soinfo
dlfcn.cpp 191 // Fake out a hash table with a single bucket.
228 bucket: gLibDlBuckets,
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.h 344 static void initializeBucket(ValueType& bucket);
345 static void deleteBucket(ValueType& bucket) { bucket.~ValueType(); Traits::constructDeletedValue(bucket); }
614 template<typename Traits, typename Value> static void initialize(Value& bucket)
616 new (NotNull, &bucket) Value(Traits::emptyValue());
621 template<typename Traits, typename Value> static void initialize(Value& bucket)
623 // This initializes the bucket without copying the empty value.
626 memset(&bucket, 0, sizeof(bucket));
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.h 80 typedef HeapProfileTable::Bucket Bucket;
219 // Contains extended information for HeapProfileTable::Bucket. These objects
221 // a Bucket and other additional information.
227 Bucket* bucket; member in struct:DeepHeapProfile::DeepBucket
231 size_t committed_size; // A resident size of this bucket
232 bool is_mmap; // True if the bucket represents a mmap region
233 int id; // A unique ID of the bucket
246 // Finds a DeepBucket instance corresponding to the given |bucket|, o
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
safe_local_iterator.h 60 /// The bucket this local iterator belongs to
225 * @brief Return the bucket
228 bucket() const { return _M_bucket; } function in class:__gnu_debug::_Safe_local_iterator
275 /// Is this iterator part of the same bucket as the other one?
279 { return _M_bucket == __other.bucket(); }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
safe_local_iterator.h 60 /// The bucket this local iterator belongs to
225 * @brief Return the bucket
228 bucket() const { return _M_bucket; } function in class:__gnu_debug::_Safe_local_iterator
275 /// Is this iterator part of the same bucket as the other one?
279 { return _M_bucket == __other.bucket(); }
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
safe_local_iterator.h 60 /// The bucket this local iterator belongs to
225 * @brief Return the bucket
228 bucket() const { return _M_bucket; } function in class:__gnu_debug::_Safe_local_iterator
275 /// Is this iterator part of the same bucket as the other one?
279 { return _M_bucket == __other.bucket(); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 239 // (the + 1 is for the bucket now taken up by the inherited value).
241 // from the bucket assigned to this current configuration's variation version.
269 int bucket = (mVariation < overriddenBucket) ? mVariation : mVariation + 1; local
270 double from = inchesPerBucket * bucket + smallest;
  /external/elfutils/libdwfl/
dwfl_module_getdwarf.c 428 for (Elf32_Word bucket = 0; bucket < nbuckets; ++bucket)
429 if (buckets[bucket] > maxndx)
430 maxndx = buckets[bucket];
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 297 // double weight histogram bucket). Failing twice in a row means we disable
299 int bucket = failed_again ? 2 : 1; local
301 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedWin", bucket);
303 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedMac", bucket);
305 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedNotWinMac", bucket);
308 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedLinux", bucket);
310 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedCros", bucket);
312 UMA_HISTOGRAM_COUNTS_100("Sync.DirectoryOpenFailedOther", bucket);
    [all...]
  /external/chromium_org/base/debug/
trace_event_impl.cc 613 TraceBucketData(base::subtle::AtomicWord* bucket,
618 TRACE_EVENT_API_ATOMIC_WORD* bucket;
643 void RegisterSampleBucket(TRACE_EVENT_API_ATOMIC_WORD* bucket,
681 TRACE_EVENT_API_ATOMIC_LOAD(*bucket_data->bucket);
702 TRACE_EVENT_API_ATOMIC_WORD* bucket,
706 sample_buckets_.push_back(TraceBucketData(bucket, name, callback));
727 TraceBucketData::TraceBucketData(base::subtle::AtomicWord* bucket,
730 : bucket(bucket),
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c 297 #define WXS_BUCKET(ctx) WXS_CONSTRUCTOR((ctx))->bucket
387 xmlSchemaBucketPtr bucket; member in struct:_xmlSchemaSchemaRelation
463 /* The owning main or import schema bucket. */
572 xmlSchemaBucketPtr mainBucket; /* The main schema bucket */
576 xmlSchemaBucketPtr bucket; /* The current schema bucket */ member in struct:_xmlSchemaConstructionCtxt
10695 xmlSchemaBucketPtr bucket = NULL; local
10939 xmlSchemaBucketPtr bucket = NULL; local
21267 xmlSchemaBucketPtr bucket = NULL; local
21570 xmlSchemaBucketPtr bucket = NULL; local
    [all...]
  /external/libxml2/
xmlschemas.c 297 #define WXS_BUCKET(ctx) WXS_CONSTRUCTOR((ctx))->bucket
387 xmlSchemaBucketPtr bucket; member in struct:_xmlSchemaSchemaRelation
463 /* The owning main or import schema bucket. */
572 xmlSchemaBucketPtr mainBucket; /* The main schema bucket */
576 xmlSchemaBucketPtr bucket; /* The current schema bucket */ member in struct:_xmlSchemaConstructionCtxt
10695 xmlSchemaBucketPtr bucket = NULL; local
10939 xmlSchemaBucketPtr bucket = NULL; local
21268 xmlSchemaBucketPtr bucket = NULL; local
21571 xmlSchemaBucketPtr bucket = NULL; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 4491 Bucket* bucket = GetBucket(c.name_bucket_id); local
4573 Bucket* bucket = GetBucket(c.name_bucket_id); local
6309 Bucket* bucket = GetBucket(c.data_bucket_id); local
6363 Bucket* bucket = CreateBucket(bucket_id); local
6378 Bucket* bucket = CreateBucket(bucket_id); local
6395 Bucket* bucket = CreateBucket(bucket_id); local
6410 Bucket* bucket = CreateBucket(bucket_id); local
7138 Bucket* bucket = GetBucket(c.name_bucket_id); local
7210 Bucket* bucket = GetBucket(c.name_bucket_id); local
7285 Bucket* bucket = CreateBucket(c.bucket_id); local
7697 Bucket* bucket = GetBucket(c.bucket_id); local
7722 Bucket* bucket = GetBucket(c.bucket_id); local
8711 Bucket* bucket = CreateBucket(name_bucket_id); local
8746 Bucket* bucket = CreateBucket(name_bucket_id); local
8899 Bucket* bucket = GetBucket(c.bucket_id); local
8947 Bucket* bucket = CreateBucket(c.bucket_id); local
8956 Bucket* bucket = GetBucket(c.bucket_id); local
9078 Bucket* bucket = CreateBucket(bucket_id); local
9085 program->GetProgramInfo(program_manager(), bucket); local
9948 Bucket* bucket = CreateBucket(bucket_id); local
10167 Bucket* bucket = GetBucket(c.bucket_id); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 135 DLList *bucket = new DLList[count]; local
152 bucket[SEMI(w)].insert(nw);
155 for (DLList::Iterator it = bucket[p].iterator(); !it.end(); it.erase()) {
180 delete[] bucket;

Completed in 2745 milliseconds

1 2 3 45 6 7 8 910