Home
last modified time | relevance | path

Searched refs:MULT (Results 1 - 25 of 29) sorted by relevance

12

/third_party/ffmpeg/libavcodec/ppc/
H A Dmpegaudiodsp_altivec.c61 #define MULT(a, b) \ in apply_window() macro
74 MULT( 0, 0); in apply_window()
75 MULT( 256, 64); in apply_window()
76 MULT( 512, 128); in apply_window()
77 MULT( 768, 192); in apply_window()
78 MULT(1024, 256); in apply_window()
79 MULT(1280, 320); in apply_window()
80 MULT(1536, 384); in apply_window()
81 MULT(1792, 448); in apply_window()
/third_party/ffmpeg/libavcodec/
H A Dxvididct.c145 #define MULT(c, x, n) ((unsigned)((int)((c) * (unsigned)(x)) >> (n))) macro
146 // 12b version => #define MULT(c,x, n) ((((c) >> 3) * (x)) >> ((n) - 3))
169 mm0 = MULT(TAN1, mm4, 16) + mm7; in idct_col_8()
170 mm1 = MULT(TAN1, mm7, 16) - mm4; in idct_col_8()
171 mm2 = MULT(TAN3, mm5, 16) + mm6; in idct_col_8()
172 mm3 = MULT(TAN3, mm6, 16) - mm5; in idct_col_8()
180 mm5 = 2 * MULT(SQRT2, mm5, 16); // 2*sqrt2 in idct_col_8()
181 mm6 = 2 * MULT(SQRT2, mm6, 16); // Watch out: precision loss but done to match in idct_col_8()
188 mm3 = MULT(TAN2, mm2, 16) + mm1; in idct_col_8()
189 mm2 = MULT(TAN in idct_col_8()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dmpegaudiodsp.c78 #define MULT(a, b) \ in apply_window() macro
91 MULT( 0, 0) in apply_window()
92 MULT( 256, 64) in apply_window()
93 MULT( 512, 128) in apply_window()
94 MULT( 768, 192) in apply_window()
95 MULT(1024, 256) in apply_window()
96 MULT(1280, 320) in apply_window()
97 MULT(1536, 384) in apply_window()
98 MULT(1792, 448) in apply_window()
108 #undef MULT in apply_window() macro
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D085-incorrect-argument-count.c1 #define MULT(x,y) ((x)*(y)) macro
2 MULT()
3 MULT(1)
4 MULT(1,2,3)
/third_party/icu/icu4j/perf-tests/perldriver/
H A DFormat.pm97 my @MULT = (1 , 1e3, 1e6, 1e9);
103 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
105 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/third_party/icu/icu4c/source/test/perf/perldriver/
H A DFormat.pm99 my @MULT = (1 , 1e3, 1e6, 1e9);
105 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
107 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/third_party/icu/icu4j/perf-tests/
H A Ddateformatperf.pl432 my @MULT = (1 , 1e3, 1e6, 1e9);
437 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
439 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
H A Dnormperf.pl482 my @MULT = (1 , 1e3, 1e6, 1e9);
487 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
489 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
H A Ddecimalformatperf.pl427 my @MULT = (1 , 1e3, 1e6, 1e9);
432 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
434 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
H A Dconverterperf.pl450 my @MULT = (1 , 1e3, 1e6, 1e9, 1e12);
455 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
457 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
H A Ducharacterperf.pl429 my @MULT = (1 , 1e3, 1e6, 1e9);
434 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
436 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
H A Dunicodesetperf.pl419 my @MULT = (1 , 1e3, 1e6, 1e9);
424 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
426 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
/third_party/ffmpeg/libavutil/
H A Dtx_priv.h34 #define MULT(x, m) ((x) * (m)) macro
46 #define MULT(x, m) ((x) * (m)) macro
58 #define MULT(x, m) (((((int64_t)(x)) * (int64_t)(m)) + 0x40000000) >> 31) macro
H A Dtx_template.c1347 data[ 0].re = MULT(fact[0], data[ 0].re); \
1348 data[ 0].im = MULT(fact[1], data[ 0].im); \
1349 data[len4].re = MULT(fact[2], data[len4].re); \
1350 data[len4].im = MULT(fact[3], data[len4].im); \
1354 t[0].re = MULT(fact[4], (data[i].re + data[len2 - i].re)); \
1355 t[0].im = MULT(fact[5], (data[i].im - data[len2 - i].im)); \
1356 t[1].re = MULT(fact[6], (data[i].im + data[len2 - i].im)); \
1357 t[1].im = MULT(fact[7], (data[i].re - data[len2 - i].re)); \
/third_party/node/deps/v8/src/compiler/backend/mips/
H A Dinstruction-scheduler-mips.cc401 MULT = 4, enumerator
574 return Latency::MULT + 1; in MulLatency()
580 return Latency::MULT + 2; in MulLatency()
1066 return Latency::MULT + Latency::MFHI; in MulhLatency()
1072 return 1 + Latency::MULT + Latency::MFHI; in MulhLatency()
/third_party/python/Objects/
H A Dlongobject.c4510 #define MULT(X, Y, result) \ in long_pow() macro
4527 MULT(a, a, z); in long_pow()
4529 MULT(z, a, z); in long_pow()
4537 MULT(a, z, z); in long_pow()
4562 MULT(z, z, z); in long_pow()
4564 MULT(z, a, z); in long_pow()
4581 MULT(a, a, a2); in long_pow()
4584 table[i] = NULL; /* must set to known value for MULT */ in long_pow()
4585 MULT(table[i-1], a2, table[i]); in long_pow()
4586 ++num_table_entries; /* incremented iff MULT succeede in long_pow()
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dinstruction-scheduler-riscv64.cc432 // TODO(RISCV): remove MULT instructions (MIPS legacy).
433 MULT = 4, enumerator
600 int latency = Latency::MULT + Latency::MOVF_HIGH; in Mulh32Latency()
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dinstruction-scheduler-mips64.cc426 MULT = 4, enumerator
608 latency = Latency::MULT + Latency::MFHI; in MulhLatency()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsISelLowering.h196 MULT,
/third_party/node/deps/v8/src/codegen/mips64/
H A Dconstants-mips64.h533 MULT = ((3U << 3) + 0),
1342 FunctionFieldToBitNumber(MULT) | FunctionFieldToBitNumber(DMULT) |
/third_party/node/deps/v8/src/codegen/mips/
H A Dconstants-mips.h530 MULT = ((3U << 3) + 0),
1284 FunctionFieldToBitNumber(MULT) | FunctionFieldToBitNumber(MULTU) |
H A Dassembler-mips.cc1827 GenInstrRegister(SPECIAL, rs, rt, zero_reg, 0, MULT); in mult()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeMIPS_common.c250 #define MULT (HI(0) | LO(24)) macro
1846 FAIL_IF(push_inst(compiler, SELECT_OP(DMULT, MULT) | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
1855 FAIL_IF(push_inst(compiler, SELECT_OP(DMULT, MULT) | S(src1) | T(src2), MOVABLE_INS)); in emit_single_op()
2181 FAIL_IF(push_inst(compiler, (op == SLJIT_LMUL_UW ? MULTU : MULT) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS)); in sljit_emit_op0()
/third_party/python/Lib/test/
H A Dtest_buffer.py147 MULT = 1 variable
196 multiplier = choice(cap[obj][MULT])
209 multiplier = choice(cap[obj][MULT])
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp5059 TOut.emitRR(Inst.getOpcode() == Mips::MULImmMacro ? Mips::MULT : Mips::DMULT, in expandMulImm()
5079 TOut.emitRR(Inst.getOpcode() == Mips::MULOMacro ? Mips::MULT : Mips::DMULT, in expandMulO()

Completed in 57 milliseconds

12