HomeSort by relevance Sort by last modified time
    Searched refs:tmp1 (Results 26 - 50 of 277) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwb/src/
oversamp_12k8_to_16k.cpp 284 int16 tmp1, tmp2, tmp3, tmp4; local
288 tmp1 = *(pt_x++);
292 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), 0x00002000L);
296 tmp1 = *(pt_x++);
300 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
304 tmp1 = *(pt_x++);
308 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
312 tmp1 = *(pt_x++);
316 L_sum = fxp_mac_16by16(tmp1, *(pt_fir++), L_sum);
320 tmp1 = *(pt_x++)
    [all...]
band_pass_6k_7k.cpp 193 int16 tmp1 = x[(i<<2)+j ]; local
197 L_tmp1 = fxp_mac_16by16(tmp1, fir_6k_7k[j ], L_tmp1);
204 tmp1 = x[(i<<2)+j+3];
207 L_tmp2 = fxp_mac_16by16(tmp1, fir_6k_7k[j+2], L_tmp2);
208 L_tmp4 = fxp_mac_16by16(tmp1, fir_6k_7k[j ], L_tmp4);
209 L_tmp3 = fxp_mac_16by16(tmp1, fir_6k_7k[j+1], L_tmp3);
210 L_tmp1 = fxp_mac_16by16(tmp1, fir_6k_7k[j+3], L_tmp1);
215 tmp1 = x[(i<<2)+j+5];
218 L_tmp4 = fxp_mac_16by16(tmp1, fir_6k_7k[j+2], L_tmp4);
219 L_tmp3 = fxp_mac_16by16(tmp1, fir_6k_7k[j+3], L_tmp3)
    [all...]
low_pass_filt_7k.cpp 173 int16 tmp1 = x[(i<<2)+j ]; local
177 L_tmp1 = fxp_mac_16by16(tmp1, fir_7k[j ], L_tmp1);
184 tmp1 = x[(i<<2)+j+3];
187 L_tmp2 = fxp_mac_16by16(tmp1, fir_7k[j+2], L_tmp2);
188 L_tmp4 = fxp_mac_16by16(tmp1, fir_7k[j ], L_tmp4);
189 L_tmp3 = fxp_mac_16by16(tmp1, fir_7k[j+1], L_tmp3);
190 L_tmp1 = fxp_mac_16by16(tmp1, fir_7k[j+3], L_tmp1);
195 tmp1 = x[(i<<2)+j+5];
198 L_tmp4 = fxp_mac_16by16(tmp1, fir_7k[j+2], L_tmp4);
199 L_tmp3 = fxp_mac_16by16(tmp1, fir_7k[j+3], L_tmp3)
    [all...]
  /external/eigen/unsupported/test/
NumericalDiff.cpp 39 double tmp1, tmp2, tmp3; local
45 tmp1 = i+1;
47 tmp3 = (i>=8)? tmp2 : tmp1;
48 fvec[i] = y[i] - (x[0] + tmp1/(x[1]*tmp2 + x[2]*tmp3));
55 double tmp1, tmp2, tmp3, tmp4; local
58 tmp1 = i+1;
60 tmp3 = (i>=8)? tmp2 : tmp1;
63 fjac(i,1) = tmp1*tmp2/tmp4;
64 fjac(i,2) = tmp1*tmp3/tmp4;
  /bionic/libc/arch-arm64/generic/bionic/
strchr.S 47 #define tmp1 x3 define
86 ands tmp1, srcin, #31
95 neg tmp1, tmp1
106 lsl tmp1, tmp1, #1
110 lsr tmp1, tmp3, tmp1
113 bic tmp1, tmp3, tmp1 // Mask padding bits
    [all...]
memcmp.S 49 #define tmp1 x8 define
58 eor tmp1, src1, src2
59 tst tmp1, #7
61 ands tmp1, src1, #7
120 add limit, limit, tmp1 /* Adjust the limit for the extra. */
121 lsl tmp1, tmp1, #3 /* Bytes beyond alignment -> bits. */
123 neg tmp1, tmp1 /* Bits to alignment -64. */
128 lsl tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). *
    [all...]
