Searched defs:tmp0 (Results 1 - 25 of 44) sorted by relevance

12

/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/aac/libFDK/include/
H A Dfft.h126 FIXP_DBL a00, a10, a20, a30, tmp0, tmp1; local
136 tmp0 = a00 - x[4]; /* Re A - Re B */
145 x[2] = tmp0 + a30; /* Re B' = Re A - Re B + Im C - Im D */
146 x[6] = tmp0 - a30; /* Re D' = Re A - Re B - Im C + Im D */
/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/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s49 tmp0 .req r1 @ reuse register label
88 LDRSH tmp0, [pBuffer] @ fetch sample
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
100 MOV z1, tmp0, ASR #14 @ shift result to low word
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
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_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...]
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...]
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s49 tmp0 .req r1 @ reuse register label
88 LDRSH tmp0, [pBuffer] @ fetch sample
96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2)
100 MOV z1, tmp0, ASR #14 @ shift result to low word
115 LDRGTSH tmp0, [pBuffer, #NEXT_OUTPUT_PCM] @ fetch next sample
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_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...]
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...]
/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/
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/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/jpeg/
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 Djfdctint.c142 INT32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
155 tmp0 = dataptr[0] + dataptr[7];
168 tmp10 = tmp0 + tmp3;
169 tmp13 = tmp0 - tmp3;
220 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
233 tmp10 = tmp0 + tmp3;
234 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/qemu/distrib/jpeg-6b/
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 Djfdctint.c142 INT32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
155 tmp0 = dataptr[0] + dataptr[7];
168 tmp10 = tmp0 + tmp3;
169 tmp13 = tmp0 - tmp3;
220 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
233 tmp10 = tmp0 + tmp3;
234 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/skia/src/utils/
H A DSkCullPoints.cpp17 Sk64 tmp0, tmp1; local
19 tmp0.setMul(v.fX, dy);
21 tmp0.sub(tmp1);
22 return tmp0.isNeg() != 0;
/external/srtp/crypto/cipher/
H A Daes.c1714 uint32_t tmp0, tmp1, tmp2, tmp3; local
1716 tmp0 = (T4[(state->v32[0] >> 24)] & 0xff000000)
1740 state->v32[0] = tmp0;
1749 uint32_t tmp0, tmp1, tmp2, tmp3; local
1751 tmp0 = (U4[(state->v32[0] >> 24)] & 0xff000000)
1775 state->v32[0] = tmp0;
/external/bluetooth/bluez/sbc/
H A Dsbc_primitives.c451 int32_t tmp0, tmp1; local
459 tmp0 = fabs(sb_sample_f[blk][0][sb]);
461 if (tmp0 != 0)
462 x |= tmp0 - 1;
475 tmp0 = sb_sample_f[blk][0][sb];
477 sb_sample_j[blk][0] = ASR(tmp0, 1) + ASR(tmp1, 1);
478 sb_sample_j[blk][1] = ASR(tmp0, 1) - ASR(tmp1, 1);
479 tmp0 = fabs(tmp0);
481 if (tmp0 !
[all...]

Completed in 477 milliseconds

12