HomeSort by relevance Sort by last modified time
    Searched refs:tmp2 (Results 1 - 25 of 354) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/tsan/
simple_stack2.cc 12 int tmp2 = tmp; local
13 (void)tmp2;
19 int tmp2 = tmp; local
20 (void)tmp2;
25 int tmp2 = tmp; local
26 (void)tmp2;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GetSetTest.java 269 byte tmp2[] = new byte[gCount];
272 verify(tmp, tmp2, out1DAlloc, "Data mismatch char: ", 1);
274 verify(tmp, tmp2, out1DAlloc, "Data mismatch relaxed char: ", 1);
277 verify(tmp, tmp2, out2DAlloc, "Data mismatch char: ", 1);
279 verify(tmp, tmp2, out2DAlloc, "Data mismatch relaxed char: ", 1);
282 verify(tmp, tmp2, out3DAlloc, "Data mismatch char: ", 1);
284 verify(tmp, tmp2, out3DAlloc, "Data mismatch relaxed char: ", 1);
290 byte tmp2[] = new byte[gCount];
292 verify(tmp, tmp2, out1DAlloc, "Data mismatch char2: ", 2);
294 verify(tmp, tmp2, out1DAlloc, "Data mismatch relaxed char2: ", 2)
435 short tmp2[] = new short[gCount]; local
455 short tmp2[] = new short[gCount]; local
475 short tmp2[] = new short[gCount]; local
495 short tmp2[] = new short[gCount]; local
515 short tmp2[] = new short[gCount]; local
535 short tmp2[] = new short[gCount]; local
555 short tmp2[] = new short[gCount]; local
575 short tmp2[] = new short[gCount]; local
598 int tmp2[] = new int[gCount]; local
618 int tmp2[] = new int[gCount]; local
638 int tmp2[] = new int[gCount]; local
658 int tmp2[] = new int[gCount]; local
678 int tmp2[] = new int[gCount]; local
698 int tmp2[] = new int[gCount]; local
718 int tmp2[] = new int[gCount]; local
738 int tmp2[] = new int[gCount]; local
761 long tmp2[] = new long[gCount]; local
781 long tmp2[] = new long[gCount]; local
801 long tmp2[] = new long[gCount]; local
821 long tmp2[] = new long[gCount]; local
841 long tmp2[] = new long[gCount]; local
861 long tmp2[] = new long[gCount]; local
881 long tmp2[] = new long[gCount]; local
901 long tmp2[] = new long[gCount]; local
924 float tmp2[] = new float[gCount]; local
944 float tmp2[] = new float[gCount]; local
964 float tmp2[] = new float[gCount]; local
984 float tmp2[] = new float[gCount]; local
1005 double tmp2[] = new double[gCount]; local
1025 double tmp2[] = new double[gCount]; local
1045 double tmp2[] = new double[gCount]; local
1065 double tmp2[] = new double[gCount]; local
    [all...]
VLoadTest.java 199 byte tmp2[] = new byte[w];
201 verify(tmp, tmp2, "Data mismatch char: ");
207 byte tmp2[] = new byte[w];
209 verify(tmp, tmp2, "Data mismatch uchar: ");
215 byte tmp2[] = new byte[w];
217 verify(tmp, tmp2, "Data mismatch relaxed char: ");
223 byte tmp2[] = new byte[w];
225 verify(tmp, tmp2, "Data mismatch relaxed uchar: ");
231 short tmp2[] = new short[w]; local
233 verify(tmp, tmp2, "Data mismatch short: ")
239 short tmp2[] = new short[w]; local
247 short tmp2[] = new short[w]; local
255 short tmp2[] = new short[w]; local
263 int tmp2[] = new int[w]; local
271 int tmp2[] = new int[w]; local
279 int tmp2[] = new int[w]; local
287 int tmp2[] = new int[w]; local
295 long tmp2[] = new long[w]; local
303 long tmp2[] = new long[w]; local
310 long tmp2[] = new long[w]; local
317 long tmp2[] = new long[w]; local
325 float tmp2[] = new float[w]; local
337 float tmp2[] = new float[w]; local
349 double tmp2[] = new double[w]; local
361 double tmp2[] = new double[w]; local
    [all...]
  /external/aac/libFDK/include/arm/
cplx_mul.h 110 LONG tmp1,tmp2; local
118 : "=&r"(tmp1), "=&r"(tmp2)
123 *c_Im = tmp2;
135 LONG tmp1, tmp2; local
141 "smlawb %1, %3, %4, %1;\n" /* tmp2 = a_Im * b_Re + a_Re * b_Im */
142 : "=&r"(tmp1), "=&r"(tmp2)
147 *c_Im = tmp2;
159 LONG tmp1, tmp2; local
166 : "=&r"(tmp1), "=&r"(tmp2)
171 *c_Im += tmp2;
184 LONG tmp1, tmp2; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad.cpp 97 int saddata[16], tmp, tmp2; /* used when collecting flag (global) is on */ local
115 tmp2 = (cur_word >> 24) & 0xFF;
116 sad = SUB_SAD(sad, tmp, tmp2);
118 tmp2 = (cur_word >> 16) & 0xFF;
119 sad = SUB_SAD(sad, tmp, tmp2);
121 tmp2 = (cur_word >> 8) & 0xFF;
122 sad = SUB_SAD(sad, tmp, tmp2);
125 tmp2 = (cur_word & 0xFF);
126 sad = SUB_SAD(sad, tmp, tmp2);
130 tmp2 = (cur_word >> 24) & 0xFF
201 int tmp, tmp2; local
    [all...]
