Home
last modified time | relevance | path

Searched refs:size_index (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/util/
Dset.c125 ht->size_index = 0; in _mesa_set_init()
126 ht->size = hash_sizes[ht->size_index].size; in _mesa_set_init()
127 ht->rehash = hash_sizes[ht->size_index].rehash; in _mesa_set_init()
128 ht->size_magic = hash_sizes[ht->size_index].size_magic; in _mesa_set_init()
129 ht->rehash_magic = hash_sizes[ht->size_index].rehash_magic; in _mesa_set_init()
130 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_set_init()
227 memset(ht->table, 0, sizeof(struct set_entry) * hash_sizes[ht->size_index].size); in set_clear_fast()
336 if (ht->size_index == new_size_index && ht->deleted_entries == ht->max_entries) { in set_rehash()
353 ht->size_index = new_size_index; in set_rehash()
354 ht->size = hash_sizes[ht->size_index].size; in set_rehash()
[all …]
Dhash_table.c155 ht->size_index = 0; in _mesa_hash_table_init()
156 ht->size = hash_sizes[ht->size_index].size; in _mesa_hash_table_init()
157 ht->rehash = hash_sizes[ht->size_index].rehash; in _mesa_hash_table_init()
158 ht->size_magic = hash_sizes[ht->size_index].size_magic; in _mesa_hash_table_init()
159 ht->rehash_magic = hash_sizes[ht->size_index].rehash_magic; in _mesa_hash_table_init()
160 ht->max_entries = hash_sizes[ht->size_index].max_entries; in _mesa_hash_table_init()
260 memset(ht->table, 0, sizeof(struct hash_entry) * hash_sizes[ht->size_index].size); in hash_table_clear_fast()
394 if (ht->size_index == new_size_index && ht->deleted_entries == ht->max_entries) { in _mesa_hash_table_rehash()
411 ht->size_index = new_size_index; in _mesa_hash_table_rehash()
412 ht->size = hash_sizes[ht->size_index].size; in _mesa_hash_table_rehash()
[all …]
Dset.h53 uint32_t size_index; member
Dhash_table.h56 uint32_t size_index; member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-aat-layout-trak-table.hh124 unsigned int size_index; in get_tracking() local
125 for (size_index = 0; size_index < sizes - 1; size_index++) in get_tracking()
126 if (size_table[size_index].to_float () >= ptem) in get_tracking()
129 return roundf (interpolate_at (size_index ? size_index - 1 : 0, ptem, in get_tracking()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
Deblc_table.cc116 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()
/third_party/skia/third_party/externals/tint/src/transform/
Darray_length_from_uniform.cc173 uint32_t size_index = idx_itr->second; in Run() local
174 used_size_indices.insert(size_index); in Run()
177 uint32_t array_index = size_index / 4; in Run()
181 uint32_t vec_index = size_index % 4; in Run()
/third_party/mesa3d/src/intel/vulkan/
DgenX_state.c564 static const uint32_t size_index[] = { in get_cps_state_offset() local
575 size_index[fsr->fragment_size.width] * 3 + in get_cps_state_offset()
576 size_index[fsr->fragment_size.height]; in get_cps_state_offset()
580 size_index[fsr->fragment_size.width] * 3 + in get_cps_state_offset()
581 size_index[fsr->fragment_size.height]; in get_cps_state_offset()
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dftdrv.h61 FT_ULong size_index );
Dftobjs.h686 FT_ULong* size_index );
/third_party/python/Lib/
D_pyio.py576 size_index = size.__index__
580 size = size_index()
957 size_index = size.__index__
961 size = size_index()
2542 size_index = size.__index__
2546 size = size_index()
2580 size_index = size.__index__
2584 size = size_index()
/third_party/skia/third_party/externals/freetype/src/base/
Dftobjs.c2994 FT_ULong* size_index ) in FT_Match_Size() argument
3033 if ( size_index ) in FT_Match_Size()
3034 *size_index = (FT_ULong)i; in FT_Match_Size()
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.236567 * src/base/ftobjs.c (FT_Match_Size): s/index/size_index/.