Searched refs:tmp0 (Results 1 - 25 of 94) sorted by relevance

1234

/external/v8/test/mjsunit/
H A Ddelete-vars-from-eval.js31 eval("var tmp0 = 0");
32 assertEquals(0, tmp0);
33 assertTrue(delete tmp0);
34 assertTrue(typeof(tmp0) == 'undefined');
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp116 FIXP_DBL tmp0 = mySpec[0]; local
120 tmp0 = fMultDiv2(tmp0, factor);
124 tmp0 <<= shift;
128 *mySpec++ = tmp0;
135 FIXP_DBL tmp0 = mySpec[0]; local
136 tmp0 = fMultDiv2(tmp0, factor);
137 tmp0 <<= shift;
138 *mySpec++ = tmp0;
146 FIXP_DBL tmp0 = mySpec[0]; local
165 FIXP_DBL tmp0 = mySpec[0]; local
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_by_2_internal.c34 WebRtc_Word32 tmp0, tmp1, diff; local
42 tmp0 = in[i << 1];
43 diff = tmp0 - state[1];
47 state[0] = tmp0;
53 tmp0 = state[1] + diff * kResampleAllpass[1][1];
55 diff = tmp0 - state[3];
61 state[2] = tmp0;
72 tmp0 = in[i << 1];
73 diff = tmp0 - state[5];
77 state[4] = tmp0;
129 WebRtc_Word32 tmp0, tmp1, diff; local
203 WebRtc_Word32 tmp0, tmp1, diff; local
273 WebRtc_Word32 tmp0, tmp1, diff; local
343 WebRtc_Word32 tmp0, tmp1, diff; local
422 WebRtc_Word32 tmp0, tmp1, diff; local
555 WebRtc_Word32 tmp0, tmp1, diff; local
[all...]
/external/aac/libAACdec/src/arm/
H A Dblock_arm.cpp120 FIXP_DBL tmp0, tmp1, tmp2, tmp3; local
121 tmp0 = pSpectrum[0];
125 tmp0 >>= scale;
129 *pSpectrum++ = tmp0;
/external/jpeg/
H A Djidctred.c122 INT32 tmp0, tmp2, tmp10, tmp12; local
158 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
159 tmp0 <<= (CONST_BITS+1);
166 tmp10 = tmp0 + tmp2;
167 tmp12 = tmp0 - tmp2;
176 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
190 wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
191 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
220 tmp0 = ((INT32) wsptr[0]) << (CONST_BITS+1);
225 tmp10 = tmp0
275 INT32 tmp0, tmp10, z1; local
[all...]
H A Djidctint.c152 INT32 tmp0, tmp1, tmp2, tmp3; local
216 tmp0 = (z2 + z3) << CONST_BITS;
219 tmp10 = tmp0 + tmp3;
220 tmp13 = tmp0 - tmp3;
228 tmp0 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
233 z1 = tmp0 + tmp3;
235 z3 = tmp0 + tmp2;
239 tmp0 = MULTIPLY(tmp0, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
251 tmp0
[all...]
H A Djfdctflt.c61 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
71 tmp0 = dataptr[0] + dataptr[7];
82 tmp10 = tmp0 + tmp3; /* phase 2 */
83 tmp13 = tmp0 - tmp3;
121 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
132 tmp10 = tmp0 + tmp3; /* phase 2 */
133 tmp13 = tmp0 - tmp3;
H A Djfdctfst.c116 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
127 tmp0 = dataptr[0] + dataptr[7];
138 tmp10 = tmp0 + tmp3; /* phase 2 */
139 tmp13 = tmp0 - tmp3;
177 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
188 tmp10 = tmp0 + tmp3; /* phase 2 */
189 tmp13 = tmp0 - tmp3;
H A Djidctflt.c72 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
123 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
128 tmp10 = tmp0 + tmp2; /* phase 3 */
129 tmp11 = tmp0 - tmp2;
134 tmp0 = tmp10 + tmp13; /* phase 2 */
162 wsptr[DCTSIZE*0] = tmp0 + tmp7;
163 wsptr[DCTSIZE*7] = tmp0 - tmp7;
196 tmp0 = tmp10 + tmp13;
221 outptr[0] = range_limit[(int) DESCALE((INT32) (tmp0 + tmp7), 3)
223 outptr[7] = range_limit[(int) DESCALE((INT32) (tmp0
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jidctred.c123 INT32 tmp0, tmp2, tmp10, tmp12; local
159 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
160 tmp0 <<= (CONST_BITS+1);
167 tmp10 = tmp0 + tmp2;
168 tmp12 = tmp0 - tmp2;
177 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
191 wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
192 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
221 tmp0 = ((INT32) wsptr[0]) << (CONST_BITS+1);
226 tmp10 = tmp0
276 INT32 tmp0, tmp10, z1; local
[all...]
H A Dfpdfapi_jidctint.c153 INT32 tmp0, tmp1, tmp2, tmp3; local
217 tmp0 = (z2 + z3) << CONST_BITS;
220 tmp10 = tmp0 + tmp3;
221 tmp13 = tmp0 - tmp3;
229 tmp0 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
234 z1 = tmp0 + tmp3;
236 z3 = tmp0 + tmp2;
240 tmp0 = MULTIPLY(tmp0, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
252 tmp0
[all...]
H A Dfpdfapi_jfdctfst.c117 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
128 tmp0 = dataptr[0] + dataptr[7];
139 tmp10 = tmp0 + tmp3; /* phase 2 */
140 tmp13 = tmp0 - tmp3;
178 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
189 tmp10 = tmp0 + tmp3; /* phase 2 */
190 tmp13 = tmp0 - tmp3;
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DIntersection.java93 Vector3f tmp0 = vars.vect1,
109 v1.subtract(center, tmp0);
114 tmp1.subtract(tmp0, e0); // tri edge 0
116 tmp0.subtract(tmp2, e2); // tri edge 2
129 p0 = e0.z * tmp0.y - e0.y * tmp0.z;
140 p0 = -e0.z * tmp0.x + e0.x * tmp0.z;
166 p0 = e1.z * tmp0.y - e1.y * tmp0
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_wtengine.c80 EAS_I32 tmp0; local
109 tmp0 = *pInputBuffer++;
115 tmp2 *= tmp0;
127 tmp0 = tmp2 * gainLeft;
129 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS;
130 tmp1 += tmp0;
137 tmp0 = tmp2 * gainRight;
139 tmp0 = tmp0 >> NUM_MIXER_GUARD_BIT
422 EAS_I32 tmp0; local
566 EAS_I32 tmp0; local
[all...]
H A DARM-E_interpolate_loop_gnu.s45 tmp0 .req r1 @reuse register label
81 SUBS tmp0, pPhaseAccum, pLoopEnd @ check for loop end
82 ADDGE pPhaseAccum, pLoopStart, tmp0 @ loop back to start
85 LDRSB tmp0, [pPhaseAccum] @ tmp0 = x0
88 LDRSH tmp0, [pPhaseAccum] @ tmp0 = x0
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
105 MOV tmp0, tmp0, LS
[all...]
H A DARM-E_voice_gain_gnu.s45 tmp0 .req r4 label
85 LDR tmp0, [pWTFrame, #m_prevGain]
92 SMULBB gainLeft, tmp0, gainLeft
100 SMULBB gainRight, tmp0, gainRight
107 LDRSH tmp0, [pInputBuffer], #2
114 SMLAWB tmp1, gainLeft, tmp0, tmp1
122 SMLAWB tmp2, gainRight, tmp0, tmp2
126 LDRGTSH tmp0, [pInputBuffer], #2
146 LDRSH tmp0, [pInputBuffer], #NEXT_OUTPUT_PCM @ fetch voice output
150 SMULWB tmp0, gai
[all...]
H A DARM-E_interpolate_noloop_gnu.s49 tmp0 .req r1 @ reuse register label
77 LDRSB tmp0, [pPhaseAccum] @ tmp0 = x0
80 LDRSH tmp0, [pPhaseAccum] @ tmp0 = x0
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
97 MOV tmp0, tmp0, LSL #6 @ boost 8-bit signal by 36dB
99 MOV tmp0, tmp0, AS
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wtengine.c80 EAS_I32 tmp0; local
109 tmp0 = *pInputBuffer++;
115 tmp2 *= tmp0;
127 tmp0 = tmp2 * gainLeft;
129 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS;
130 tmp1 += tmp0;
137 tmp0 = tmp2 * gainRight;
139 tmp0 = tmp0 >> NUM_MIXER_GUARD_BIT
422 EAS_I32 tmp0; local
566 EAS_I32 tmp0; local
[all...]
H A DARM-E_interpolate_loop_gnu.s45 tmp0 .req r1 @reuse register label
81 SUBS tmp0, pPhaseAccum, pLoopEnd @ check for loop end
82 ADDGE pPhaseAccum, pLoopStart, tmp0 @ loop back to start
85 LDRSB tmp0, [pPhaseAccum] @ tmp0 = x0
88 LDRSH tmp0, [pPhaseAccum] @ tmp0 = x0
94 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
105 MOV tmp0, tmp0, LS
[all...]
H A DARM-E_voice_gain_gnu.s45 tmp0 .req r4 label
85 LDR tmp0, [pWTFrame, #m_prevGain]
92 SMULBB gainLeft, tmp0, gainLeft
100 SMULBB gainRight, tmp0, gainRight
107 LDRSH tmp0, [pInputBuffer], #2
114 SMLAWB tmp1, gainLeft, tmp0, tmp1
122 SMLAWB tmp2, gainRight, tmp0, tmp2
126 LDRGTSH tmp0, [pInputBuffer], #2
146 LDRSH tmp0, [pInputBuffer], #NEXT_OUTPUT_PCM @ fetch voice output
150 SMULWB tmp0, gai
[all...]
H A DARM-E_interpolate_noloop_gnu.s49 tmp0 .req r1 @ reuse register label
77 LDRSB tmp0, [pPhaseAccum] @ tmp0 = x0
80 LDRSH tmp0, [pPhaseAccum] @ tmp0 = x0
86 SUB tmp1, tmp1, tmp0 @ tmp1 = x1 - x0
97 MOV tmp0, tmp0, LSL #6 @ boost 8-bit signal by 36dB
99 MOV tmp0, tmp0, AS
[all...]
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DMachO_i386_DynNoPIC_relocations.s8 calll tmp0$pb
9 tmp0$pb:
12 # rtdyld-check: decode_operand(inst1, 4) = x$non_lazy_ptr - tmp0$pb
14 movl x$non_lazy_ptr-tmp0$pb(%eax), %eax
/external/libmpeg2/common/x86/
H A Dimpeg2_inter_pred_sse42_intr.c480 __m128i tmp0, tmp1; local
498 tmp0 = _mm_add_epi16(src_r0, src_r0_1); //Row 0 horizontal interpolation
500 tmp0 = _mm_add_epi16(tmp0, tmp1); //Row 0 vertical interpolation
501 tmp0 = _mm_add_epi16(tmp0, value_2);
502 tmp0 = _mm_srli_epi16(tmp0, 2);
503 tmp0 = _mm_packus_epi16(tmp0, value_
[all...]
/external/aac/libAACdec/src/
H A Dldfiltbank.cpp134 FIXP_DBL z0, z2, tmp0, tmp1; local
141 tmp0 = ( fMultDiv2(z[N/2+i], fb[N/2-1-i]) + fMultDiv2(z[i], fb[N/2+i]) ) ;
146 output[(i-N/4)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp0, -WTS0-1 + scale, SAMPLE_BITS);
150 output[(i-N/4)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp0, WTS0+1 - scale, SAMPLE_BITS);
160 FIXP_DBL tmp0 = fMultDiv2(z[i], fb[N/2+i]); local
164 output[(N*3/4 + i)*stride] = (INT_PCM)SATURATE_RIGHT_SHIFT(tmp0, -WTS0-1 + scale, SAMPLE_BITS);
167 output[(N*3/4 + i)*stride] = (INT_PCM)SATURATE_LEFT_SHIFT(tmp0, WTS0+1 - scale, SAMPLE_BITS);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c461 LLVMValueRef tmp0, tmp1; local
504 tmp0 = lp_build_emit_llvm_unary(&bld->bld_base, TGSI_OPCODE_ABS, src0);
505 dst0 = lp_build_rsqrt(&bld->bld_base.base, tmp0);
553 tmp0 = lp_build_cmp(&bld->bld_base.base, PIPE_FUNC_LESS, src0, src1);
554 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero);
561 tmp0 = lp_build_cmp(&bld->bld_base.base, PIPE_FUNC_GEQUAL, src0, src1);
562 dst0 = lp_build_select(&bld->bld_base.base, tmp0, bld->bld_base.base.one, bld->bld_base.base.zero);
570 tmp0 = lp_build_mul(&bld->bld_base.base, src0, src1);
571 dst0 = lp_build_add(&bld->bld_base.base, tmp0, src2);
584 tmp0
[all...]

Completed in 640 milliseconds

1234