Home
last modified time | relevance | path

Searched refs:tbl (Results 1 – 25 of 127) sorted by relevance

123456

/external/javassist/src/main/javassist/compiler/
DParser.java32 public ASTList parseMember(SymbolTable tbl) throws CompileError { in parseMember() argument
33 ASTList mem = parseMember1(tbl); in parseMember()
35 return parseMethod2(tbl, (MethodDecl)mem); in parseMember()
42 public ASTList parseMember1(SymbolTable tbl) throws CompileError { in parseMember1() argument
51 d = parseFormalType(tbl); in parseMember1()
64 return parseMethod1(tbl, isConstructor, mods, d); in parseMember1()
66 return parseField(tbl, mods, d); in parseMember1()
74 private FieldDecl parseField(SymbolTable tbl, ASTList mods, in parseField() argument
80 expr = parseExpression(tbl); in parseField()
103 private MethodDecl parseMethod1(SymbolTable tbl, boolean isConstructor, in parseMethod1() argument
[all …]
/external/boringssl/src/crypto/aes/asm/
Daes-armv4.pl61 $tbl="r10";
205 adr $tbl,AES_Te
207 sub $tbl,r3,#asm_AES_encrypt-AES_Te @ Te
324 ldr $t1,[$tbl,$i1,lsl#2] @ Te3[s0>>0]
326 ldr $t2,[$tbl,$i2,lsl#2] @ Te2[s0>>8]
328 ldr $t3,[$tbl,$i3,lsl#2] @ Te1[s0>>16]
330 ldr $s0,[$tbl,$s0,lsl#2] @ Te0[s0>>24]
333 ldr $i1,[$tbl,$i1,lsl#2] @ Te1[s1>>16]
334 ldr $i2,[$tbl,$i2,lsl#2] @ Te3[s1>>0]
335 ldr $i3,[$tbl,$i3,lsl#2] @ Te2[s1>>8]
[all …]
Daes-586.pl204 $tbl="ebp";
362 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 0
365 &mov ("edx",&DWP(3,$tbl,"edx",8)); # 1
369 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 10
372 &xor ("edx",&DWP(1,$tbl,$acc,8)); # 11
376 &xor ("ecx",&DWP(3,$tbl,$acc,8)); # 5
379 &xor ("ecx",&DWP(1,$tbl,$acc,8)); # 15
383 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 4
386 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 14
390 &xor ("ecx",&DWP(1,$tbl,$acc,8)); # 3
[all …]
/external/opencv3/modules/ts/misc/
Dperf_tests_timing.py113 tbl = table() variable
117 tbl.newColumn('module', 'Module', align = 'left', cssclass = 'col_name')
118 tbl.newColumn('name', 'Testsuit', align = 'left', cssclass = 'col_name')
119 tbl.newColumn('time', 'Time (min)', align = 'center', cssclass = 'col_name')
120 tbl.newColumn('num', 'Num of tests', align = 'center', cssclass = 'col_name')
121 tbl.newColumn('failed', 'Failed', align = 'center', cssclass = 'col_name')
125 tbl.newRow()
126 tbl.newCell('module', suit['module'])
127 tbl.newCell('name', suit['name'])
128 tbl.newCell('time', formatValue(suit['time'], '', ''), suit['time'])
[all …]
Dsummary.py145 tbl = table(metrix_table[options.metric][0]) variable
148 tbl.newColumn("name", "Name of Test", align = "left", cssclass = "col_name")
150 tbl.newColumn(str(i), getSetName(test_sets[i], i, options.columns, False), align = "center")
164tbl.newColumn(str(i) + '-' + str(ref) + suffix, '%s\nvs\n%s\n(%s)' % (current, reference, descript…
180 lastRow = tbl.newRow()
183 tbl.newCell("name", name)
198 tbl.newCell(str(i), "-")
202 tbl.newCell(str(i), status, color="red")
207 tbl.newCell(str(i), formatValue(val, options.metric, options.units), val)
218 tbl.newCell(tblCellID + "%", "-")
[all …]
Dreport.py51 tbl = table(", ".join(files)) variable
64 tbl.newColumn(m, metrix_table[m][0])
66 tbl.newColumn(m, metrix_table[m][0], align = "center")
71 tbl.newRow()
80 tbl.newCell(m, str(case))
82 tbl.newCell(m, status, color = "red")
88 tbl.newCell(m, "%.2f %s" % (val, options.units), val)
90 tbl.newCell(m, val, val)
92 tbl.trimLastRow()
97 tbl.htmlPrintTable(sys.stdout, True)
[all …]
/external/mesa3d/src/gallium/state_trackers/vega/
Dapi.c46 struct mapi_table *tbl; in api_create_dispatch() local
50 tbl = mapi_table_create(); in api_create_dispatch()
51 if (tbl) in api_create_dispatch()
52 mapi_table_fill(tbl, vega_procs); in api_create_dispatch()
54 return tbl; in api_create_dispatch()
57 void api_destroy_dispatch(struct mapi_table *tbl) in api_destroy_dispatch() argument
59 mapi_table_destroy(tbl); in api_destroy_dispatch()
62 void api_make_dispatch_current(const struct mapi_table *tbl) in api_make_dispatch_current() argument
64 mapi_table_make_current(tbl); in api_make_dispatch_current()
/external/opencv3/3rdparty/libjpeg/
Djdarith.c247 int blkn, ci, tbl, sign; in decode_mcu_DC_first() local
264 tbl = cinfo->cur_comp_info[ci]->dc_tbl_no; in decode_mcu_DC_first()
269 st = entropy->dc_stats[tbl] + entropy->dc_context[ci]; in decode_mcu_DC_first()
281 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ in decode_mcu_DC_first()
292 if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) in decode_mcu_DC_first()
294 else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) in decode_mcu_DC_first()
326 int tbl, sign, k; in decode_mcu_AC_first() local
343 tbl = cinfo->cur_comp_info[0]->ac_tbl_no; in decode_mcu_AC_first()
350 st = entropy->ac_stats[tbl] + 3 * k; in decode_mcu_AC_first()
370 st = entropy->ac_stats[tbl] + in decode_mcu_AC_first()
[all …]
Djcarith.c367 int blkn, ci, tbl; in encode_mcu_DC_first() local
386 tbl = cinfo->cur_comp_info[ci]->dc_tbl_no; in encode_mcu_DC_first()
396 st = entropy->dc_stats[tbl] + entropy->dc_context[ci]; in encode_mcu_DC_first()
423 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ in encode_mcu_DC_first()
432 if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) in encode_mcu_DC_first()
434 else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) in encode_mcu_DC_first()
458 int tbl, k, ke; in encode_mcu_AC_first() local
477 tbl = cinfo->cur_comp_info[0]->ac_tbl_no; in encode_mcu_AC_first()
498 st = entropy->ac_stats[tbl] + 3 * k; in encode_mcu_AC_first()
528 st = entropy->ac_stats[tbl] + in encode_mcu_AC_first()
[all …]
Djcomapi.c88 JQUANT_TBL *tbl; in jpeg_alloc_quant_table() local
90 tbl = (JQUANT_TBL *) in jpeg_alloc_quant_table()
92 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_quant_table()
93 return tbl; in jpeg_alloc_quant_table()
100 JHUFF_TBL *tbl; in jpeg_alloc_huff_table() local
102 tbl = (JHUFF_TBL *) in jpeg_alloc_huff_table()
104 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_huff_table()
105 return tbl; in jpeg_alloc_huff_table()
/external/libjpeg-turbo/
Djdarith.c248 int blkn, ci, tbl, sign; in decode_mcu_DC_first() local
265 tbl = cinfo->cur_comp_info[ci]->dc_tbl_no; in decode_mcu_DC_first()
270 st = entropy->dc_stats[tbl] + entropy->dc_context[ci]; in decode_mcu_DC_first()
282 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ in decode_mcu_DC_first()
293 if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) in decode_mcu_DC_first()
295 else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) in decode_mcu_DC_first()
327 int tbl, sign, k; in decode_mcu_AC_first() local
341 tbl = cinfo->cur_comp_info[0]->ac_tbl_no; in decode_mcu_AC_first()
347 st = entropy->ac_stats[tbl] + 3 * (k - 1); in decode_mcu_AC_first()
365 st = entropy->ac_stats[tbl] + in decode_mcu_AC_first()
[all …]
Djcarith.c369 int blkn, ci, tbl; in encode_mcu_DC_first() local
388 tbl = cinfo->cur_comp_info[ci]->dc_tbl_no; in encode_mcu_DC_first()
398 st = entropy->dc_stats[tbl] + entropy->dc_context[ci]; in encode_mcu_DC_first()
425 st = entropy->dc_stats[tbl] + 20; /* Table F.4: X1 = 20 */ in encode_mcu_DC_first()
434 if (m < (int) ((1L << cinfo->arith_dc_L[tbl]) >> 1)) in encode_mcu_DC_first()
436 else if (m > (int) ((1L << cinfo->arith_dc_U[tbl]) >> 1)) in encode_mcu_DC_first()
460 int tbl, k, ke; in encode_mcu_AC_first() local
476 tbl = cinfo->cur_comp_info[0]->ac_tbl_no; in encode_mcu_AC_first()
495 st = entropy->ac_stats[tbl] + 3 * (k - 1); in encode_mcu_AC_first()
524 st = entropy->ac_stats[tbl] + in encode_mcu_AC_first()
[all …]
Djcomapi.c90 JQUANT_TBL *tbl; in jpeg_alloc_quant_table() local
92 tbl = (JQUANT_TBL *) in jpeg_alloc_quant_table()
94 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_quant_table()
95 return tbl; in jpeg_alloc_quant_table()
102 JHUFF_TBL *tbl; in jpeg_alloc_huff_table() local
104 tbl = (JHUFF_TBL *) in jpeg_alloc_huff_table()
106 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_huff_table()
107 return tbl; in jpeg_alloc_huff_table()
Djcphuff.c112 int ci, tbl; in start_pass_phuff() local
156 tbl = compptr->dc_tbl_no; in start_pass_phuff()
158 entropy->ac_tbl_no = tbl = compptr->ac_tbl_no; in start_pass_phuff()
163 if (tbl < 0 || tbl >= NUM_HUFF_TBLS) in start_pass_phuff()
164 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl); in start_pass_phuff()
167 if (entropy->count_ptrs[tbl] == NULL) in start_pass_phuff()
168 entropy->count_ptrs[tbl] = (long *) in start_pass_phuff()
171 MEMZERO(entropy->count_ptrs[tbl], 257 * sizeof(long)); in start_pass_phuff()
175 jpeg_make_c_derived_tbl(cinfo, is_DC_band, tbl, in start_pass_phuff()
176 & entropy->derived_tbls[tbl]); in start_pass_phuff()
[all …]
/external/mesa3d/src/mapi/mapi/
Dmapi.c145 struct mapi_table *tbl; in mapi_table_create() local
147 tbl = malloc(MAPI_TABLE_SIZE); in mapi_table_create()
148 if (tbl) in mapi_table_create()
149 memcpy(tbl, noop, MAPI_TABLE_SIZE); in mapi_table_create()
151 return tbl; in mapi_table_create()
158 mapi_table_destroy(struct mapi_table *tbl) in mapi_table_destroy() argument
160 free(tbl); in mapi_table_destroy()
168 mapi_table_fill(struct mapi_table *tbl, const mapi_proc *procs) in mapi_table_fill() argument
180 table_set_func(tbl, slot, func); in mapi_table_fill()
188 mapi_table_make_current(const struct mapi_table *tbl) in mapi_table_make_current() argument
[all …]
Du_current.c233 u_current_set(const struct mapi_table *tbl) in u_current_set() argument
239 if (!tbl) in u_current_set()
240 tbl = (const struct mapi_table *) table_noop_array; in u_current_set()
243 u_current_table = (struct mapi_table *) tbl; in u_current_set()
245 u_tsd_set(&u_current_table_tsd, (void *) tbl); in u_current_set()
246 u_current_table = (ThreadSafe) ? NULL : (void *) tbl; in u_current_set()
248 u_current_table = (struct mapi_table *) tbl; in u_current_set()
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jcomapi.c88 JQUANT_TBL *tbl; in jpeg_alloc_quant_table() local
90 tbl = (JQUANT_TBL *) in jpeg_alloc_quant_table()
92 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_quant_table()
93 return tbl; in jpeg_alloc_quant_table()
100 JHUFF_TBL *tbl; in jpeg_alloc_huff_table() local
102 tbl = (JHUFF_TBL *) in jpeg_alloc_huff_table()
104 tbl->sent_table = FALSE; /* make sure this is false in any new table */ in jpeg_alloc_huff_table()
105 return tbl; in jpeg_alloc_huff_table()
Dfpdfapi_jcphuff.c110 int ci, tbl; in start_pass_phuff() local
154 tbl = compptr->dc_tbl_no; in start_pass_phuff()
156 entropy->ac_tbl_no = tbl = compptr->ac_tbl_no; in start_pass_phuff()
161 if (tbl < 0 || tbl >= NUM_HUFF_TBLS) in start_pass_phuff()
162 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, tbl); in start_pass_phuff()
165 if (entropy->count_ptrs[tbl] == NULL) in start_pass_phuff()
166 entropy->count_ptrs[tbl] = (long *) in start_pass_phuff()
169 MEMZERO(entropy->count_ptrs[tbl], 257 * SIZEOF(long)); in start_pass_phuff()
173 jpeg_make_c_derived_tbl(cinfo, is_DC_band, tbl, in start_pass_phuff()
174 & entropy->derived_tbls[tbl]); in start_pass_phuff()
[all …]
/external/llvm/test/MC/AArch64/
Dneon-tbl.s9 tbl v0.8b, { v1.16b }, v2.8b
10 tbl v0.8b, { v1.16b, v2.16b }, v2.8b
11 tbl v0.8b, { v1.16b, v2.16b, v3.16b }, v2.8b
12 tbl v0.8b, { v1.16b, v2.16b, v3.16b, v4.16b }, v2.8b
13 tbl v0.8b, { v31.16b, v0.16b, v1.16b, v2.16b }, v2.8b
21 tbl v0.16b, { v1.16b }, v2.16b
22 tbl v0.16b, { v1.16b, v2.16b }, v2.16b
23 tbl v0.16b, { v1.16b, v2.16b, v3.16b }, v2.16b
24 tbl v0.16b, { v1.16b, v2.16b, v3.16b, v4.16b }, v2.16b
25 tbl v0.16b, { v30.16b, v31.16b, v0.16b, v1.16b }, v2.16b
/external/libhevc/common/arm64/
Dihevc_intra_pred_luma_mode_3_to_9.s182 tbl v12.8b, {v0.16b},v1.8b //load from ref_main_idx (row 0)
185 tbl v13.8b, {v0.16b},v19.8b //load from ref_main_idx + 1 (row 0)
189 tbl v16.8b, {v0.16b},v4.8b //load from ref_main_idx (row 1)
193 tbl v17.8b, {v0.16b},v5.8b //load from ref_main_idx + 1 (row 1)
199 tbl v14.8b, {v0.16b},v1.8b //load from ref_main_idx (row 2)
203 tbl v15.8b, {v0.16b},v19.8b //load from ref_main_idx + 1 (row 2)
210 tbl v23.8b, {v0.16b},v4.8b //load from ref_main_idx (row 3)
214 tbl v25.8b, {v0.16b},v5.8b //load from ref_main_idx + 1 (row 3)
221 tbl v12.8b, {v0.16b},v1.8b //load from ref_main_idx (row 4)
225 tbl v13.8b, {v0.16b},v19.8b //load from ref_main_idx + 1 (row 4)
[all …]
Dihevc_intra_pred_filters_luma_mode_11_to_17.s302 tbl v12.8b, {v0.16b},v19.8b //load from ref_main_idx (row 0)
305 tbl v13.8b, {v0.16b},v21.8b //load from ref_main_idx + 1 (row 0)
309 tbl v16.8b, {v0.16b},v4.8b //load from ref_main_idx (row 1)
313 tbl v17.8b, {v0.16b},v5.8b //load from ref_main_idx + 1 (row 1)
319 tbl v14.8b, {v0.16b},v19.8b //load from ref_main_idx (row 2)
323 tbl v15.8b, {v0.16b},v21.8b //load from ref_main_idx + 1 (row 2)
330 tbl v23.8b, {v0.16b},v4.8b //load from ref_main_idx (row 3)
334 tbl v25.8b, {v0.16b},v5.8b //load from ref_main_idx + 1 (row 3)
341 tbl v12.8b, {v0.16b},v19.8b //load from ref_main_idx (row 4)
345 tbl v13.8b, {v0.16b},v21.8b //load from ref_main_idx + 1 (row 4)
[all …]
Dihevc_intra_pred_chroma_mode_3_to_9.s179 tbl v25.8b, { v0.16b, v1.16b}, v2.8b //load from ref_main_idx (row 0)
182 tbl v13.8b, { v0.16b, v1.16b}, v3.8b //load from ref_main_idx + 1 (row 0)
188 tbl v16.8b, { v0.16b, v1.16b}, v4.8b //load from ref_main_idx (row 1)
192 tbl v17.8b, { v0.16b, v1.16b}, v5.8b //load from ref_main_idx + 1 (row 1)
198 tbl v14.8b, { v0.16b, v1.16b}, v2.8b //load from ref_main_idx (row 2)
202 tbl v15.8b, { v0.16b, v1.16b}, v3.8b //load from ref_main_idx + 1 (row 2)
209 tbl v19.8b, { v0.16b, v1.16b}, v4.8b //load from ref_main_idx (row 3)
213 tbl v23.8b, { v0.16b, v1.16b}, v5.8b //load from ref_main_idx + 1 (row 3)
220 tbl v25.8b, { v0.16b, v1.16b}, v2.8b //load from ref_main_idx (row 4)
224 tbl v13.8b, { v0.16b, v1.16b}, v3.8b //load from ref_main_idx + 1 (row 4)
[all …]
Dihevc_intra_pred_filters_chroma_mode_11_to_17.s300 tbl v12.8b, { v0.16b, v1.16b}, v19.8b //load from ref_main_idx (row 0)
303 tbl v13.8b, { v0.16b, v1.16b}, v21.8b //load from ref_main_idx + 1 (row 0)
310 tbl v16.8b, { v0.16b, v1.16b}, v4.8b //load from ref_main_idx (row 1)
314 tbl v17.8b, { v0.16b, v1.16b}, v5.8b //load from ref_main_idx + 1 (row 1)
320 tbl v14.8b, { v0.16b, v1.16b}, v19.8b //load from ref_main_idx (row 2)
324 tbl v15.8b, { v0.16b, v1.16b}, v21.8b //load from ref_main_idx + 1 (row 2)
331 tbl v23.8b, { v0.16b, v1.16b}, v4.8b //load from ref_main_idx (row 3)
335 tbl v25.8b, { v0.16b, v1.16b}, v5.8b //load from ref_main_idx + 1 (row 3)
342 tbl v12.8b, { v0.16b, v1.16b}, v19.8b //load from ref_main_idx (row 4)
346 tbl v13.8b, { v0.16b, v1.16b}, v21.8b //load from ref_main_idx + 1 (row 4)
[all …]
/external/boringssl/src/crypto/asn1/
Da_strnid.c68 static void st_free(ASN1_STRING_TABLE *tbl);
124 ASN1_STRING_TABLE *tbl; in ASN1_STRING_set_by_NID() local
129 tbl = ASN1_STRING_TABLE_get(nid); in ASN1_STRING_set_by_NID()
130 if(tbl) { in ASN1_STRING_set_by_NID()
131 mask = tbl->mask; in ASN1_STRING_set_by_NID()
132 if(!(tbl->flags & STABLE_NO_MASK)) mask &= global_mask; in ASN1_STRING_set_by_NID()
134 tbl->minsize, tbl->maxsize); in ASN1_STRING_set_by_NID()
247 static void st_free(ASN1_STRING_TABLE *tbl) in st_free() argument
249 if(tbl->flags & STABLE_FLAGS_MALLOC) OPENSSL_free(tbl); in st_free()
Dt_bitst.c65 BIT_STRING_BITNAME *tbl, int indent) in ASN1_BIT_STRING_name_print() argument
70 for(bnam = tbl; bnam->lname; bnam++) { in ASN1_BIT_STRING_name_print()
82 BIT_STRING_BITNAME *tbl) in ASN1_BIT_STRING_set_asc() argument
85 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); in ASN1_BIT_STRING_set_asc()
94 int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl) in ASN1_BIT_STRING_num_asc() argument
97 for(bnam = tbl; bnam->lname; bnam++) { in ASN1_BIT_STRING_num_asc()

123456