sad_halfpel_inline.h 31 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
33 tmp = (tmp2 >> 1) - tmp;
40 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
42 tmp = (tmp >> 2) - tmp2;
51 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
55 rsbs tmp, tmp, tmp2, asr #1 ; local
63 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
67 rsbs tmp, tmp2, tmp, asr #2 ; local
77 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
84 : "r"(tmp2)
    [all...]
sad_halfpel.cpp 189 int difmad, tmp, tmp2; local
213 tmp2 = p1[13] + p2[13];
214 tmp += tmp2;
215 tmp2 = (cur_word >> 24) & 0xFF;
217 sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
219 tmp2 = p1[9] + p2[9];
220 tmp += tmp2;
221 tmp2 = (cur_word >> 16) & 0xFF;
223 sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
225 tmp2 = p1[5] + p2[5]
271 int difmad, tmp, tmp2; local
352 int difmad, tmp, tmp2; local
427 int sad = 0, tmp, tmp2; local
495 int sad = 0, tmp, tmp2; local
561 int sad = 0, tmp, tmp2; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad.cpp 113 Int saddata[16], tmp, tmp2; /* used when collecting flag (global) is on */ local
128 tmp2 = (cur_word >> 24) & 0xFF;
129 sad = SUB_SAD(sad, tmp, tmp2);
131 tmp2 = (cur_word >> 16) & 0xFF;
132 sad = SUB_SAD(sad, tmp, tmp2);
134 tmp2 = (cur_word >> 8) & 0xFF;
135 sad = SUB_SAD(sad, tmp, tmp2);
138 tmp2 = (cur_word & 0xFF);
139 sad = SUB_SAD(sad, tmp, tmp2);
143 tmp2 = (cur_word >> 24) & 0xFF
214 Int tmp, tmp2; local
321 Int tmp, tmp2, tmp3, mask = 0xFF; local
    [all...]
sad_halfpel_inline.h 34 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
36 tmp = (tmp2 >> 1) - tmp;
43 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
45 tmp = (tmp >> 2) - tmp2;
54 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
58 rsbs tmp, tmp, tmp2, asr #1 ; local
66 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
70 rsbs tmp, tmp2, tmp, asr #2 ; local
81 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
87 register int32 uu = tmp2;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
gmed_n.cpp 134 Word16 tmp2[NMAX];
138 tmp2[i] = ind[i];
146 if (sub (tmp2[j], max) >= 0)
148 max = tmp2[j];
152 tmp2[ix] = -32768;
192 Word16 tmp2[NMAX]; local
196 *(tmp2 + i) = *(ind + i);
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);
210 *(tmp2 + ix) = -32768
    [all...]
  /external/clang/test/CodeGen/
vla-3.c 9 char tmp2[size+16]; local
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdFillRow7.s 29 tmp2 RN 2 label
71 ASR tmp2,center,#2
72 CMP tmp2,#9
73 ADDCC pc,pc,tmp2,LSL #2
85 ; LDR tmp2, [ref], #4
87 ; STR tmp2, [fill], #4
89 ; LDR tmp2, [ref], #4
91 ; STR tmp2, [fill], #4
93 ; LDR tmp2, [ref], #4
95 ; STR tmp2, [fill],#
    [all...]
  /external/libopus/silk/float/
warped_autocorrelation_FLP.c 44 double tmp1, tmp2; local
57 tmp2 = state[ i ] + warping * ( state[ i + 1 ] - tmp1 );
61 tmp1 = state[ i + 1 ] + warping * ( state[ i + 2 ] - tmp2 );
62 state[ i + 1 ] = tmp2;
63 C[ i + 1 ] += state[ 0 ] * tmp2;
  /external/aac/libFDK/src/arm/
