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

1 23 4 5 6

  /external/libjpeg-turbo/
jidctfst.c 175 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
230 tmp3 = DEQUANTIZE(inptr[DCTSIZE * 6], quantptr[DCTSIZE * 6]);
235 tmp13 = tmp1 + tmp3; /* phases 5-3 */
236 tmp12 = MULTIPLY(tmp1 - tmp3, FIX_1_414213562) - tmp13; /* 2*c4 */
239 tmp3 = tmp10 - tmp13;
272 wsptr[DCTSIZE * 4] = (int)(tmp3 + tmp4);
273 wsptr[DCTSIZE * 3] = (int)(tmp3 - tmp4);
326 tmp3 = tmp10 - tmp13;
363 range_limit[IDESCALE(tmp3 + tmp4, PASS1_BITS + 3) & RANGE_MASK];
365 range_limit[IDESCALE(tmp3 - tmp4, PASS1_BITS + 3) & RANGE_MASK]
    [all...]
jidctint.c 177 JLONG tmp0, tmp1, tmp2, tmp3; local
237 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865);
245 tmp10 = tmp0 + tmp3;
246 tmp13 = tmp0 - tmp3;
257 tmp3 = DEQUANTIZE(inptr[DCTSIZE * 1], quantptr[DCTSIZE * 1]);
259 z1 = tmp0 + tmp3;
262 z4 = tmp1 + tmp3;
268 tmp3 = MULTIPLY(tmp3, FIX_1_501321110); /* sqrt(2) * ( c1+c3-c5-c7) */
280 tmp3 += z1 + z4
906 JLONG tmp0, tmp1, tmp2, tmp3, tmp10, tmp11, tmp12, tmp13, tmp14; local
2378 JLONG tmp0, tmp1, tmp2, tmp3, tmp10, tmp11, tmp12, tmp13; local
    [all...]
  /external/libunwind/src/dwarf/
Gexpr.c 193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; local
459 tmp3 = pop ();
461 push (tmp3);
  /external/libvpx/libvpx/vpx_dsp/mips/
idct8x8_msa.c 45 v4i32 tmp0, tmp1, tmp2, tmp3; local
58 DOTP_SH4_SW(s0, s0, s1, s1, k0, k1, k2, k3, tmp0, tmp1, tmp2, tmp3);
59 SRARI_W4_SW(tmp0, tmp1, tmp2, tmp3, DCT_CONST_BITS);
61 PCKEV_H2_SH(zero, tmp2, zero, tmp3, s2, s3);
70 DOTP_SH4_SW(s0, s0, s1, s1, k0, k1, k2, k3, tmp0, tmp1, tmp2, tmp3);
71 SRARI_W4_SW(tmp0, tmp1, tmp2, tmp3, DCT_CONST_BITS);
73 PCKEV_H2_SH(zero, tmp2, zero, tmp3, s2, s3);
intrapred16_dspr2.c 16 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
23 "lb %[tmp3], 2(%[left]) \n\t"
40 "replv.qb %[tmp3], %[tmp3] \n\t"
67 "sw %[tmp3], (%[dst]) \n\t"
68 "sw %[tmp3], 4(%[dst]) \n\t"
69 "sw %[tmp3], 8(%[dst]) \n\t"
70 "sw %[tmp3], 12(%[dst]) \n\t"
150 : [tmp1] "=&r"(tmp1), [tmp2] "=&r"(tmp2), [tmp3] "=&r"(tmp3),
    [all...]
intrapred8_dspr2.c 16 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
22 "lb %[tmp3], 2(%[left]) \n\t"
31 "replv.qb %[tmp3], %[tmp3] \n\t"
44 "sw %[tmp3], (%[dst]) \n\t"
45 "sw %[tmp3], 4(%[dst]) \n\t"
62 : [tmp1] "=&r"(tmp1), [tmp2] "=&r"(tmp2), [tmp3] "=&r"(tmp3),
    [all...]