memmove.S 45 #define tmp1 x3 define
65 mov tmp1, origsrc
67 mov origdstin, tmp1
76 add tmp1, src, count
77 cmp dstin, tmp1
93 ands tmp1, count, #0x30
95 sub dst, dst, tmp1
96 sub src, src, tmp1
112 ldr tmp1, [src, #-8]!
113 str tmp1, [dst, #-8]
    [all...]
  /external/libopus/silk/fixed/
burg_modified_FIX.c 58 opus_int32 C0, num, nrg, rc_Q31, invGain_Q30, Atmp_QA, Atmp1, tmp1, tmp2, x1, x2; local
130 tmp1 = silk_LSHIFT32( (opus_int32)x_ptr[ n ], QA - 16 ); /* Q(QA-16) */
136 tmp1 = silk_SMLAWB( tmp1, Atmp_QA, x_ptr[ n - k - 1 ] ); /* Q(QA-16) */
139 tmp1 = silk_LSHIFT32( -tmp1, 32 - QA - rshifts ); /* Q(16-rshifts) */
142 CAf[ k ] = silk_SMLAWB( CAf[ k ], tmp1, x_ptr[ n - k ] ); /* Q( -rshift ) */
151 tmp1 = silk_LSHIFT32( (opus_int32)x_ptr[ n ], 17 ); /* Q17 */
157 tmp1 = silk_MLA( tmp1, x_ptr[ n - k - 1 ], Atmp1 ); /* Q17 *
    [all...]
  /external/libopus/silk/float/
burg_modified_FLP.c 49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2; local
79 tmp1 = x_ptr[ n ];
85 tmp1 += x_ptr[ n - k - 1 ] * Atmp;
89 CAf[ k ] -= tmp1 * x_ptr[ n - k ];
93 tmp1 = C_first_row[ n ];
97 tmp1 += C_last_row[ n - k - 1 ] * Atmp;
100 CAf[ n + 1 ] = tmp1;
121 tmp1 = invGain * ( 1.0 - rc * rc );
122 if( tmp1 <= minInvGain ) {
132 invGain = tmp1;
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_filter_neon.h 32 uint16x8_t tmp1, tmp2; local
43 tmp1 = vmull_u8(vreinterpret_u8_u32(va0), v16_y); // tmp1 = [a01|a00] * (16-y)
50 tmp = vmul_u16(vget_high_u16(tmp1), vx); // tmp = a01 * x
52 tmp = vmla_u16(tmp, vget_low_u16(tmp1), v16_x); // tmp += a00 * (16-x)
67 uint16x8_t tmp1, tmp2; local
78 tmp1 = vmull_u8(vreinterpret_u8_u32(va0), v16_y); // tmp1 = [a01|a00] * (16-y)
85 tmp = vmul_u16(vget_high_u16(tmp1), vx); // tmp = a01 * x
87 tmp = vmla_u16(tmp, vget_low_u16(tmp1), v16_x); // tmp += a00 * (16-x
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 1090 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1279 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1497 int L1, L0, R0, R1, tmp, tmp1; local
1587 int L1, L0, R0, R1, tmp, tmp1; local
    [all...]
  /external/jpeg/
jidctint.c 152 INT32 tmp0, tmp1, tmp2, tmp3; local
217 tmp1 = (z2 - z3) << CONST_BITS;
221 tmp11 = tmp1 + tmp2;
222 tmp12 = tmp1 - tmp2;
229 tmp1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
234 z2 = tmp1 + tmp2;
236 z4 = tmp1 + tmp3;
240 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
252 tmp1 += z2 + z4
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jidctint.c 153 INT32 tmp0, tmp1, tmp2, tmp3; local
218 tmp1 = (z2 - z3) << CONST_BITS;
222 tmp11 = tmp1 + tmp2;
223 tmp12 = tmp1 - tmp2;
230 tmp1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
235 z2 = tmp1 + tmp2;
237 z4 = tmp1 + tmp3;
241 tmp1 = MULTIPLY(tmp1, FIX_2_053119869); /* sqrt(2) * ( c1+c3-c5+c7) */
253 tmp1 += z2 + z4
    [all...]
  /external/boringssl/src/crypto/bn/asm/
bn-586.pl 434 $tmp1="ecx";
452 &mov($tmp1,&DWP($i*4,$a,"",0)); # *a
454 &add($tmp1,$c);
457 &add($tmp1,$tmp2);
459 &mov(&DWP($i*4,$r,"",0),$tmp1); # *r
477 &mov($tmp1,&DWP($i*4,$a,"",0)); # *a
479 &add($tmp1,$c);
482 &add($tmp1,$tmp2);
485 &mov(&DWP($i*4,$r,"",0),$tmp1); # *r
506 $tmp1="ecx"
    [all...]
  /external/boringssl/src/crypto/sha/asm/
sha1-586.pl 148 $tmp1="ebp";
163 if ($n==0) { &mov($tmp1,$a); }
164 else { &mov($a,$tmp1); }
165 &rotl($tmp1,5); # tmp1=ROTATE(a,5)
167 &add($tmp1,$e); # tmp1+=e;
174 &lea($tmp1,&DWP(0x5a827999,$tmp1,$e)); # tmp1+=K_00_19+x
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_mid_hor.s 44 tmp1 RN 8 label
93 SMUAD tmp1, x_2_0, mult_20_01
98 SMLAD tmp1, x_3_1, mult_20_m5, tmp1
104 SMLABB tmp1, x_6_4, mult_20_m5, tmp1
109 SMLABB tmp1, x_7_5, mult_20_01, tmp1
116 STR tmp1, [mb], #4
124 SMUAD tmp1, x_6_4, mult_20_01
    [all...]
h264bsd_interpolate_chroma_ver.s 53 tmp1 RN 7 label
96 ADD tmp1, x0, chrPW ;// tmp1 = x0+ chromaPartWidth
97 CMP tmp1, width ;// x0+chromaPartWidth > width
104 ADD tmp1, y0, chrPH ;// tmp1 = y0 + chromaPartHeight
105 ADD tmp1, tmp1, #1 ;// tmp1 = y0 + chromaPartHeight + 1
106 CMP tmp1, heigh
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 46 tmp1 .req r5 label
86 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
89 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
ARM-E_interpolate_noloop_gnu.s 50 tmp1 .req r8 label
78 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
81 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 46 tmp1 .req r5 label
86 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
89 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
95 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
ARM-E_interpolate_noloop_gnu.s 50 tmp1 .req r8 label
78 LDRSB tmp1, [pPhaseAccum, #1] @ tmp1 = x1
81 LDRSH tmp1, [pPhaseAccum, #2] @ tmp1 = x1
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
87 SMULBB tmp1, phaseFrac, tmp1 @ tmp1 = phaseFrac * tmp2
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_6.cpp 118 Int32 tmp1; local
129 tmp1 = vec[4] + vec[1];
136 vec[4] = (vec[0] >> 1) - tmp1;
137 vec[0] += tmp1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 124 u32 x, y, tmp1, tmp2, tmp3, tmp4, c, val; local
168 tmp1 = ptrA[width];
172 c = ((val * tmp1 + xFrac * tmp3) << 3) + 32;
178 tmp1 = ptrA[width];
180 c = ((val * tmp3 + xFrac * tmp1) << 3) + 32;
220 u32 x, y, tmp1, tmp2, tmp3, c, val; local
266 tmp1 = *ptrA++;
270 c = ((val * tmp1 + yFrac * tmp2) << 3) + 32;
275 tmp1 = *ptrA++;
279 c = ((val * tmp1 + yFrac * tmp2) << 3) + 32
315 u32 x, y, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, valX, valY, plus32 = 32; local
503 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
622 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
756 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
880 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1019 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1222 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1409 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1613 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
c_g_aver.cpp 286 Word16 tmp[M], tmp1, tmp2, shift1, shift2, shift;
303 tmp1 = abs_s(sub(lspAver[i], lsp[i])); // Q15
304 shift1 = sub(norm_s(tmp1), 1); // Qn
305 tmp1 = shl(tmp1, shift1); // Q15+Qn
308 tmp[i] = div_s(tmp1, tmp2); // Q15+(Q15+Qn)-(Q15+Qm)
358 tmp1 = tmp_diff;
362 tmp1 = 0;
365 // min(0.25, tmp1)
366 if (sub(2048, tmp1) < 0
486 Word16 tmp1; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 361 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
365 STRD tmp1, tmp2, [pDst], dstStep
367 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
396 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
399 M_EXT_XINT $offset, tmp1, tmp2, tmp3, tmp4
400 M_UHADD8R tmp5, tmp1, tmp3, (1-$rndVal), mask
403 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
427 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp5, $offset ;// Pre-load
432 M_UHADD8R tmp1, tmp1, tmp3, (1-$rndVal), mas
598 tmp1 RN 4 label
    [all...]

Completed in 858 milliseconds

12 3 4 5 6 7 8 91011>>