Home
last modified time | relevance | path

Searched refs:W2 (Results 1 - 25 of 31) sorted by relevance

12

/third_party/ffmpeg/libavutil/tests/
H A Dpixelutils.c27 #define W2 640 macro
69 int r = run_single_test(test, b1, W1, b2, W2, a, i); in run_test()
81 uint8_t *buf2 = av_malloc(W2*H2); in main()
102 RANDOM_INIT(buf2, W2*H2); in main()
109 memset(buf2, 0x00, W2*H2); in main()
116 memset(buf2, 0x90, W2*H2); in main()
/third_party/ffmpeg/libavcodec/alpha/
H A Dsimple_idct_alpha.c36 #define W2 21407 macro
76 a0 += W2 * t; in idct_row()
79 a3 -= W2 * t; in idct_row()
95 a1 -= W2 * t; in idct_row()
96 a2 += W2 * t; in idct_row()
166 a0 += W2 * col[8 * 2]; in idct_col()
169 a3 -= W2 * col[8 * 2]; in idct_col()
181 a1 -= W2 * col[8 * 6]; in idct_col()
182 a2 += W2 * col[8 * 6]; in idct_col()
/third_party/ffmpeg/libavcodec/
H A Dsimple_idct_template.c36 #undef W2 macro
51 #define W2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro
69 #define W2 21407 // 85627 macro
92 #define W2 42813 macro
164 a0 += (SUINT)W2 * row[2];
167 a3 -= (SUINT)W2 * row[2];
184 a1 += (SUINT)- W4*row[4] - (SUINT)W2*row[6];
185 a2 += (SUINT)- W4*row[4] + (SUINT)W2*row[6];
217 a0 += (SUINT) W2*col[8*2]; \
220 a3 += (SUINT)-W2*co
[all...]
H A Dwmv2dsp.c29 #define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */ macro
46 a2 = W2 * b[2] + W6 * b[6]; in wmv2_idct_row()
47 a6 = W6 * b[2] - W2 * b[6]; in wmv2_idct_row()
76 a2 = (W2 * b[8 * 2] + W6 * b[8 * 6] + 4) >> 3; in wmv2_idct_col()
77 a6 = (W6 * b[8 * 2] - W2 * b[8 * 6] + 4) >> 3; in wmv2_idct_col()
/third_party/ffmpeg/libavcodec/arm/
H A Dsimple_idct_arm.S30 #define W2 21407 define
166 @@ a3 = a0 - W2 * row[2];
167 @@ a0 = a0 + W2 * row[2];
175 ldr r8, =W2 @ R8=W2
183 mul r11, r8, r4 @ R11=W2*ROWr16[2]
184 sub r4, r6, r11 @ R4=a0-W2*ROWr16[2] (a3)
185 add r6, r6, r11 @ R6=a0+W2*ROWr16[2] (a0)
189 @@ R5=b2, R6=a0, R7=b3, R8=W2, R9=W4, R10=W6, R11 (free),
208 @@ W6 alone is no more useful, save W2*ROWr1
[all...]
H A Dsimple_idct_armv6.S27 #define W2 21407 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
37 #define W26 (W2 | (W6 << 16))
38 #define W42 (W4 | (W2 << 16))
39 #define W42n (-W4&0xffff | (-W2 << 16))
72 ldr r3, =W42n /* r3 = -W4 | (-W2 << 16) */
79 smlad r5, r2, r3, r5 /* A1 += -W4*row[4] - W2*row[6] */
80 smlsd r6, r2, r3, r6 /* A2 += -W4*row[4] + W2*row[6] */
199 ldr ip, =W42 /* ip = W4 | (W2 << 16) */
243 ldr ip, =W42 /* ip = W4 | (W2 << 16) */
271 ldr ip, =W42 /* ip = W4 | (W2 << 1
[all...]
H A Dsimple_idct_neon.S29 #define W2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 define
49 vmull.s16 q7, d6, w2 /* q9 = W2 * col[2] */
103 vmull.s16 q8, d7, w2 /* q8 = W2 * col[6] */
198 vmull.s16 q8, d7, w2 /* q8 = W2 * col[6] */
247 .short W1, W2, W3, W4, W5, W6, W7, W4c
H A Dsimple_idct_armv5te.S27 #define W2 21407 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
37 #define W26 (W2 | (W6 << 16))
55 ldr ip, =W26 /* ip = W2 | (W6 << 16) */
91 ldr ip, =W26 /* ip = W2 | (W6 << 16) */
100 smulbb lr, ip, a4 /* lr = W2*row[6] */
102 sub v2, v2, lr /* v2 -= W2*row[6] */
104 add v3, v3, lr /* v3 += W2*row[6] */
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFboMultisampleTests.cpp274 static const deUint32 W2 = 40, H2 = 40; in test() local
284 glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, W2, H2); in test()
306 glRenderbufferStorageMultisample(GL_RENDERBUFFER, samp2, GL_RGBA8, W2, H2); in test()
316 glBlitFramebuffer(0, 0, W2, H2, 0, 0, W2, H2, GL_COLOR_BUFFER_BIT, GL_NEAREST); in test()
322 deUint32 pixels[W2 * H2] = {}; in test()
323 glReadPixels(0, 0, W2, H2, GL_RGBA, GL_UNSIGNED_BYTE, pixels); in test()
329 for (deUint32 x = 0; x < W2; ++x) in test()
331 tcu::RGBA color(pixels[y * W2 + x]); in test()
/third_party/ffmpeg/libavcodec/mips/
H A Dsimple_idct_mmi.c32 #define W2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro
44 W4, W2, W4, W6,
46 W4, W6, -W4, -W2,
48 W4, -W6, -W4, W2,
50 W4, -W2, W4, -W6,
H A Dwmv2dsp_mmi.c30 #define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */ macro
45 a2 = W2 * b[2] + W6 * b[6]; in wmv2_idct_row_mmi()
49 a6 = W6 * b[2] - W2 * b[6]; in wmv2_idct_row_mmi()
75 a2 = (W2 * b[16] + W6 * b[48] + 4) >> 3; in wmv2_idct_col_mmi()
79 a6 = (W6 * b[16] - W2 * b[48] + 4) >> 3; in wmv2_idct_col_mmi()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DBinaryStreamWriter.cpp91 BinaryStreamWriter W2{Second}; in split()
92 return std::make_pair(W1, W2); in split()
H A DBinaryStreamReader.cpp177 BinaryStreamReader W2{Second}; in split()
178 return std::make_pair(W1, W2); in split()
/third_party/typescript/tests/baselines/reference/
H A DconstEnums.js35 W2 = Enum1.A0,
152 case Enum1.W2:
239 case 100 /* Enum1.W2 */:
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp419 BitcodeWriter W2(Buffer); in splitAndWriteThinLTOBitcode()
421 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode()
422 W2.writeModule(*MergedM, /*ShouldPreserveUseListOrder=*/false, in splitAndWriteThinLTOBitcode()
424 W2.writeSymtab(); in splitAndWriteThinLTOBitcode()
425 W2.writeStrtab(); in splitAndWriteThinLTOBitcode()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
H A Dtype_mat2x4.hpp48 typename X2, typename Y2, typename Z2, typename W2>
51 X2 x2, Y2 y2, Z2 z2, W2 w2);
H A Dtype_mat3x4.hpp50 typename X2, typename Y2, typename Z2, typename W2,
54 X2 x2, Y2 y2, Z2 z2, W2 w2,
H A Dtype_mat4x4.hpp51 typename X2, typename Y2, typename Z2, typename W2,
56 X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp342 uint16_t W1 = RC1.width(), W2 = RC2.width(); in operator ()() local
343 for (uint16_t i = 0, w = std::min(W1, W2); i < w; ++i) { in operator ()()
349 if (W1 != W2) in operator ()()
350 return W1 < W2; in operator ()()
360 uint16_t W1 = RC1.width(), W2 = RC2.width(); in operator ()() local
369 return Bit2 < W2; in operator ()()
371 if (W2 <= Bit2) in operator ()()
H A DBitTracker.cpp697 uint16_t W1 = A1.width(), W2 = A2.width();
699 assert(AtN < W1 && AtN+W2 <= W1);
702 if (W2 > 0)
703 Res.insert(RegisterCell::ref(A2), BT::BitMask(AtN, AtN+W2-1));
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/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.h33 case AArch64::X2: return AArch64::W2; in getWRegFromXReg()
73 case AArch64::W2: return AArch64::X2; in getXRegFromWReg()
/third_party/ffmpeg/libavcodec/x86/
H A Dsimple_idct10.asm49 %define W2sh2 21407 ; W2 = 85627 = 21407<<2 - 1
/third_party/ffmpeg/libavcodec/ppc/
H A Dfdctdsp.c50 #define W2 (M_SQRT2 * C6) macro
62 { W0, W1, W2, W3 },
99 b5 = vec_madd(cnst, b5, mzero); /* b5 = b5 * W2; */ \
156 b5 = vec_madd(cnst, b5, mzero); /* b5 = b5 * W2; */ \

Completed in 16 milliseconds

12