Searched refs:W1 (Results 1 - 16 of 16) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dsimple_idct.c38 #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */
48 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 macro
121 b0 = MUL16(W1, row[1]);
126 MAC16(b2, -W1, row[3]);
144 MAC16(b1, -W1, row[5]);
151 MAC16(b3, -W1, row[7]);
181 b0 = MUL16(W1, col[8*1]);
188 MAC16(b2, - W1, col[8*3]);
200 MAC16(b1, - W1, col[8*5]);
216 MAC16(b3, - W1, co
[all...]
H A Ddsputil.c4121 #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */ macro
4134 a1 = W1*b[1]+W7*b[7];
4135 a7 = W7*b[1]-W1*b[7];
4160 a1 = (W1*b[8*1]+W7*b[8*7] + 4)>>3;
4161 a7 = (W7*b[8*1]-W1*b[8*7] + 4)>>3;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/alpha/
H A Dsimple_idct_alpha.c40 #define W1 ((int_fast32_t) 22725) macro
108 b0 = W1 * t;
124 b2 -= W1 * t;
133 b1 -= W1 * t;
144 b3 -= W1 * t;
192 b0 = W1 * col[8 * 1];
206 b2 -= W1 * col[8 * 3];
212 b1 -= W1 * col[8 * 5];
221 b3 -= W1 * col[8 * 7];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A DMakefile.msvc53 # ones. Set to -W1 to avoid warnings about signed/unsigned combinations.
54 WARN_CFLAGS = -W1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/libcharset/lib/
H A DMakefile.msvc55 # ones. Set to -W1 to avoid warnings about signed/unsigned combinations.
56 WARN_CFLAGS = -W1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/src/
H A DMakefile.msvc49 # ones. Set to -W1 to avoid warnings about signed/unsigned combinations.
50 WARN_CFLAGS = -W1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/arm/
H A Dsimple_idct_arm.S31 #define W1 22725 define
107 @@ MUL16(b0, W1, row[1]);
113 @@ MAC16(b2, -W1, row[3]);
115 ldr r8, [r12, #offW1] @ R8=W1
117 mul r0, r8, r7 @ R0=W1*ROWr16[1]=b0 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
128 mlane r5, r8, r2, r5 @ R5-=W1*ROWr16[3]=b2 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
132 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7,
140 @@ R5=b2, R6=ROWr16[0], R7=b3, R8=W1, R9=W3, R10=W5, R11=W7,
145 @@ MAC16(b1, -W1, row[5]);
148 @@ MAC16(b3, -W1, ro
[all...]
H A Dsimple_idct_armv6.S26 #define W1 22725 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
36 #define W13 (W1 | (W3 << 16))
67 ldr ip, w13 /* ip = W1 | (W3 << 16) */
72 smuad r8, r3, ip /* r8 = B0 = W1*row[1] + W3*row[3] */
76 pkhbt r1, ip, r10,lsl #16 /* r1 = W1 | (W5 << 16) */
79 smusdx r10,r3, r1 /* r10 = B2 = W5*row[1] - W1*row[3] */
84 smlsdx r11,lr, ip, r11 /* B3 += W3*row[5] - W1*row[7] */
86 smlad r9, lr, r1, r9 /* B1 -= W1*row[5] + W5*row[7] */
109 ldr ip, w13 /* ip = W1 | (W3 << 16) */
113 smuad r8, r3, ip /* r8 = B0 = W1*ro
[all...]
H A Dsimple_idct_neon.S28 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 define
53 vmull.s16 q9, d4, w1 /* q9 = W1 * col[1] */
64 vmlsl.s16 q5, d8, w1 /* q5 -= W1 * col[3] */
91 vmlsl.s16 q10, d5, w1 /* q10 -= W1 * col[5] */
173 vmlsl.s16 q10, d5, w1 /* q10 -= W1 * col[5] */
234 .short W1, W2, W3, W4, W5, W6, W7, W4c
H A Dsimple_idct_armv5te.S26 #define W1 22725 /* cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5 */ define
36 #define W13 (W1 | (W3 << 16))
68 ldr ip, [pc, #(w13-.-8)] /* ip = W1 | (W3 << 16) */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/lib/
H A Dusercopy.S59 #define ALIGN(R, W0, W1) src R, W0, W1
62 #define ALIGN(R, W0, W1) src R, W1, W0
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/srclib/
H A DMakefile.msvc47 # ones. Set to -W1 to avoid warnings about signed/unsigned combinations.
48 WARN_CFLAGS = -W1
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dsx.c1374 #define W1 write_sx_byte(board, i, 0xaa) macro
1394 W1;
1398 W1;
1403 W1;
1408 W1;
1413 W1;
1423 #undef W1 macro
1430 #define W1 write_sx_word(board, i, 0xaa55) macro
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dfdct_altivec.c47 #define W1 (2 * C6) macro
61 { W0, W1, W2, W3 },
101 b2 = vec_madd(cnst, b2, b5); /* b2 = b5 + b2 * W1; */ \
158 b2 = vec_madd(cnst, b2, b5); /* b2 = b5 + b2 * W1; */ \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/tests/
H A DMakefile.msvc41 CFLAGS = $(MFLAGS) -W1 $(OPTIMFLAGS)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/win32/
H A DMakefile.msvc46 CFLAGS = /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /W1 $(CRUNTIME)

Completed in 128 milliseconds