/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | free-list.cc | 138 // bucket_size represents minimal size of entries in a bucket. in Allocate() 139 size_t bucket_size = static_cast<size_t>(1) << biggest_free_list_index_; in Allocate() local 141 for (; index > 0; --index, bucket_size >>= 1) { in Allocate() 144 if (allocation_size > bucket_size) { in Allocate() 209 std::vector<size_t>& bucket_size = free_list_stats.bucket_size; in CollectStatistics() local 212 DCHECK(bucket_size.empty()); in CollectStatistics() 222 bucket_size.push_back(static_cast<size_t>(1) << i); in CollectStatistics()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv98_video_bsp.c | 45 uint32_t slice_size, bucket_size, ring_size, bsp_size; in nv98_decoder_bsp() local 136 nouveau_vp3_inter_sizes(dec, 1, &slice_size, &bucket_size, &ring_size); in nv98_decoder_bsp() 140 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 408 interdata addr in nv98_decoder_bsp() 148 nouveau_vp3_inter_sizes(dec, desc.h264->slice_count, &slice_size, &bucket_size, &ring_size); in nv98_decoder_bsp() 153 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 40c interdata addr in nv98_decoder_bsp() 156 PUSH_DATA (push, bucket_size << 8); // 418 bucket size? unshifted.. in nv98_decoder_bsp()
|
H A D | nv98_video_vp.c | 75 uint32_t slice_size, bucket_size, ring_size, i; in nv98_decoder_vp() local 92 nouveau_vp3_inter_sizes(dec, desc.h264->slice_count, &slice_size, &bucket_size, &ring_size); in nv98_decoder_vp() 95 nouveau_vp3_inter_sizes(dec, 1, &slice_size, &bucket_size, &ring_size); in nv98_decoder_vp() 137 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 718 inter_data_ofs in nv98_decoder_vp() 139 if (bucket_size) { in nv98_decoder_vp()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_video_bsp.c | 142 uint32_t slice_size, bucket_size, ring_size; in nvc0_decoder_bsp_end() local 188 nouveau_vp3_inter_sizes(dec, 1, &slice_size, &bucket_size, &ring_size); in nvc0_decoder_bsp_end() 192 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 408 interdata addr in nvc0_decoder_bsp_end() 197 nouveau_vp3_inter_sizes(dec, desc.h264->slice_count, &slice_size, &bucket_size, &ring_size); in nvc0_decoder_bsp_end() 202 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 40c interdata addr in nvc0_decoder_bsp_end() 205 PUSH_DATA (push, bucket_size << 8); // 418 bucket size? unshifted.. in nvc0_decoder_bsp_end()
|
H A D | nvc0_video_vp.c | 75 uint32_t slice_size, bucket_size, ring_size, i; in nvc0_decoder_vp() local 92 nouveau_vp3_inter_sizes(dec, desc.h264->slice_count, &slice_size, &bucket_size, &ring_size); in nvc0_decoder_vp() 95 nouveau_vp3_inter_sizes(dec, 1, &slice_size, &bucket_size, &ring_size); in nvc0_decoder_vp() 137 PUSH_DATA (push, inter_addr + slice_size + bucket_size); // 718 inter_data_ofs in nvc0_decoder_vp() 139 if (bucket_size) { in nvc0_decoder_vp()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
H A D | nouveau_vp3_video.h | 192 uint32_t *slice_size, uint32_t *bucket_size, in nouveau_vp3_inter_sizes() 197 *bucket_size = 0; in nouveau_vp3_inter_sizes() 199 *bucket_size = mb(dec->base.width) * 3; in nouveau_vp3_inter_sizes() 200 *ring_size = (dec->inter_bo[0]->size >> 8) - *bucket_size - *slice_size; in nouveau_vp3_inter_sizes() 191 nouveau_vp3_inter_sizes(struct nouveau_vp3_decoder *dec, uint32_t slice_count, uint32_t *slice_size, uint32_t *bucket_size, uint32_t *ring_size) nouveau_vp3_inter_sizes() argument
|
H A D | nouveau_vp3_video_vp.c | 33 uint32_t bucket_size; // 24 member 59 uint32_t bucket_size; // 28 member 90 uint32_t bucket_size; // 00 member 118 uint32_t bucket_size; // 28 bucket size member 243 nouveau_vp3_inter_sizes(dec, 1, &ring, &pic_vp->bucket_size, &pic_vp->inter_ring_data_size); in nouveau_vp3_fill_picparm_mpeg12_vp() 284 nouveau_vp3_inter_sizes(dec, 1, &ring, &pic_vp->bucket_size, &pic_vp->inter_ring_data_size); in nouveau_vp3_fill_picparm_mpeg4_vp() 333 nouveau_vp3_inter_sizes(dec, d->slice_count, &ring, &h->bucket_size, &h->inter_ring_data_size); in nouveau_vp3_fill_picparm_h264_vp() 443 nouveau_vp3_inter_sizes(dec, 1, &ring, &vc->bucket_size, &vc->inter_ring_data_size); in nouveau_vp3_fill_picparm_vc1_vp()
|
/third_party/ltp/lib/ |
H A D | tst_timer_test.c | 87 unsigned int bucket_size; in frequency_plot() local 96 bucket_size = MAX(1u, ceilu(1.00 * (max_sample - min_sample)/(rows-1))); in frequency_plot() 100 bucket = flooru(1.00 * (samples[i] - min_sample)/bucket_size); in frequency_plot() 129 line_header_len - 3, min_sample + bucket_size*i); in frequency_plot() 149 line_header_len - 5, bucket_size, scale, scale * 2, scale * 4); in frequency_plot()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | hash.h | 85 static const size_t bucket_size = 4; member 103 static const size_t bucket_size = 4; member
|
/third_party/node/deps/brotli/c/enc/ |
H A D | hash_longest_match64_inc.h | 54 uint16_t* num_; /* uint16_t[bucket_size]; */ 57 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ 99 size_t bucket_size = (size_t)1 << params->hasher.bucket_bits; in HashMemAllocInBytes() local 103 return sizeof(uint16_t) * bucket_size + in HashMemAllocInBytes() 104 sizeof(uint32_t) * bucket_size * block_size; in HashMemAllocInBytes()
|
H A D | hash_longest_match_inc.h | 51 uint16_t* num_; /* uint16_t[bucket_size]; */ 54 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ 98 size_t bucket_size = (size_t)1 << params->hasher.bucket_bits; in HashMemAllocInBytes() local 102 return sizeof(uint16_t) * bucket_size + in HashMemAllocInBytes() 103 sizeof(uint32_t) * bucket_size * block_size; in HashMemAllocInBytes()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash_longest_match_inc.h | 51 uint16_t* num_; /* uint16_t[bucket_size]; */ 54 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ 98 size_t bucket_size = (size_t)1 << params->hasher.bucket_bits; in HashMemAllocInBytes() local 102 return sizeof(uint16_t) * bucket_size + in HashMemAllocInBytes() 103 sizeof(uint32_t) * bucket_size * block_size; in HashMemAllocInBytes()
|
H A D | hash_longest_match64_inc.h | 54 uint16_t* num_; /* uint16_t[bucket_size]; */ 57 uint32_t* buckets_; /* uint32_t[bucket_size * block_size]; */ 99 size_t bucket_size = (size_t)1 << params->hasher.bucket_bits; in HashMemAllocInBytes() local 103 return sizeof(uint16_t) * bucket_size + in HashMemAllocInBytes() 104 sizeof(uint32_t) * bucket_size * block_size; in HashMemAllocInBytes()
|
/third_party/node/deps/v8/include/cppgc/ |
H A D | heap-statistics.h | 71 std::vector<size_t> bucket_size; member
|
/third_party/node/deps/v8/include/v8-include/cppgc/ |
H A D | heap-statistics.h | 71 std::vector<size_t> bucket_size; member
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_bo.c | 191 unsigned bucket_size = 0; in lima_bo_cache_print_stats() local 193 bucket_size += entry->size; in lima_bo_cache_print_stats() 198 bucket_size); in lima_bo_cache_print_stats()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_descriptors.c | 645 unsigned bucket_size = pool->key->layout->num_bindings ? DESC_BUCKET_FACTOR : 1; in allocate_desc_set() local 648 bucket_size = desc_factor; in allocate_desc_set() 651 bucket_size = MIN2(bucket_size, ZINK_DEFAULT_MAX_DESCS); in allocate_desc_set() 652 VkDescriptorSet *desc_set = alloca(sizeof(*desc_set) * bucket_size); in allocate_desc_set() 653 if (!zink_descriptor_util_alloc_sets(screen, push_set ? ctx->dd->push_dsl[is_compute]->layout : pg->dsl[type + 1], pool->descpool, desc_set, bucket_size)) in allocate_desc_set() 656 struct zink_descriptor_set *alloc = ralloc_array(pool, struct zink_descriptor_set, bucket_size); in allocate_desc_set() 664 samplers = rzalloc_array(pool, void*, num_resources * bucket_size); in allocate_desc_set() 668 surfaces = rzalloc_array(pool, struct zink_descriptor_surface, num_resources * bucket_size); in allocate_desc_set() 672 res_objs = rzalloc_array(pool, struct zink_resource_object*, num_resources * bucket_size); in allocate_desc_set() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | g2meet.c | 100 int bucket_size[EPIC_HASH_SIZE]; member 412 if (hash->bucket_size[idx] > INT_MAX / sizeof(**hash->bucket)) in epic_hash_add() 415 if (!(hash->bucket_fill[idx] < hash->bucket_size[idx])) { in epic_hash_add() 416 int new_size = hash->bucket_size[idx] + 16; in epic_hash_add() 421 hash->bucket_size[idx] = new_size; in epic_hash_add() 476 hash->bucket_size[i] = in epic_free_pixel_cache()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor.cc | 407 static const size_t bucket_size = 4; member 425 static const size_t bucket_size = 4; member
|