Searched refs:table_size (Results 1 - 25 of 52) sorted by relevance

123

/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dvalues.pass.cpp20 // static constexpr size_t table_size = k;
37 static_assert(E::table_size == 256, "");
45 where(E::table_size);
H A Dctor_engine_copy.pass.cpp27 for (unsigned k = 0; k <= Adaptor::table_size; ++k) {
H A Dctor_engine_move.pass.cpp28 for (unsigned k = 0; k <= Adaptor::table_size; ++k) {
/external/brotli/c/enc/
H A Dblock_encoder_inc.h18 const size_t table_size = histograms_size * alphabet_size; local
19 self->depths_ = BROTLI_ALLOC(m, uint8_t, table_size);
20 self->bits_ = BROTLI_ALLOC(m, uint16_t, table_size);
H A Dcompress_fragment_two_pass.h35 REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero.
36 REQUIRES: "table_size" is a power of two
46 size_t table_size,
H A Dcompress_fragment.h41 REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero.
42 REQUIRES: "table_size" is an odd (9, 11, 13, 15) power of two
49 int* table, size_t table_size,
/external/tensorflow/tensorflow/core/util/
H A Dpresized_cuckoo_map_test.cc110 void RunFill(int64 table_size) { argument
111 PresizedCuckooMap<int> pscm(table_size);
112 for (int64 i = 0; i < table_size; i++) {
117 for (int64 i = 0; i < table_size; i++) {
127 for (int64 table_size = 10; table_size <= 5000000; table_size *= 71) {
128 RunFill(table_size);
159 uint64 table_size = arg; local
162 CalculateKeys(table_size,
175 uint64 table_size = arg; local
[all...]
/external/ltp/testcases/kernel/syscalls/getdtablesize/
H A Dgetdtablesize01.c57 int table_size, fd = 0, count = 0; local
62 table_size = getdtablesize();
68 table_size);
72 if (table_size == max_val_opfiles)
/external/brotli/c/dec/
H A Dhuffman.c112 int table_size; /* size of current table */ local
141 table_size = 1 << BROTLI_HUFFMAN_MAX_CODE_LENGTH_CODE_LENGTH;
147 for (key = 0; key < (reg_t)table_size; ++key) {
163 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
185 int table_size; /* size of current table */ local
200 table_size = 1 << table_bits;
201 total_size = table_size;
208 table_size = 1 << table_bits;
220 ReplicateValue(&table[BrotliReverseBits(key)], step, table_size, code);
229 while (total_size != table_size) {
271 uint32_t table_size = 1; local
[all...]
/external/freetype/src/otvalid/
H A Dotvbase.c126 FT_UInt table_size; local
143 table_size = FeatMinMaxCount * 8 + 6;
181 FT_UInt table_size; local
197 table_size = BaseLangSysCount * 6 + 6;
256 FT_UInt table_size; local
266 table_size = 4;
286 FT_UInt table_size; local
307 table_size = 8;
316 table_size += 4;
H A Dotvmath.c51 FT_UInt table_size; local
60 table_size = 2 * ( 56 + 51 );
91 FT_UInt i, cnt, table_size; local
108 table_size = 4 + 4 * cnt;
139 FT_UInt i, cnt, table_size; local
151 table_size = 4 + 4 * cnt;
182 FT_UInt i, j, cnt, table_size; local
196 table_size = 4 + 8 * cnt;
278 FT_UInt pcnt, table_size; local
293 table_size
319 FT_UInt vcnt, table_size; local
359 FT_UInt vcnt, hcnt, i, table_size; local
[all...]
H A Dotvgdef.c190 FT_UInt table_size; local
215 table_size = 10;
231 table_size += 2;
240 table_size += 4;
245 table_size += 8;
H A Dotvjstf.c46 FT_UInt table_size; local
69 table_size = 20;
152 FT_UInt table_size; local
168 table_size = JstfLangSysCount * 6 + 6;
H A Dotvgpos.c63 FT_UInt Count, count1, table_size; local
76 table_size = Count * otvalid->extra1 * 2 + 2;
212 FT_PtrDist table_size; local
221 table_size = p - otvalid->extra3;
270 FT_UInt table_size; local
280 table_size = 6 + 4;
597 FT_UInt table_size; local
616 table_size = EntryExitCount * 4 + 4;
989 FT_UInt table_size; local
1008 table_size
[all...]
/external/freetype/src/sfnt/
H A Dttmtx.c75 FT_ULong tag, table_size; local
93 error = face->goto_table( face, tag, stream, &table_size );
97 *ptable_size = table_size;
227 FT_ULong table_pos, table_size, table_end; local
243 table_size = face->vert_metrics_size;
249 table_size = face->horz_metrics_size;
252 table_end = table_pos + table_size;
H A Dttkern.c48 FT_ULong table_size; local
56 error = face->goto_table( face, TTAG_kern, stream, &table_size );
60 if ( table_size < 4 ) /* the case of a malformed table */
68 if ( FT_FRAME_EXTRACT( table_size, face->kern_table ) )
75 face->kern_table_size = table_size;
78 p_limit = p + table_size;
/external/mesa3d/src/amd/vulkan/
H A Dradv_pipeline_cache.c53 cache->table_size = 1024;
54 const size_t byte_size = cache->table_size * sizeof(cache->hash_table[0]);
61 cache->table_size = 0;
69 for (unsigned i = 0; i < cache->table_size; ++i)
115 const uint32_t mask = cache->table_size - 1;
118 for (uint32_t i = 0; i < cache->table_size; i++) {
190 const uint32_t mask = cache->table_size - 1;
194 assert(cache->kernel_count < cache->table_size / 2);
196 for (uint32_t i = 0; i < cache->table_size; i++) {
212 const uint32_t table_size local
[all...]
/external/webp/src/utils/
H A Dhuffman_utils.c144 int table_size = 1 << table_bits; // size of current table local
158 ReplicateValue(&table[key], step, table_size, code);
175 table += table_size;
177 table_size = 1 << table_bits;
178 total_size += table_size;
185 ReplicateValue(&table[key >> root_bits], step, table_size, code);
/external/freetype/src/truetype/
H A Dttpload.c528 FT_ULong table_size, record_size; local
534 error = face->goto_table( face, TTAG_hdmx, stream, &table_size );
535 if ( error || table_size < 8 )
538 if ( FT_FRAME_EXTRACT( table_size, face->hdmx_table ) )
542 limit = p + table_size;
588 face->hdmx_table_size = table_size;
/external/libunwind/src/ia64/
H A DGtables.c86 unw_word_t table, size_t table_size, unw_word_t rel_ip,
95 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
145 size_t table_size; local
157 table_size = di->u.ti.table_len * sizeof (di->u.ti.table_data[0]);
159 if (table_size < sizeof (struct ia64_table_entry))
171 table_size = di->u.rti.table_len * sizeof (unw_word_t);
173 if (table_size < sizeof (struct ia64_table_entry))
228 lookup (struct ia64_table_entry *table, size_t table_size, unw_word_t rel_ip) argument
234 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
85 remote_lookup(unw_addr_space_t as, unw_word_t table, size_t table_size, unw_word_t rel_ip, struct ia64_table_entry *e, void *arg) argument
/external/freetype/src/gxvalid/
H A Dgxvmort1.c71 gxv_mort_subtable_type1_subtable_setup( FT_UShort table_size, argument
97 gxv_set_length_by_ushort_offset( o, l, buff, 4, table_size, gxvalid );
H A Dgxvmort5.c67 gxv_mort_subtable_type5_subtable_setup( FT_UShort table_size, argument
80 gxv_StateTable_subtable_setup( table_size,
H A Dgxvmorx1.c73 gxv_morx_subtable_type1_subtable_setup( FT_ULong table_size, argument
99 gxv_set_length_by_ulong_offset( o, l, buff, 4, table_size, gxvalid );
H A Dgxvmorx5.c82 gxv_morx_subtable_type5_subtable_setup( FT_ULong table_size, argument
108 gxv_set_length_by_ulong_offset( o, l, buff, 4, table_size, gxvalid );
H A Dgxvcommn.h156 (*GXV_StateTable_Subtable_Setup_Func)( FT_UShort table_size,
198 (*GXV_XStateTable_Subtable_Setup_Func)( FT_ULong table_size,
435 gxv_StateTable_subtable_setup( FT_UShort table_size,
445 gxv_XStateTable_subtable_setup( FT_ULong table_size,

Completed in 1100 milliseconds

123