loopfilter_4_msa.c 112 v8i16 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5; local
138 ILVRL_H2_SH(tmp1, tmp0, tmp2, tmp3);
144 ST4x8_UB(tmp2, tmp3, src, pitch);
  /external/u-boot/lib/
aes.c 514 u8 tmp0, tmp1, tmp2, tmp3, tmp4; local
523 tmp3 = expkey[4*idx - 1];
525 tmp4 = tmp3;
526 tmp3 = sbox[tmp0];
534 tmp3 = sbox[tmp3];
540 expkey[4*idx+3] = expkey[4*idx - 4*AES_KEYCOLS + 3] ^ tmp3;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks.c 223 int32_t tmp1, tmp2, tmp3; local
226 tmp3 = (tmp1 + tmp2) >> 1; /* Low pass signal. */
227 LP16[k] = (int16_t)WebRtcSpl_SatW32ToW16(tmp3); /*low pass */
228 tmp3 = (tmp1 - tmp2) >> 1; /* High pass signal. */
229 HP16[k] = (int16_t)WebRtcSpl_SatW32ToW16(tmp3); /*high pass */
282 int32_t tmp1, tmp2, tmp3; local
285 tmp3 = (tmp1 + tmp2) >> 1; /* Low pass signal. */
286 LP16[k] = (int16_t)WebRtcSpl_SatW32ToW16(tmp3); /*low pass */
287 tmp3 = (tmp1 - tmp2) >> 1; /* High pass signal. */
288 HP16[k] = (int16_t)WebRtcSpl_SatW32ToW16(tmp3); /*high pass *
    [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 158 int32 tmp3; local
208 tmp3 = vec[ 3] + vec[12];
212 tmp1 = (tmp3 + tmp4);
213 tmp4 = fxp_mul32_Q32((tmp3 - tmp4) << 2, Qfmt_31(0.64072886193538F));
220 tmp3 = fxp_mul32_Q32((itmp_e1 - itmp_e2) << 1, Qfmt_31(0.65328148243819F));
225 tmp0 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
226 vec[ 4] = tmp1 + tmp3 + tmp0;
234 tmp3 = fxp_mul32_Q32((tmp6 - tmp5) << 2, Qfmt_31(0.65328148243819F));
239 tmp7 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
241 tmp1 += tmp3 + tmp7
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 320 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2); local
321 tmp3.append(tmp2);
322 tmp3.append(':');
323 tmp3.append(nonce);
324 tmp3.append(':');
325 tmp3.append(cnonce);
326 a1 = tmp3.toString();
  /external/epid-sdk/epid/member/tiny/math/src/
fq12.c 95 Fq12Elem tmp3; local
97 Fq12Elem* const temp3 = &tmp3;
185 Fq2Elem tmp3; local
189 Fq2Elem* temp3 = &tmp3;
  /external/libaom/libaom/aom_dsp/mips/
loopfilter_4_msa.c 112 v8i16 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5; local
138 ILVRL_H2_SH(tmp1, tmp0, tmp2, tmp3);
144 ST4x8_UB(tmp2, tmp3, src, pitch);
  /external/libjpeg-turbo/simd/loongson/
jfdctint-mmi.c 276 tmp3 = _mm_add_pi16(col3, col4); /* tmp3=col3+col4 */ \
283 tmp10 = _mm_add_pi16(tmp0, tmp3); /* tmp10=tmp0+tmp3 */ \
284 tmp13 = _mm_sub_pi16(tmp0, tmp3); /* tmp13=tmp0-tmp3 */ \
347 tmp3 = _mm_add_pi16(row3, row4); /* tmp3=row3+row4 */ \
354 tmp10 = _mm_add_pi16(tmp0, tmp3); /* tmp10=tmp0+tmp3 */ \
381 __m64 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
    [all...]
