Home
last modified time | relevance | path

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

12

/third_party/ffmpeg/libavcodec/alpha/
H A Dsimple_idct_alpha.c37 #define W3 19266 macro
104 b1 = W3 * t; in idct_row()
117 b0 += W3 * t; in idct_row()
130 b3 += W3 * t; in idct_row()
138 b2 += W3 * t; in idct_row()
188 b1 = W3 * col[8 * 1]; in idct_col()
199 b0 += W3 * col[8 * 3]; in idct_col()
209 b3 += W3 * col[8 * 5]; in idct_col()
215 b2 += W3 * col[8 * 7]; in idct_col()
/third_party/ffmpeg/libavcodec/
H A Dsimple_idct_template.c37 #undef W3 macro
52 #define W3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro
70 #define W3 19265 // 77062 macro
93 #define W3 38531 macro
170 MAC(b0, W3, row[3]);
171 b1 = MUL(W3, row[1]);
195 MAC(b2, W3, row[7]);
197 MAC(b3, W3, row[5]);
223 b1 = MUL(W3, col[8*1]); \
227 MAC(b0, W3, co
[all...]
H A Dwmv2dsp.c30 #define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */ macro
44 a5 = W5 * b[5] + W3 * b[3]; in wmv2_idct_row()
45 a3 = W3 * b[5] - W5 * b[3]; in wmv2_idct_row()
74 a5 = (W5 * b[8 * 5] + W3 * b[8 * 3] + 4) >> 3; in wmv2_idct_col()
75 a3 = (W3 * b[8 * 5] - W5 * b[8 * 3] + 4) >> 3; in wmv2_idct_col()
/third_party/ffmpeg/libavcodec/mips/
H A Dsimple_idct_mmi.c33 #define W3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro
45 W1, W3, W5, W7,
47 W3, -W7, -W1, -W5,
49 W5, -W1, W7, W3,
51 W7, -W5, W3, -W1,
H A Dwmv2dsp_mmi.c31 #define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */ macro
46 a3 = W3 * b[5] - W5 * b[3]; in wmv2_idct_row_mmi()
48 a5 = W5 * b[5] + W3 * b[3]; in wmv2_idct_row_mmi()
76 a3 = (W3 * b[40] - W5 * b[24] + 4) >> 3; in wmv2_idct_col_mmi()
78 a5 = (W5 * b[40] + W3 * b[24] + 4) >> 3; in wmv2_idct_col_mmi()
/third_party/ffmpeg/libavcodec/arm/
H A Dsimple_idct_arm.S31 #define W3 19266 define
93 @@ MUL16(b1, W3, row[1]);
96 @@ MAC16(b0, W3, row[3]);
103 ldr r9, =W3 @ R9=W3
105 mul r1, r9, r7 @ R1=W3*ROWr16[1]=b1 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
111 mlane r0, r9, r2, r0 @ R0+=W3*ROWr16[3]=b0 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
119 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7,
127 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7,
131 @@ MAC16(b3, W3, ro
[all...]
H A Dsimple_idct_armv6.S28 #define W3 19266 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
36 #define W13 (W1 | (W3 << 16))
58 ldr ip, =W13 /* ip = W1 | (W3 << 16) */
63 smuad r8, r3, ip /* r8 = B0 = W1*row[1] + W3*row[3] */
66 pkhtb r2, ip, r10,asr #16 /* r3 = W7 | (W3 << 16) */
68 smusdx r9, r2, r3 /* r9 = -B1 = W7*row[3] - W3*row[1] */
73 smlad r10,lr, r2, r10 /* B2 += W7*row[5] + W3*row[7] */
75 smlsdx r11,lr, ip, r11 /* B3 += W3*row[5] - W1*row[7] */
100 ldr ip, =W13 /* ip = W1 | (W3 << 16) */
104 smuad r8, r3, ip /* r8 = B0 = W1*row[1] + W3*ro
[all...]
H A Dsimple_idct_neon.S30 #define W3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 define
53 vmull.s16 q10, d4, w3 /* q10 = W3 * col[1] */
60 vmlal.s16 q9, d8, w3 /* q9 += W3 * col[3] */
109 vmlal.s16 q6, d5, w3 /* q6 += W3 * col[5] */
188 vmlal.s16 q6, d5, w3 /* q6 += W3 * col[5] */
247 .short W1, W2, W3, W4, W5, W6, W7, W4c
H A Dsimple_idct_armv5te.S28 #define W3 19266 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
36 #define W13 (W1 | (W3 << 16))
63 ldr ip, =W13 /* ip = W1 | (W3 << 16) */
/third_party/node/deps/openssl/openssl/crypto/sm3/
H A Dsm3_local.h51 #define EXPAND(W0,W7,W13,W3,W10) \
52 (P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
/third_party/openssl/crypto/sm3/
H A Dsm3_local.h51 #define EXPAND(W0,W7,W13,W3,W10) \
52 (P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
/third_party/typescript/tests/baselines/reference/
H A DconstEnums.js36 W3 = Enum1["A0"],
153 case Enum1.W3:
240 case 100 /* Enum1.W3 */:
/third_party/skia/third_party/externals/freetype/builds/compiler/
H A Dintelc.mk73 CFLAGS ?= /nologo /c /Ox /G5 /W3 /Qwd32
H A Dvisualage.mk63 CFLAGS ?= /Q- /Gd+ /O2 /G5 /W3 /C
H A Dvisualc.mk69 CFLAGS ?= /nologo /c /Ox /W3 /WX
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
H A Dtype_mat3x4.hpp51 typename X3, typename Y3, typename Z3, typename W3>
55 X3 x3, Y3 y3, Z3 z3, W3 w3);
H A Dtype_mat4x4.hpp52 typename X3, typename Y3, typename Z3, typename W3,
57 X3 const & x3, Y3 const & y3, Z3 const & z3, W3 const & w3,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/Disassembler/
H A DBPFDisassembler.cpp112 BPF::W0, BPF::W1, BPF::W2, BPF::W3, BPF::W4, BPF::W5,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h34 case AArch64::X3: return AArch64::W3; in getWRegFromXReg()
74 case AArch64::W3: return AArch64::X3; in getXRegFromWReg()
/third_party/ffmpeg/libavcodec/x86/
H A Dsimple_idct10.asm50 %define W3sh2 19265 ; W3 = 77062 = 19265<<2 + 2
/third_party/ffmpeg/libavcodec/ppc/
H A Dfdctdsp.c51 #define W3 (M_SQRT2 * C3) macro
62 { W0, W1, W2, W3 },
111 x8 = vec_madd(cnst, x8, mzero); /* x8 = x8 * W3; */ \
168 x8 = vec_madd(cnst, x8, mzero); /* x8 = x8 * W3; */ \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.cpp74 W0, W1, W2, W3, W4, W5, W6, W7, W8, W9, W10, W11, W12, W13, W14, W15, 0 in getCallerSavedRegs()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dnmake.mak54 CFLAGS = $(CFLAGS) /W3
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dnmake.mak54 CFLAGS = $(CFLAGS) /W3
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp68 {codeview::RegisterId::ARM64_W3, AArch64::W3}, in initLLVMToCVRegMapping()

Completed in 12 milliseconds

12