Home
last modified time | relevance | path

Searched refs:cnst (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavcodec/ppc/
Dfdctdsp.c98 cnst = LD_W2; \
99 b5 = vec_madd(cnst, b5, mzero); /* b5 = b5 * W2; */ \
100 cnst = LD_W1; \
101 b2 = vec_madd(cnst, b2, b5); /* b2 = b5 + b2 * W1; */ \
102 cnst = LD_W0; \
103 b6 = vec_madd(cnst, b6, b5); /* b6 = b5 + b6 * W0; */ \
110 cnst = LD_W3; \
111 x8 = vec_madd(cnst, x8, mzero); /* x8 = x8 * W3; */ \
113 cnst = LD_W8; \
114 x0 = vec_madd(cnst, x0, mzero); /* x0 *= W8; */ \
[all …]
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_dump.c351 list_for_each_entry(struct dxil_const, cnst, list, head) { in dump_constants()
353 dump_value(d, &cnst->value); in dump_constants()
355 dump_type_name(d, cnst->value.type); in dump_constants()
356 if (!cnst->undef) { in dump_constants()
357 switch (cnst->value.type->type) { in dump_constants()
359 _mesa_string_buffer_printf(d->buf, " %10.5f\n", cnst->float_value); in dump_constants()
362 _mesa_string_buffer_printf(d->buf, " %d\n", cnst->int_value); in dump_constants()
367 i < cnst->value.type->array_or_vector_def.num_elems; i++) { in dump_constants()
369 cnst->array_values[i]->id); in dump_constants()
370 dump_type_name(d, cnst->value.type); in dump_constants()
[all …]
/third_party/openh264/codec/common/inc/
Dmsa_macros.h1232 #define MSA_DOTP_UB(RTYPE, mult, cnst, out) \ argument
1234 out = (RTYPE) __msa_dotp_u_h((v16u8) mult, (v16u8) cnst); \
1262 #define MSA_DOTP_SB(RTYPE, mult, cnst, out) \ argument
1264 out = (RTYPE) __msa_dotp_s_h((v16i8) mult, (v16i8) cnst); \
1292 #define MSA_DOTP_UH(RTYPE, mult, cnst, out) \ argument
1294 out = (RTYPE) __msa_dotp_u_w((v8u16) mult, (v8u16) cnst); \
1322 #define MSA_DOTP_SH(RTYPE, mult, cnst, out) \ argument
1324 out = (RTYPE) __msa_dotp_s_w((v8i16) mult, (v8i16) cnst); \
1352 #define MSA_DPADD_UB(RTYPE, mult, cnst, out) \ argument
1355 (v16u8) mult, (v16u8) cnst); \
[all …]
/third_party/mesa3d/src/gallium/drivers/zink/nir_to_spirv/
Dspirv_builder.c1445 struct spirv_const *cnst = rzalloc(b->mem_ctx, struct spirv_const); in get_const_def() local
1446 if (!cnst) in get_const_def()
1449 cnst->op = op; in get_const_def()
1450 cnst->type = type; in get_const_def()
1451 memcpy(&cnst->args, args, sizeof(uint32_t) * num_args); in get_const_def()
1452 cnst->num_args = num_args; in get_const_def()
1454 cnst->result = spirv_builder_new_id(b); in get_const_def()
1458 spirv_buffer_emit_word(&b->types_const_defs, cnst->result); in get_const_def()
1462 entry = _mesa_hash_table_insert(b->consts, cnst, cnst); in get_const_def()
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dupsampling_msa.c37 #define MULTHI_16(in0, in1, in2, in3, cnst, out0, out1) do { \ argument
38 const v4i32 const0 = (v4i32)__msa_fill_w(cnst * 256); \
45 #define MULTHI_8(in0, in1, cnst, out0) do { \ argument
46 const v4i32 const0 = (v4i32)__msa_fill_w(cnst * 256); \
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dupsampling_msa.c37 #define MULTHI_16(in0, in1, in2, in3, cnst, out0, out1) do { \ argument
38 const v4i32 const0 = (v4i32)__msa_fill_w(cnst * 256); \
45 #define MULTHI_8(in0, in1, cnst, out0) do { \ argument
46 const v4i32 const0 = (v4i32)__msa_fill_w(cnst * 256); \
/third_party/mksh/
Dsh.h2381 #define notoktomul(val,cnst) notok2mul(SIZE_MAX, (val), (cnst)) argument
2382 #define notoktoadd(val,cnst) notok2add(SIZE_MAX, (val), (cnst)) argument
2383 #define checkoktoadd(val,cnst) do { \ argument
2384 if (notoktoadd((val), (cnst))) \
2386 '+', (size_t)(cnst)); \
/third_party/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp6933 ir_constant *const cnst = in hir() local
6939 ? equal(cnst, state->switch_state.test_var) in hir()
6940 : logic_or(cmp, equal(cnst, state->switch_state.test_var)); in hir()