HomeSort by relevance Sort by last modified time
    Searched defs:tmp3 (Results 51 - 75 of 86) sorted by null

1 23 4

  /external/skia/samplecode/
SampleRegion.cpp 157 SkRegion tmp3; local
158 size2 = tmp3.unflatten(buffer);
161 SkASSERT(tmp3 == tmp);
  /external/srtp/crypto/cipher/
aes.c 1714 uint32_t tmp0, tmp1, tmp2, tmp3; local
1749 uint32_t tmp0, tmp1, tmp2, tmp3; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
synthesis_sub_band.cpp 357 Int32 tmp3; local
371 tmp3 = *pt_Sr_1;
377 *(pt_Sr_1++) = fxp_mul32_Q31(tmp3, cosx);
378 tmp3 = *pt_Si_1;
382 *(pt_Si_2--) = fxp_mul32_Q31(tmp3, cosx);
384 tmp3 = *pt_Sr_1;
399 tmp3 = *(pt_Sr_1++);
406 *(pt_data_1++) = (Int16) fxp_mul32_Q31(-(tmp3 + tmp4), SCALE_DOWN_HQ);
408 *(pt_data_2--) = (Int16) fxp_mul32_Q31((tmp3 - tmp4), SCALE_DOWN_HQ);
411 tmp3 = *(pt_Sr_1++)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad.cpp 321 Int tmp, tmp2, tmp3, mask = 0xFF; local
330 tmp3 = kk[1];
332 tmp2 = (UInt)tmp3 >> 24;
335 tmp2 = (tmp3 >> 16) & mask;
338 tmp2 = (tmp3 >> 8) & mask;
341 tmp2 = tmp3 & mask;
343 tmp3 = *kk;
346 tmp2 = (UInt)tmp3 >> 24;
349 tmp2 = (tmp3 >> 16) & mask;
352 tmp2 = (tmp3 >> 8) & mask
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_16.cpp 157 int32 tmp3; local
207 tmp3 = vec[ 3] + vec[12];
211 tmp1 = (tmp3 + tmp4);
212 tmp4 = fxp_mul32_Q32((tmp3 - tmp4) << 2, Qfmt_31(0.64072886193538F));
219 tmp3 = fxp_mul32_Q32((itmp_e1 - itmp_e2) << 1, Qfmt_31(0.65328148243819F));
224 tmp0 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
225 vec[ 4] = tmp1 + tmp3 + tmp0;
233 tmp3 = fxp_mul32_Q32((tmp6 - tmp5) << 2, Qfmt_31(0.65328148243819F));
238 tmp7 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
240 tmp1 += tmp3 + tmp7
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
h264bsd_interpolate_chroma_hor.s 59 tmp3 RN 9 label
141 MLA tmp3, y0, width, x0 ;// tmp3 = y0*width+x0
143 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
180 LDRB tmp3, [ptrA, width]
183 PKHBT tmp5, tmp1, tmp3, LSL #16
192 PKHBT tmp7, tmp3, tmp1, LSL #16
234 MLA tmp3, tmp1, width, tmp2
235 ADD ptrA, ref, tmp3
251 LDRB tmp3, [ptrA, width
    [all...]
h264bsd_interpolate_chroma_hor_ver.s 56 tmp3 RN 8 label
117 ADD tmp3, chrPW, #1 ;// tmp3 = chromaPartWidth+1
120 STMIA sp,{width,height,tmp1,tmp2,tmp3}
127 STMIA sp,{width,height,tmp1,tmp2,tmp3}
145 MLA tmp3, y0, width, x0 ;// tmp3 = y0*width+x0
148 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
181 LDRB tmp3, [ptrA, width]
184 PKHBT tmp1, tmp1, tmp3, LSL #16 ;// |t3|t1
    [all...]
h264bsd_interpolate_chroma_ver.s 57 tmp3 RN 9 label
139 MLA tmp3, y0, width, x0 ;// tmp3 = y0*width+x0
141 ADD ptrA, ref, tmp3 ;// ptrA = ref + y0*width+x0
177 LDRB tmp3, [ptrA,width, LSL #1] ;// 3 row, 1 col
185 PKHBT tmp2, tmp2, tmp3, LSL #16 ;// |C|B|
228 MLA tmp3, tmp1, width, tmp2
229 ADD ptrA, ref, tmp3
244 LDRB tmp3, [ptrA,width, LSL #1] ;// 3 row, 1 col
252 PKHBT tmp2, tmp2, tmp3, LSL #16 ;// |C|B
    [all...]
h264bsd_interpolate_hor_ver_quarter.s 55 tmp3 RN 6 label
317 LDR tmp3, [ref], width ;// |g4|g3|g2|g1|
323 UXTB16 tmpa, tmp3 ;// |g3|g1|
338 UXTB16 tmpa, tmp3, ROR #8 ;// |g4|g2|
368 ;// tmp3 = |c4|c3|c2|c1|
377 UXTB16 tmpb, tmp3 ;// |c3|c1|
394 UXTB16 tmpb, tmp3, ROR #8 ;// |c4|c2|
416 ;// tmp3 = |a4|a3|a2|a1|
430 UXTAB16 tmpa, tmpa, tmp3 ;// 16+20(G+M)+A
446 UXTAB16 tmpa, tmpa, tmp3, ROR #8 ;// 16+20(G+M)+
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 315 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2); local
316 tmp3.append(tmp2);
317 tmp3.append(':');
318 tmp3.append(nonce);
319 tmp3.append(':');
320 tmp3.append(cnonce);
321 a1 = tmp3.toString();
  /external/speex/libspeex/
ltp.c 503 int tmp1, tmp3; local
510 tmp3=nsf;
511 if (tmp3>pp+pitch)
512 tmp3=pp+pitch;
513 for (j=tmp1;j<tmp3;j++)
736 int tmp1, tmp3; local
743 tmp3=nsf;
744 if (tmp3>pp+pitch)
745 tmp3=pp+pitch;
746 for (j=tmp1;j<tmp3;j++
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/hlr_auc_gw/
milenage.c 45 u8 tmp1[16], tmp2[16], tmp3[16]; local
63 tmp3[(i + 8) % 16] = tmp2[i] ^ opc[i];
66 tmp3[i] ^= tmp1[i];
69 /* f1 || f1* = E_K(tmp3) XOR OP_c */
70 if (aes_128_encrypt_block(k, tmp3, tmp1))
97 u8 tmp1[16], tmp2[16], tmp3[16]; local
117 if (aes_128_encrypt_block(k, tmp1, tmp3))
120 tmp3[i] ^= opc[i];
122 os_memcpy(res, tmp3 + 8, 8); /* f2 */
124 os_memcpy(ak, tmp3, 6); /* f5 *
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 347 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
348 M_LOAD_X pSrc, srcStep, tmp3, tmp4, tmp5, $offset
352 STRD tmp3, tmp4, [pDst], dstStep
353 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
354 M_LOAD_X pSrc, srcStep, tmp3, tmp4, tmp5, $offset
382 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
385 M_EXT_XINT $offset, tmp1, tmp2, tmp3, tmp4
386 M_UHADD8R tmp5, tmp1, tmp3, (1-$rndVal), mask
389 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
417 M_LOAD_X pSrc, srcStep, tmp3, tmp4, tmp5, $offse
586 tmp3 RN 6 label
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_intra_prediction.c 930 i32 tmp1, tmp2, tmp3, tmp4; local
    [all...]
h264bsd_reconstruct.c 122 u32 x, y, tmp1, tmp2, tmp3, tmp4, c, val; local
168 tmp3 = ptrA[width];
170 c = ((val * tmp1 + xFrac * tmp3) << 3) + 32;
178 c = ((val * tmp3 + xFrac * tmp1) << 3) + 32;
218 u32 x, y, tmp1, tmp2, tmp3, c, val; local
262 tmp3 = ptrA[width*2];
265 c = ((val * tmp2 + yFrac * tmp3) << 3) + 32;
271 tmp3 = ptrA[width*2];
274 c = ((val * tmp2 + yFrac * tmp3) << 3) + 32;
313 u32 x, y, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, valX, valY, plus32 = 32 local
501 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
620 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
754 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
878 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1017 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1220 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1407 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
1611 i32 tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
    [all...]
h264bsd_deblocking.c 368 i32 tmp1, tmp2, tmp3, tmp4; local
372 tmp3 = mb1->mv[ind1].ver;
375 if ( (ABS(tmp1 - tmp2) >= 4) || (ABS(tmp3 - tmp4) >= 4) ||
427 u32 tmp1, tmp2, tmp3, tmp4; local
431 tmp3 = mb1->totalCoeff[1];
445 if (tmp3 || tmp4)
455 tmp3 = mb1->totalCoeff[5];
467 if (tmp3 || tmp4)
494 u32 tmp1, tmp2, tmp3, tmp4; local
498 tmp3 = mb1->totalCoeff[2]
1990 u32 tmp3, tmp4; local
2054 u32 tmp3, tmp4; local
2104 u32 tmp3, tmp4; local
    [all...]
  /external/opencv/cvaux/src/
cvlevmarprojbandle.cpp 170 double tmp3 = 1/(piX[2]*piX[2]); local
172 double tmp1 = -piX[0]*tmp3;
173 double tmp2 = -piX[1]*tmp3;
317 double tmp3 = 1/(piX[2]*piX[2]); local
325 (p[j*4+i]*piX[2]-p[8+i]*piX[j]) * tmp3 );
    [all...]
  /external/aac/libSBRenc/src/
env_est.cpp 796 FIXP_DBL tmp0,tmp1,tmp2,tmp3; local
806 tmp3 = FL2FXCONST_DBL(0.6875f-0.21875f-0.015625f)>>1; /* scaled by 1/64 */
808 nrgLeft = ((tmp0-tmp2)>>1) + (tmp3 - tmp1);
    [all...]
  /external/qemu/elff/
dwarf_defs.h 847 Dwarf_Form tmp3; local
854 abbr_at = abbr_at->process(&tmp4, &tmp3);
859 (abbr_at->process(&tmp4, &tmp3));
    [all...]
  /external/webp/src/dec/
dsp_sse2.c 98 const __m128i tmp3 = _mm_sub_epi16(a, d); local
106 const __m128i transpose0_1 = _mm_unpacklo_epi16(tmp2, tmp3);
108 const __m128i transpose0_3 = _mm_unpackhi_epi16(tmp2, tmp3);
156 const __m128i tmp3 = _mm_sub_epi16(a, d); local
160 const __m128i shifted3 = _mm_srai_epi16(tmp3, 3);
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_defs.h 847 Dwarf_Form tmp3; local
854 abbr_at = abbr_at->process(&tmp4, &tmp3);
859 (abbr_at->process(&tmp4, &tmp3));
  /external/webp/src/enc/
dsp_sse2.c 146 const __m128i tmp3 = _mm_sub_epi16(a, d); local
154 const __m128i transpose0_1 = _mm_unpacklo_epi16(tmp2, tmp3);
156 const __m128i transpose0_3 = _mm_unpackhi_epi16(tmp2, tmp3);
204 const __m128i tmp3 = _mm_sub_epi16(a, d); local
208 const __m128i shifted3 = _mm_srai_epi16(tmp3, 3);
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 2601 llvm::Value *tmp3 = Builder.CreateAnd(RHSTmp, tmp2); local
    [all...]
  /external/libxml2/
xmlregexp.c 7300 xmlExpNodePtr ret, tmp, tmp2, tmp3; local
    [all...]
  /external/qemu/target-arm/
translate.c 1383 TCGv tmp, tmp2, tmp3; local
4428 TCGv tmp, tmp2, tmp3, tmp4, tmp5; local
6421 TCGv tmp3; local
7785 TCGv tmp3; local
    [all...]

Completed in 3692 milliseconds

1 23 4