/third_party/ffmpeg/libavcodec/alpha/ |
H A D | simple_idct_alpha.c | 41 #define W7 4520 macro 106 b3 = W7 * t; in idct_row() 118 b1 -= W7 * t; in idct_row() 129 b2 += W7 * t; in idct_row() 136 b0 += W7 * t; in idct_row() 190 b3 = W7 * col[8 * 1]; in idct_col() 200 b1 -= W7 * col[8 * 3]; in idct_col() 208 b2 += W7 * col[8 * 5]; in idct_col() 213 b0 += W7 * col[8 * 7]; in idct_col()
|
/third_party/ffmpeg/libavcodec/ |
H A D | simple_idct_template.c | 41 #undef W7 macro 56 #define W7 4520 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro 74 #define W7 4520 // 18081 macro 97 #define W7 9041 macro 172 MAC(b1, -W7, row[3]); 175 b3 = MUL(W7, row[1]); 189 MAC(b0, W7, row[7]); 194 MAC(b2, W7, row[5]); 225 b3 = MUL(W7, col[8*1]); \ 228 MAC(b1, -W7, co [all...] |
H A D | wmv2dsp.c | 34 #define W7 565 /* 2048*sqrt (2)*cos (7*pi/16) */ macro 42 a1 = W1 * b[1] + W7 * b[7]; in wmv2_idct_row() 43 a7 = W7 * b[1] - W1 * b[7]; in wmv2_idct_row() 72 a1 = (W1 * b[8 * 1] + W7 * b[8 * 7] + 4) >> 3; in wmv2_idct_col() 73 a7 = (W7 * b[8 * 1] - W1 * b[8 * 7] + 4) >> 3; in wmv2_idct_col()
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | simple_idct_mmi.c | 37 #define W7 4520 //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 D | wmv2dsp_mmi.c | 35 #define W7 565 /* 2048*sqrt (2)*cos (7*pi/16) */ macro 44 a1 = W1 * b[1] + W7 * b[7]; in wmv2_idct_row_mmi() 50 a7 = W7 * b[1] - W1 * b[7]; in wmv2_idct_row_mmi() 74 a1 = (W1 * b[ 8] + W7 * b[56] + 4) >> 3; in wmv2_idct_col_mmi() 80 a7 = (W7 * b[ 8] - W1 * b[56] + 4) >> 3; in wmv2_idct_col_mmi()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | simple_idct_arm.S | 35 #define W7 4520 define 95 @@ MUL16(b3, W7, row[1]); 97 @@ MAC16(b1, -W7, row[3]); 106 ldr r11, =W7 @ R11=W7 108 mul r7, r11, r7 @ R7=W7*ROWr16[1]=b3 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle) 113 mlane r1, r11, r2, r1 @ R1-=W7*ROWr16[3]=b1 (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, 130 @@ MAC16(b2, W7, ro [all...] |
H A D | simple_idct_armv6.S | 32 #define W7 4520 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define 41 #define W57 (W5 | (W7 << 16)) 59 ldr r10,=W57 /* r10 = W5 | (W7 << 16) */ 64 smusdx r11,r3, r10 /* r11 = B3 = W7*row[1] - W5*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] */ 69 smlad r8, lr, r10,r8 /* B0 += W5*row[5] + W7*row[7] */ 73 smlad r10,lr, r2, r10 /* B2 += W7*row[5] + W3*row[7] */ 96 ldr r10,=W57 /* r10 = W5 | (W7 << 16) */ 103 smusdx r11,r3, r10 /* r11 = B3 = W7*ro [all...] |
H A D | simple_idct_neon.S | 34 #define W7 4520 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 define 57 vmull.s16 q6, d4, w7 /* q6 = W7 * col[1] */ 61 vmlsl.s16 q10, d8, w7 /* q10 -= W7 * col[3] */ 104 vmlal.s16 q5, d5, w7 /* q5 += W7 * col[5] */ 187 vmlal.s16 q5, d5, w7 /* q5 += W7 * col[5] */ 247 .short W1, W2, W3, W4, W5, W6, W7, W4c
|
H A D | simple_idct_armv5te.S | 32 #define W7 4520 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define 38 #define W57 (W5 | (W7 << 16)) 64 ldr lr, =W57 /* lr = W5 | (W7 << 16) */
|
/third_party/node/deps/openssl/openssl/crypto/sm3/ |
H A D | sm3_local.h | 51 #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 D | sm3_local.h | 51 #define EXPAND(W0,W7,W13,W3,W10) \ 52 (P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/Disassembler/ |
H A D | BPFDisassembler.cpp | 113 BPF::W6, BPF::W7, BPF::W8, BPF::W9, BPF::W10, BPF::W11};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 38 case AArch64::X7: return AArch64::W7; in getWRegFromXReg() 78 case AArch64::W7: return AArch64::X7; in getXRegFromWReg()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | simple_idct10.asm | 56 %define W7sh2 4520 ; W7 = 18081 = 4520<<2 + 1
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | fdctdsp.c | 55 #define W7 (M_SQRT2 * (C1 + C3 - C5 - C7)) macro 63 { W4, W5, W6, W7 }, 129 b1 = vec_madd(cnst, x7, x0); /* b1 = x7 * W7 + x0; */ \ 186 b1 = vec_madd(cnst, x7, x0); /* b1 = x7 * W7 + x0; */ \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonRegisterInfo.cpp | 74 W0, W1, W2, W3, W4, W5, W6, W7, W8, W9, W10, W11, W12, W13, W14, W15, 0 in getCallerSavedRegs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64MCTargetDesc.cpp | 72 {codeview::RegisterId::ARM64_W7, AArch64::W7}, in initLLVMToCVRegMapping()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/Disassembler/ |
H A D | HexagonDisassembler.cpp | 607 Hexagon::W4, Hexagon::W5, Hexagon::W6, Hexagon::W7, in DecodeHvxWRRegisterClass()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/ |
H A D | AArch64Disassembler.cpp | 463 AArch64::W5, AArch64::W6, AArch64::W7, AArch64::W8, AArch64::W9,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64FastISel.cpp | 3008 AArch64::W5, AArch64::W6, AArch64::W7 }, in fastLowerArguments()
|