scale_arm.cpp 118 FIXP_DBL tmp2 = mySpec[2]; local
122 tmp2 = fMultDiv2(tmp2, factor);
126 tmp2 <<= shift;
130 *mySpec++ = tmp2;
148 FIXP_DBL tmp2 = mySpec[2]; local
152 tmp2 = fMultDiv2(tmp2, factor);
156 tmp2 >>= shift;
160 *mySpec++ = tmp2;
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_Image.cpp 797 tmp = 0, tmp1 = 0, tmp2 = 0, maskL = 0, maskR = 0, maskM = 0; local
851 tmp2 = JBIG2_GETDWORD(lineDst);
854 tmp = (tmp2 & ~maskM) | ((tmp1 | tmp2) & maskM);
857 tmp = (tmp2 & ~maskM) | ((tmp1 & tmp2) & maskM);
860 tmp = (tmp2 & ~maskM) | ((tmp1 ^ tmp2) & maskM);
1211 FX_DWORD s1, d1, d2, shift, shift1, shift2, tmp, tmp1, tmp2, maskL, maskR, maskM; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_transform.c 99 i32 tmp0, tmp1, tmp2, tmp3; local
109 tmp2 = levelScale[qpMod6[qp]][1] << qpDiv;
123 data[1] = (d1 * tmp2);
124 data[14] = (d2 * tmp2);
130 data[4] = (d1 * tmp2);
137 tmp0 = (d1 * tmp2);
139 data[3] = (d3 * tmp2);
143 data[6] = (d1 * tmp2);
145 data[12] = (d3 * tmp2);
153 data[11] = (d3 * tmp2);
257 i32 tmp0, tmp1, tmp2, tmp3; local
361 i32 tmp0, tmp1, tmp2, tmp3; local
    [all...]
h264bsd_image.c 89 u32 tmp1, tmp2; local
114 tmp2 = *ptr++;
116 *lum++ = tmp2;
118 tmp2 = *ptr++;
120 *lum++ = tmp2;
128 tmp2 = *ptr++;
130 *cb++ = tmp2;
137 tmp2 = *ptr++;
139 *cr++ = tmp2;
186 i32 tmp1, tmp2, tmp3, tmp4 local
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strlen.S 47 #define tmp2 x8 define
74 orr tmp2, data1, #REP8_7f
77 bic has_nul1, tmp1, tmp2
98 orr tmp2, data2, #REP8_7f
99 bic has_nul2, tmp1, tmp2
112 mov tmp2, #~0
115 lsl tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). */
118 lsr tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). *
    [all...]
memset.S 56 #define tmp2 x4 define
128 neg tmp2, dst
129 ands tmp2, tmp2, #15
134 sub count, count, tmp2
136 add dst, dst, tmp2
161 neg tmp2, dst
162 ands tmp2, tmp2, #15
164 sub count, count, tmp2
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_hor_half.s 56 tmp2 RN 8 label
103 ADD tmp2, y0, partH ;// (y0+partHeight)
105 CMP tmp2, height
133 MLA tmp2, width, y0, x0 ;// y0*width+x0
134 ADD ref, ref, tmp2 ;// ref += y0*width+x0
147 ADD tmp2, partH, partW, LSL #4
148 ADD count, count, tmp2, LSL #16
170 SMLATB tmp2, x_2_0, mult_20_m5, plus16
175 SMLAD tmp2, x_3_1, mult_20_01, tmp2
    [all...]
h264bsd_interpolate_hor_quarter.s 56 tmp2 RN 8 label
105 ADD tmp2, y0, partH ;// (y0+partHeight)
107 CMP tmp2, height
135 MLA tmp2, width, y0, x0 ;// y0*width+x0
136 ADD ref, ref, tmp2 ;// ref += y0*width+x0
149 ADD tmp2, partH, partW, LSL #4
150 ADD count, count, tmp2, LSL #16
172 SMLATB tmp2, x_2_0, mult_20_m5, plus16
177 SMLAD tmp2, x_3_1, mult_20_01, tmp2
    [all...]
  /external/aac/libAACdec/src/arm/
block_arm.cpp 120 FIXP_DBL tmp0, tmp1, tmp2, tmp3; local
123 tmp2 = pSpectrum[2];
127 tmp2 >>= scale;
131 *pSpectrum++ = tmp2;
  /bionic/libc/arch-arm64/denver64/bionic/
memset.S 53 #define tmp2 x4 define
138 neg tmp2, dst
139 ands tmp2, tmp2, #15
144 sub count, count, tmp2
146 add dst, dst, tmp2
188 neg tmp2, dst
189 ands tmp2, tmp2, #15
191 sub count, count, tmp2
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_mdct_18.cpp 137 int32 tmp2; local
171 tmp2 = vec[10]; // vec[10]
177 vec[ 1] = vec[ 9] - tmp2; // vec[9] + vec[10]
178 vec[ 3] = vec[11] - tmp2;
189 tmp2 = vec[0];
200 history[i ] = -(tmp2 + tmp1);
201 tmp2 = tmp1;
210 history[6] = -(tmp2 + tmp1);
221 tmp2 = history[16];
226 vec[16] = fxp_mac32_Q32(tmp2, vec[11] << 1, window[16])
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample_by_2.c 71 WebRtc_Word32 tmp1, tmp2, diff, in32, out32; local
90 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
92 diff = tmp2 - state3;
94 state2 = tmp2;
102 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state5);
104 diff = tmp2 - state7;
106 state6 = tmp2;
128 WebRtc_Word32 tmp1, tmp2, diff, in32, out32; local
147 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1);
149 diff = tmp2 - state3
    [all...]

Completed in 558 milliseconds

1 2 3 4 5 6 7 8 91011>>