HomeSort by relevance Sort by last modified time
    Searched refs:new_bucket (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/tools/perf/metrics/
histogram_util.py 29 new_bucket = b
32 new_bucket['count'] = b['count'] - start_histogram_buckets[low]
33 if new_bucket['count'] < 0:
36 if new_bucket['count']:
37 new_buckets.append(new_bucket)
  /external/bison/lib/
hash.c 869 struct hash_entry *new_bucket; local
880 new_bucket = safe_hasher (dst, data);
884 if (new_bucket->data)
888 cursor->next = new_bucket->next;
889 new_bucket->next = cursor;
895 new_bucket->data = data;
907 new_bucket = safe_hasher (dst, data);
909 if (new_bucket->data)
919 new_entry->next = new_bucket->next;
920 new_bucket->next = new_entry
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.cc 526 HeapProfileBucket* new_bucket = static_cast<HeapProfileBucket*>( local
528 memset(new_bucket, 0, sizeof(*new_bucket));
529 new_bucket->hash = bucket.hash;
530 new_bucket->depth = bucket.depth;
531 new_bucket->stack = key_copy;
532 new_bucket->next = bucket_table_[hash_index];
533 bucket_table_[hash_index] = new_bucket;
    [all...]
  /external/elfutils/src/
unstrip.c 456 Hash_Word *const new_bucket = &new_hash[2]; \
457 Hash_Word *const new_chain = &new_bucket[nbucket]; \
463 new_bucket[i] = map[old_bucket[i] - 1]; \
    [all...]

Completed in 1217 milliseconds