Searched refs:size_index (Results 1 – 14 of 14) sorted by relevance
/external/mesa3d/src/util/ |
D | set.c | 117 ht->size_index = 0; in _mesa_set_create() 118 ht->size = hash_sizes[ht->size_index].size; in _mesa_set_create() 119 ht->rehash = hash_sizes[ht->size_index].rehash; in _mesa_set_create() 120 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_set_create() 226 ht->size_index = new_size_index; in set_rehash() 227 ht->size = hash_sizes[ht->size_index].size; in set_rehash() 228 ht->rehash = hash_sizes[ht->size_index].rehash; in set_rehash() 229 ht->max_entries = hash_sizes[ht->size_index].max_entries; in set_rehash() 257 set_rehash(ht, ht->size_index + 1); in set_add() 259 set_rehash(ht, ht->size_index); in set_add()
|
D | hash_table.c | 125 ht->size_index = 0; in _mesa_hash_table_create() 126 ht->size = hash_sizes[ht->size_index].size; in _mesa_hash_table_create() 127 ht->rehash = hash_sizes[ht->size_index].rehash; in _mesa_hash_table_create() 128 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_hash_table_create() 278 ht->size_index = new_size_index; in _mesa_hash_table_rehash() 279 ht->size = hash_sizes[ht->size_index].size; in _mesa_hash_table_rehash() 280 ht->rehash = hash_sizes[ht->size_index].rehash; in _mesa_hash_table_rehash() 281 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_hash_table_rehash() 302 _mesa_hash_table_rehash(ht, ht->size_index + 1); in hash_table_insert() 304 _mesa_hash_table_rehash(ht, ht->size_index); in hash_table_insert()
|
D | set.h | 51 uint32_t size_index; member
|
D | hash_table.h | 55 uint32_t size_index; member
|
/external/harfbuzz_ng/src/ |
D | hb-aat-layout-trak-table.hh | 131 unsigned int size_index; in get_tracking() local 132 for (size_index = 0; size_index < sizes - 1; size_index++) in get_tracking() 133 if (size_table[size_index].to_float () >= csspx) in get_tracking() 136 return round (interpolate_at (size_index ? size_index - 1 : 0, csspx, in get_tracking()
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | eblc_table.cc | 116 int32_t size_index = 0; in SubSerialize() local 135 size_index, size_table_offset, in SubSerialize() 138 size_index++; in SubSerialize() 215 size_t size_index = 0; in SubDataSizeToSerialize() local 223 size_index++, size_builder_size, size_builder_size); in SubDataSizeToSerialize() 252 int32_t size_index = 0; in GenerateLocaList() local 258 fprintf(stderr, "size table = %d\n", size_index++); in GenerateLocaList()
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
D | gpu_bfc_allocator_test.cc | 329 int size_index = 0; in BM_Allocation() local 332 size_t bytes = sizes[size_index++ % sizes.size()]; in BM_Allocation() 356 int size_index = 0; in BM_AllocationThreaded() local 358 int bytes = sizes[size_index++ % sizes.size()]; in BM_AllocationThreaded() 387 int size_index = 0; in BM_AllocationDelayed() local 400 int bytes = sizes[size_index++ % sizes.size()]; in BM_AllocationDelayed()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_interface_test.cc | 111 for (size_t size_index = 0; size_index < 4; size_index++) { in ManyThreadsWithStatsWorker() local 112 free(Ident(malloc(kManyThreadsMallocSizes[size_index]))); in ManyThreadsWithStatsWorker()
|
/external/tensorflow/tensorflow/core/framework/ |
D | allocator_test.cc | 179 int size_index = 0; in BM_Allocation() local 183 int bytes = sizes[size_index++ % sizes.size()]; in BM_Allocation()
|
/external/freetype/include/freetype/internal/ |
D | ftdrv.h | 61 FT_ULong size_index );
|
D | ftobjs.h | 698 FT_ULong* size_index );
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 506 size_index = size.__index__ 510 size = size_index() 875 size_index = size.__index__ 879 size = size_index() 2448 size_index = size.__index__ 2452 size = size_index() 2486 size_index = size.__index__ 2490 size = size_index()
|
/external/freetype/src/base/ |
D | ftobjs.c | 2891 FT_ULong* size_index ) in FT_Match_Size() argument 2930 if ( size_index ) in FT_Match_Size() 2931 *size_index = (FT_ULong)i; in FT_Match_Size()
|
/external/freetype/ |
D | ChangeLog.23 | 6567 * src/base/ftobjs.c (FT_Match_Size): s/index/size_index/.
|