Home
last modified time | relevance | path

Searched refs:max_entries (Results 1 – 25 of 56) sorted by relevance

123

/external/mesa3d/src/intel/common/
Dgen_device_info.c87 .max_entries = {
111 .max_entries = {
141 .max_entries = {
165 .max_entries = {
190 .max_entries = {
220 .max_entries = {
244 .max_entries = {
268 .max_entries = {
302 .max_entries = {
321 .max_entries = {
[all …]
Dgen_urb_config.c140 DIV_ROUND_UP(devinfo->urb.max_entries[i] * entry_size_bytes[i], in gen_get_urb_config()
185 entries[i] = MIN2(entries[i], devinfo->urb.max_entries[i]); in gen_get_urb_config()
Dgen_device_info.h148 unsigned max_entries[4]; member
/external/toybox/toys/posix/
Dxargs.c45 long max_entries;
76 if (TT.max_entries && TT.entries >= TT.max_entries)
102 if (TT.max_entries && TT.entries >= TT.max_entries) return data;
/external/mesa3d/src/util/
Dset.c52 uint32_t max_entries, size, rehash; member
120 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_set_create()
229 ht->max_entries = hash_sizes[ht->size_index].max_entries; in set_rehash()
256 if (ht->entries >= ht->max_entries) { in set_add()
258 } else if (ht->deleted_entries + ht->entries >= ht->max_entries) { in set_add()
Dhash_table.c59 uint32_t max_entries, size, rehash; member
127 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_hash_table_create()
280 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_hash_table_rehash()
300 if (ht->entries >= ht->max_entries) { in hash_table_insert()
302 } else if (ht->deleted_entries + ht->entries >= ht->max_entries) { in hash_table_insert()
Dset.h50 uint32_t max_entries; member
/external/mesa3d/src/mesa/drivers/dri/i965/
Dgen6_urb.c67 if (nr_vs_entries > devinfo->urb.max_entries[MESA_SHADER_VERTEX]) in gen6_upload_urb()
68 nr_vs_entries = devinfo->urb.max_entries[MESA_SHADER_VERTEX]; in gen6_upload_urb()
70 if (nr_gs_entries > devinfo->urb.max_entries[MESA_SHADER_GEOMETRY]) in gen6_upload_urb()
71 nr_gs_entries = devinfo->urb.max_entries[MESA_SHADER_GEOMETRY]; in gen6_upload_urb()
Dbrw_program.c428 const int max_entries = 2048; in brw_init_shader_time() local
431 max_entries * SHADER_TIME_STRIDE * 3, 4096); in brw_init_shader_time()
432 brw->shader_time.names = rzalloc_array(brw, const char *, max_entries); in brw_init_shader_time()
433 brw->shader_time.ids = rzalloc_array(brw, int, max_entries); in brw_init_shader_time()
435 max_entries); in brw_init_shader_time()
437 max_entries); in brw_init_shader_time()
438 brw->shader_time.max_entries = max_entries; in brw_init_shader_time()
647 assert(shader_time_index < brw->shader_time.max_entries); in brw_get_shader_time_index()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dsockmap_verdict_prog.c19 .max_entries = 20,
26 .max_entries = 20,
33 .max_entries = 20,
Dtest_l4lb.c176 .max_entries = MAX_VIPS,
183 .max_entries = CH_RINGS_SIZE,
190 .max_entries = MAX_REALS,
197 .max_entries = MAX_VIPS,
204 .max_entries = CTL_MAP_SIZE,
Dtest_obj_id.c23 .max_entries = 1,
Dtest_xdp.c29 .max_entries = 256,
36 .max_entries = MAX_IPTNL_ENTRIES,
Dtest_maps.c245 int fd, i, max_entries = 100000; in test_hashmap_walk() local
250 max_entries, map_flags); in test_hashmap_walk()
256 for (i = 0; i < max_entries; i++) { in test_hashmap_walk()
267 assert(i == max_entries); in test_hashmap_walk()
278 assert(i == max_entries); in test_hashmap_walk()
287 assert(i == max_entries); in test_hashmap_walk()
/external/vboot_reference/cgpt/
Dcgpt_create.c73 size_t max_entries = in GptCreate() local
75 if (h->number_of_entries > max_entries) { in GptCreate()
76 h->number_of_entries = max_entries; in GptCreate()
/external/tensorflow/tensorflow/core/platform/cloud/
Dexpiring_lru_cache.h40 ExpiringLRUCache(uint64 max_age, size_t max_entries,
42 : max_age_(max_age), max_entries_(max_entries), env_(env) {} in max_age_()
100 size_t max_entries() const { return max_entries_; } in max_entries() function
Dgcs_file_system.h107 size_t stat_cache_max_entries() const { return stat_cache_->max_entries(); } in stat_cache_max_entries()
113 return matching_paths_cache_->max_entries(); in matching_paths_cache_max_entries()
/external/mesa3d/src/gallium/auxiliary/util/
Du_keymap.c50 unsigned max_entries; /* XXX not obeyed net */ member
123 map->max_entries = maxEntries; in util_new_keymap()
317 (void *) map, map->num_entries, map->max_entries); in util_keymap_info()
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_cache.c171 int max_entries = (max_size > hash_size) ? max_size : hash_size; in sanitize_cb() local
172 int to_remove = (max_size < max_entries) * max_entries/4; in sanitize_cb()
/external/ImageMagick/MagickCore/
Dmodule.c420 max_entries; in GetModuleList() local
450 max_entries=MaxModules; in GetModuleList()
451 modules=(char **) AcquireQuantumMemory((size_t) max_entries+1UL, in GetModuleList()
474 if (i >= (ssize_t) max_entries) in GetModuleList()
477 if (~max_entries > max_entries) in GetModuleList()
479 (max_entries << 1),sizeof(*modules)); in GetModuleList()
480 max_entries<<=1; in GetModuleList()
Dutility.c1595 max_entries; in ListFiles() local
1611 max_entries=2048; in ListFiles()
1612 filelist=(char **) AcquireQuantumMemory((size_t) max_entries, in ListFiles()
1637 if (*number_entries >= max_entries) in ListFiles()
1642 max_entries<<=1; in ListFiles()
1644 max_entries,sizeof(*filelist)); in ListFiles()
/external/tcpdump/tests/
Dof10_pf5240-vv.out357max_entries 5632, active_count 3, lookup_count 18446744073709551615, matched_count 184467440737095…
366max_entries 163840, active_count 3, lookup_count 18446744073709551615, matched_count 1844674407370…
371max_entries 512, active_count 0, lookup_count 18446744073709551615, matched_count 1844674407370955…
376max_entries 512, active_count 0, lookup_count 18446744073709551615, matched_count 1844674407370955…
381max_entries 16384, active_count 0, lookup_count 18446744073709551615, matched_count 18446744073709…
386max_entries 2048, active_count 0, lookup_count 18446744073709551615, matched_count 184467440737095…
391max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 184467440737095516…
396max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 184467440737095516…
401max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 184467440737095516…
406max_entries 0, active_count 0, lookup_count 18446744073709551615, matched_count 184467440737095516…
[all …]
/external/e2fsprogs/lib/ext2fs/
Dextent.c45 int max_entries; member
137 ppp->max_entries, ppp->left, ppp->visit_num, ppp->flags, in dump_path()
284 handle->path[0].max_entries = ext2fs_le16_to_cpu(eh->eh_max); in ext2fs_extent_open2()
496 newpath->max_entries = ext2fs_le16_to_cpu(eh->eh_max); in ext2fs_extent_get()
959 handle->path[handle->level - 1].max_entries)) { in extent_node_split()
1085 path->left = path->max_entries - 1; in extent_node_split()
1180 if (path->entries >= path->max_entries) { in ext2fs_extent_insert()
1693 info->max_entries = path->max_entries; in ext2fs_extent_get_info()
1694 info->bytes_avail = (path->max_entries - path->entries) * in ext2fs_extent_get_info()
/external/v8/src/runtime/
Druntime-collections.cc234 CONVERT_NUMBER_CHECKED(int, max_entries, Int32, args[1]); in RUNTIME_FUNCTION()
235 CHECK(max_entries >= 0); in RUNTIME_FUNCTION()
236 return *JSWeakCollection::GetEntries(holder, max_entries); in RUNTIME_FUNCTION()
/external/syslinux/gpxe/src/drivers/infiniband/
Darbel.h383 #define ARBEL_BITMASK_SIZE(max_entries) \ argument
384 ( ( (max_entries) + ( 8 * sizeof ( arbel_bitmask_t ) ) - 1 ) / \

123