jidctint-mmi.c 117 z4 = _mm_add_pi16(tmp1, tmp3); \
137 * z1 = tmp0 + tmp3; z2 = tmp1 + tmp2; \
139 * tmp2 = tmp2 * 3.072711026; tmp3 = tmp3 * 1.501321110; \
142 * tmp2 += z2 + z3; tmp3 += z1 + z4; \
145 * tmp0 = tmp0 * (0.298631336 - 0.899976223) + tmp3 * -0.899976223; \
148 * tmp3 = tmp0 * -0.899976223 + tmp3 * (1.501321110 - 0.899976223); \
150 * tmp2 += z3; tmp3 += z4; \
153 tmp0_3l = _mm_unpacklo_pi16(tmp0, tmp3); \
543 __m64 tmp0, tmp1, tmp2, tmp3; local
    [all...]
  /external/libjpeg-turbo/simd/powerpc/
jfdctfst-altivec.c 48 tmp10 = vec_add(tmp0, tmp3); \
49 tmp13 = vec_sub(tmp0, tmp3); \
94 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp10, tmp11, tmp12, tmp13, local
126 tmp3 = vec_add(col3, col4);
141 tmp3 = vec_add(row3, row4);
jidctfst-altivec.c 60 tmp3 = vec_sub(tmp10, tmp13); \
104 out3 = vec_sub(tmp3, tmp4); \
105 out4 = vec_add(tmp3, tmp4); \
121 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp10, tmp11, tmp12, tmp13, local
151 tmp3 = vec_or(col5, col6);
152 tmp3 = vec_or(tmp3, col7);
153 tmp1 = vec_or(tmp1, tmp3);
  /external/skia/samplecode/
SampleRegion.cpp 237 SkRegion tmp3; local
238 SkDEBUGCODE(size2 = ) tmp3.readFromMemory(buffer, 1000);
241 SkASSERT(tmp3 == tmp);
  /external/skqp/samplecode/
SampleRegion.cpp 237 SkRegion tmp3; local
238 SkDEBUGCODE(size2 = ) tmp3.readFromMemory(buffer, 1000);
241 SkASSERT(tmp3 == tmp);
  /external/webp/src/dsp/
common_sse2.h 146 __m128i tmp0, tmp1, tmp2, tmp3, tmp4, tmp5; local
filters_sse2.c 285 const __m128i tmp3 = _mm_add_epi16(A, E); // delta = A + B - C local
286 const __m128i tmp4 = _mm_packus_epi16(tmp3, zero); // saturate delta
  /art/compiler/optimizing/
code_generator_vector_arm64.cc 1191 VRegister tmp3 = VRegisterFrom(locations->GetTemp(2)); local
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 468 ResScalar tmp1 = ResScalar(0), tmp2 = ResScalar(0), tmp3 = ResScalar(0); local
486 tmp2 += cj.pmul(lhs2(j),b); tmp3 += cj.pmul(lhs3(j),b);
551 tmp3 += predux(ptmp3);
561 tmp2 += cj.pmul(lhs2(j),b); tmp3 += cj.pmul(lhs3(j),b);
566 res[(i+offset3)*resIncr] += alpha*tmp3;
  /external/eigen/unsupported/test/
levenberg_marquardt.cpp 34 double tmp1, tmp2, tmp3; local
42 tmp3 = (i>=8)? tmp2 : tmp1;
43 fvec[i] = y[i] - (x[0] + tmp1/(x[1]*tmp2 + x[2]*tmp3));
50 double tmp1, tmp2, tmp3, tmp4; local
55 tmp3 = (i>=8)? tmp2 : tmp1;
56 tmp4 = (x[1]*tmp2 + x[2]*tmp3); tmp4 = tmp4*tmp4;
59 fjac(i,2) = tmp1*tmp3/tmp4;
147 double tmp1,tmp2,tmp3; local
157 tmp3 = tmp1;
159 if (i >= 8) tmp3 = tmp2
    [all...]

Completed in 2937 milliseconds

1 23 4 5 6