Searched refs:tmp0 (Results 76 - 100 of 148) sorted by relevance

123456

/external/chromium_org/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc389 Register tmp0 = EnsureTempRegister(); local
390 Register tmp1 = GetFreeRegisterNot(tmp0);
395 __ mov(tmp0, dst);
396 __ xor_(tmp0, src);
397 __ xor_(src, tmp0);
398 __ xor_(tmp0, src);
399 __ mov(dst, tmp0);
401 __ mov(tmp0, dst);
404 __ mov(src, tmp0);
/external/chromium_org/third_party/libwebp/dsp/
H A Denc_neon.c88 const int16x8x2_t tmp0 = vzipq_s16(in0, in1); // a0 c0 a1 c1 a2 c2 ... local
90 *out = vzipq_s16(tmp0.val[0], tmp0.val[1]);
311 const int16x4_t tmp0 = vadd_s16(vget_low_s16(a0a1_2), local
321 Transpose4x4_S16(tmp0, tmp1, tmp2, tmp3, &d0d1, &d3d2);
484 int32x4x4_t tmp0; local
513 tmp0.val[0] = vaddq_s32(a0, a1);
514 tmp0.val[1] = vaddq_s32(a3, a2);
515 tmp0.val[2] = vsubq_s32(a3, a2);
516 tmp0
581 const int32x4_t tmp0 = vpaddlq_s16(vreinterpretq_s16_u16(a0a1)); // a0 + a1 local
[all...]
H A Dupsampling_sse2.c42 const __m128i tmp0 = _mm_avg_epu8(k, (in)); /* (k + in + 1) / 2 */ \
47 (out) = _mm_sub_epi8(tmp0, tmp4); /* (k + in + 1) / 2 - lsb_correction */ \
/external/webp/src/dsp/
H A Denc_neon.c88 const int16x8x2_t tmp0 = vzipq_s16(in0, in1); // a0 c0 a1 c1 a2 c2 ... local
90 *out = vzipq_s16(tmp0.val[0], tmp0.val[1]);
311 const int16x4_t tmp0 = vadd_s16(vget_low_s16(a0a1_2), local
321 Transpose4x4_S16(tmp0, tmp1, tmp2, tmp3, &d0d1, &d3d2);
484 int32x4x4_t tmp0; local
513 tmp0.val[0] = vaddq_s32(a0, a1);
514 tmp0.val[1] = vaddq_s32(a3, a2);
515 tmp0.val[2] = vsubq_s32(a3, a2);
516 tmp0
581 const int32x4_t tmp0 = vpaddlq_s16(vreinterpretq_s16_u16(a0a1)); // a0 + a1 local
[all...]
H A Dupsampling_sse2.c42 const __m128i tmp0 = _mm_avg_epu8(k, (in)); /* (k + in + 1) / 2 */ \
47 (out) = _mm_sub_epi8(tmp0, tmp4); /* (k + in + 1) / 2 - lsb_correction */ \
/external/llvm/test/MC/Mips/
H A Delf-tls.s47 $tmp0:
48 .size f1, ($tmp0)-f1
/external/aac/libAACenc/src/
H A Dtransform.cpp186 FIXP_DBL tmp0; local
187 tmp0 = fMultDiv2((FIXP_PCM)timeData[i+nl], pLeftWindowPart[i].v.im);
188 mdctData[(tl/2)+i+nl] = fMultSubDiv2(tmp0, (FIXP_PCM)timeData[tl-nl-i-1], pLeftWindowPart[i].v.re);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_action.c159 LLVMValueRef tmp0, tmp1; local
160 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MUL,
167 TGSI_OPCODE_ADD, tmp0, tmp1);
218 LLVMValueRef tmp0, tmp1; local
219 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MUL,
225 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_ADD, tmp1, tmp0);
230 TGSI_OPCODE_ADD, tmp0, tmp1);
254 LLVMValueRef tmp0, tmp1; local
255 tmp0
454 LLVMValueRef tmp0, tmp1, tmp2; local
745 LLVMValueRef tmp0, tmp1; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_action.c159 LLVMValueRef tmp0, tmp1; local
160 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MUL,
167 TGSI_OPCODE_ADD, tmp0, tmp1);
218 LLVMValueRef tmp0, tmp1; local
219 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_MUL,
225 tmp0 = lp_build_emit_llvm_binary(bld_base, TGSI_OPCODE_ADD, tmp1, tmp0);
230 TGSI_OPCODE_ADD, tmp0, tmp1);
254 LLVMValueRef tmp0, tmp1; local
255 tmp0
454 LLVMValueRef tmp0, tmp1, tmp2; local
745 LLVMValueRef tmp0, tmp1; local
[all...]
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixVector.h414 EIGEN_ALIGN16 ResScalar tmp0 = ResScalar(0); local
432 tmp0 += cj.pmul(lhs0[j],b); tmp1 += cj.pmul(lhs1[j],b);
495 tmp0 += predux(ptmp0);
507 tmp0 += cj.pmul(lhs0[j],b); tmp1 += cj.pmul(lhs1[j],b);
510 res[i*resIncr] += alpha*tmp0;
523 EIGEN_ALIGN16 ResScalar tmp0 = ResScalar(0); local
524 ResPacket ptmp0 = pset1<ResPacket>(tmp0);
529 tmp0 += cj.pmul(lhs0[j], rhs[j]);
540 tmp0 += predux(ptmp0);
546 tmp0
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c380 struct ureg_dst tmp0 = ureg_DECL_temporary(ureg); local
389 ureg_SLT(ureg, tmp0,
393 ureg_MIN(ureg, tmp0, ureg_src(tmp0), ureg_src(tmp1));
394 ureg_MIN(ureg, tmp0, ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_X),
395 ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_Y));
406 ureg_MUL(ureg, dst, ureg_src(tmp1), ureg_src(tmp0));
407 ureg_release_temporary(ureg, tmp0);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c403 struct ureg_dst tmp0 = ureg_DECL_temporary(ureg); local
411 ureg_SLT(ureg, tmp0, ureg_swizzle(coords,
417 ureg_MIN(ureg, tmp0, ureg_src(tmp0), ureg_src(tmp1));
418 ureg_MIN(ureg, tmp0, ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_X),
419 ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_Y));
431 ureg_MUL(ureg, dst, ureg_src(tmp1), ureg_src(tmp0));
432 ureg_release_temporary(ureg, tmp0);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip.h96 struct brw_reg tmp0, tmp1; member in struct:brw_clip_compile::__anon14330
H A Dbrw_clip_unfilled.c53 struct brw_reg e = c->reg.tmp0;
220 struct brw_reg tmp0 = get_element_ud(c->reg.tmp0, 0); local
222 brw_AND(p, tmp0, get_element_ud(c->reg.R0, 2), brw_imm_ud(PRIM_MASK));
226 tmp0,
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c380 struct ureg_dst tmp0 = ureg_DECL_temporary(ureg); local
389 ureg_SLT(ureg, tmp0,
393 ureg_MIN(ureg, tmp0, ureg_src(tmp0), ureg_src(tmp1));
394 ureg_MIN(ureg, tmp0, ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_X),
395 ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_Y));
406 ureg_MUL(ureg, dst, ureg_src(tmp1), ureg_src(tmp0));
407 ureg_release_temporary(ureg, tmp0);
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c403 struct ureg_dst tmp0 = ureg_DECL_temporary(ureg); local
411 ureg_SLT(ureg, tmp0, ureg_swizzle(coords,
417 ureg_MIN(ureg, tmp0, ureg_src(tmp0), ureg_src(tmp1));
418 ureg_MIN(ureg, tmp0, ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_X),
419 ureg_scalar(ureg_src(tmp0), TGSI_SWIZZLE_Y));
431 ureg_MUL(ureg, dst, ureg_src(tmp1), ureg_src(tmp0));
432 ureg_release_temporary(ureg, tmp0);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip.h96 struct brw_reg tmp0, tmp1; member in struct:brw_clip_compile::__anon27741
H A Dbrw_clip_unfilled.c53 struct brw_reg e = c->reg.tmp0;
220 struct brw_reg tmp0 = get_element_ud(c->reg.tmp0, 0); local
222 brw_AND(p, tmp0, get_element_ud(c->reg.R0, 2), brw_imm_ud(PRIM_MASK));
226 tmp0,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.c2551 int tmp0 = ctx->temp_reg; local
2559 * 1. tmp0.x = rcp (src2) = 2^32/src2 + e, where e is rounding error
2560 * 2. tmp0.z = lo (tmp0.x * src2)
2561 * 3. tmp0.w = -tmp0.z
2562 * 4. tmp0.y = hi (tmp0.x * src2)
2563 * 5. tmp0.z = (tmp0
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c2551 int tmp0 = ctx->temp_reg; local
2559 * 1. tmp0.x = rcp (src2) = 2^32/src2 + e, where e is rounding error
2560 * 2. tmp0.z = lo (tmp0.x * src2)
2561 * 3. tmp0.w = -tmp0.z
2562 * 4. tmp0.y = hi (tmp0.x * src2)
2563 * 5. tmp0.z = (tmp0
[all...]
/external/chromium_org/third_party/libjpeg_turbo/simd/
H A Djimmxint.asm299 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
300 ; tmp0 = tmp0 * 0.298631336; tmp1 = tmp1 * 2.053119869;
303 ; tmp0 += z1 + z3; tmp1 += z2 + z4;
307 ; tmp0 = tmp0 * (0.298631336 - 0.899976223) + tmp3 * -0.899976223;
310 ; tmp3 = tmp0 * -0.899976223 + tmp3 * (1.501321110 - 0.899976223);
311 ; tmp0 += z3; tmp1 += z4;
625 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
626 ; tmp0
[all...]
H A Djiss2int-64.asm286 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
287 ; tmp0 = tmp0 * 0.298631336; tmp1 = tmp1 * 2.053119869;
290 ; tmp0 += z1 + z3; tmp1 += z2 + z4;
294 ; tmp0 = tmp0 * (0.298631336 - 0.899976223) + tmp3 * -0.899976223;
297 ; tmp3 = tmp0 * -0.899976223 + tmp3 * (1.501321110 - 0.899976223);
298 ; tmp0 += z3; tmp1 += z4;
622 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
623 ; tmp0
[all...]
H A Djiss2int.asm293 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
294 ; tmp0 = tmp0 * 0.298631336; tmp1 = tmp1 * 2.053119869;
297 ; tmp0 += z1 + z3; tmp1 += z2 + z4;
301 ; tmp0 = tmp0 * (0.298631336 - 0.899976223) + tmp3 * -0.899976223;
304 ; tmp3 = tmp0 * -0.899976223 + tmp3 * (1.501321110 - 0.899976223);
305 ; tmp0 += z3; tmp1 += z4;
629 ; z1 = tmp0 + tmp3; z2 = tmp1 + tmp2;
630 ; tmp0
[all...]
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp2247 CvSeqReader tmp0, tmp1; local
2252 left0 = tmp0 = left;
2260 p1 = tmp0.ptr;
2261 cvSetSeqReaderPos( &tmp0, d, 1 );
2262 p2 = tmp0.ptr;
2263 cvSetSeqReaderPos( &tmp0, d, 1 );
2264 p3 = tmp0.ptr;
2266 cvSetSeqReaderPos( &tmp0, (n/2) - d*3, 1 );
2267 p1 = tmp0.ptr;
2268 cvSetSeqReaderPos( &tmp0,
[all...]
/external/jpeg/
H A Dmips_idct_le.S88 muleq_s.w.phl $v0, $t0, $s0 # tmp0 ...
95 muleq_s.w.phr $t0, $t0, $s0 # ... tmp0 ...
104 ins $t0, $v0, 16, 16 # ... tmp0
160 addq.ph $t0, $s4, $s7 # tmp0
408 addq.ph $t0, $s4, $s7 # tmp0
436 addq.ph $s0, $t0, $t7 # tmp0 + tmp7
437 subq.ph $s7, $t0, $t7 # tmp0 - tmp7

Completed in 459 milliseconds

123456