HomeSort by relevance Sort by last modified time
    Searched defs:tmp4 (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/webrtc/webrtc/common_audio/signal_processing/
spl_sqrt_floor_mips.c 51 int32_t root = 0, tmp1, tmp2, tmp3, tmp4; local
61 "or %[tmp4], %[root], %[tmp1] \n\t"
63 "movz %[root], %[tmp4], %[tmp2] \n\t"
70 "ori %[tmp4], %[root], 0x8000 \n\t"
72 "movz %[root], %[tmp4], %[tmp2] \n\t"
79 "ori %[tmp4], %[root], 0x4000 \n\t"
81 "movz %[root], %[tmp4], %[tmp2] \n\t"
88 "ori %[tmp4], %[root], 0x2000 \n\t"
90 "movz %[root], %[tmp4], %[tmp2] \n\t"
97 "ori %[tmp4], %[root], 0x1000 \n\t
    [all...]
complex_bit_reverse_mips.c 67 int32_t tmp1, tmp2, tmp3, tmp4; local
83 "lh %[tmp4], 6(%[pcoeftable_8]) \n\t"
87 "addu %[ti], %[frfi], %[tmp4] \n\t"
91 "ulw %[tmp4], 0(%[ti]) \n\t"
94 "usw %[tmp4], 0(%[tr]) \n\t"
107 "ulw %[tmp4], 0(%[ti]) \n\t"
110 "usw %[tmp4], 0(%[tr]) \n\t"
119 [ti] "=&r" (ti), [tmp4] "=&r" (tmp4)
135 "lh %[tmp4], 6(%[pcoeftable_7]) \n\t
    [all...]
downsample_fast_mips.c 28 int32_t tmp1, tmp2, tmp3, tmp4, factor_2; local
60 "lwl %[tmp4], 7(%[p_coefs]) \n\t"
64 "lwr %[tmp4], 4(%[p_coefs]) \n\t"
68 "dpa.w.ph $ac0, %[tmp3], %[tmp4] \n\t"
95 [tmp4] "=&r" (tmp4), [p_data_in] "=&r" (p_data_in),
121 "lh %[tmp4], 2(%[p_coefs]) \n\t"
124 "mul %[tmp3], %[tmp3], %[tmp4] \n\t"
155 [tmp4] "=&r" (tmp4), [p_data_in] "=&r" (p_data_in), [k] "=&r" (k)
    [all...]
complex_fft_mips.c 33 int32_t tmp4 = 0; local
78 "lh %[tmp4], 2(%[ptr_j]) \n\t"
82 "madd %[wi], %[tmp4] \n\t"
83 "mult $ac1, %[wr], %[tmp4] \n\t"
91 "subu %[tmp4], %[tmp6], %[tmp1] \n\t"
97 "shra_r.w %[tmp4], %[tmp4], 15 \n\t"
100 "mul %[tmp2], %[wr], %[tmp4] \n\t"
102 "mul %[tmp4], %[wi], %[tmp4] \n\t
156 int32_t tmp1 = 0, tmp2 = 0, tmp3 = 0, tmp4 = 0; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_6.cpp 121 Int32 tmp4; local
130 tmp4 = vec[4] - vec[1];
140 tmp0 = fxp_mac32_Q30(tmp4, -cos_3_pi_12, tmp0);
143 vec[3] = fxp_mul32_Q30((tmp3 + tmp4 - tmp5), cos_3_pi_12);
145 tmp0 = fxp_mac32_Q30(tmp4, cos_3_pi_12, tmp0);
pvmp3_get_scale_factors.cpp 192 int32 tmp4 = long_sfbtable[i]; local
200 int32 tmp2 = tmp1 * tmp4;
202 tmp4 = 32 - tmp1;
205 *(ptr++) = (tmp3 << (32 - tmp2)) >> tmp4;
210 for (sfb = tmp4; sfb != 0; sfb--)
219 ptr += tmp4;
pvmp3_mdct_18.cpp 140 int32 tmp4; local
168 tmp4 = vec[14]; //
182 vec[ 9] = vec[13] - tmp4;
183 vec[11] = vec[15] - tmp4;
196 tmp4 = vec[i+10];
197 vec[i+10] = tmp3 + tmp4;
200 tmp3 = tmp4;
206 tmp4 = vec[16];
207 vec[16] = tmp3 + tmp4;
215 tmp4 = vec[17] + tmp4
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
strlen.S 51 #define tmp4 x7 define
114 orr tmp4, data2, REP8_7f
116 bic has_nul2, tmp3, tmp4
154 orr tmp4, data2, REP8_7f
156 bic has_nul2, tmp3, tmp4
188 orr tmp4, data2, REP8_7f
190 bic has_nul2, tmp3, tmp4
197 orr tmp4, data2, REP8_7f
199 bic has_nul2, tmp3, tmp4
211 mov tmp4, -
    [all...]
string_copy.S 90 #define tmp4 x10 define
124 orr tmp4, data2, #REP8_7f
125 bic has_nul2, tmp3, tmp4
strnlen.S 50 #define tmp4 x11 define
96 orr tmp4, data2, #REP8_7f
98 bic has_nul2, tmp3, tmp4
148 neg tmp4, tmp1
156 lsl tmp4, tmp4, #3 /* Bytes beyond alignment -> bits. */
161 lsl tmp2, tmp2, tmp4 /* Shift (tmp1 & 63). */
164 lsr tmp2, tmp2, tmp4 /* Shift (tmp1 & 63). */
  /art/libartbase/base/unix_file/
fd_file_test.cc 259 art::ScratchFile tmp4; local
260 EXPECT_TRUE(tmp4.GetFile()->WriteFully(&buffer[0], length));
262 EXPECT_NE(reset_compare(tmp, tmp4), 0);
  /external/eigen/unsupported/test/
NumericalDiff.cpp 55 double tmp1, tmp2, tmp3, tmp4; local
61 tmp4 = (x[1]*tmp2 + x[2]*tmp3); tmp4 = tmp4*tmp4;
63 fjac(i,1) = tmp1*tmp2/tmp4;
64 fjac(i,2) = tmp1*tmp3/tmp4;
  /external/libjpeg-turbo/
jfdctflt.c 62 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
79 tmp4 = dataptr[3] - dataptr[4];
97 tmp10 = tmp4 + tmp5; /* phase 2 */
129 tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
147 tmp10 = tmp4 + tmp5; /* phase 2 */
jfdctfst.c 119 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
137 tmp4 = dataptr[3] - dataptr[4];
155 tmp10 = tmp4 + tmp5; /* phase 2 */
187 tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
205 tmp10 = tmp4 + tmp5; /* phase 2 */
jfdctint.c 145 JLONG tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
165 tmp4 = dataptr[3] - dataptr[4];
187 * i0..i3 in the paper are tmp4..tmp7 here.
190 z1 = tmp4 + tmp7;
192 z3 = tmp4 + tmp6;
196 tmp4 = MULTIPLY(tmp4, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
208 dataptr[7] = (DCTELEM) DESCALE(tmp4 + z1 + z3, CONST_BITS-PASS1_BITS);
230 tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
252 * i0..i3 in the paper are tmp4..tmp7 here
    [all...]
jidctflt.c 76 FAST_FLOAT tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
146 tmp4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1] * _0_125);
153 z11 = tmp4 + tmp7;
154 z12 = tmp4 - tmp7;
165 tmp4 = tmp10 - tmp5;
173 wsptr[DCTSIZE*3] = tmp3 + tmp4;
174 wsptr[DCTSIZE*4] = tmp3 - tmp4;
223 tmp4 = tmp10 - tmp5;
233 outptr[3] = range_limit[((int) (tmp3 + tmp4)) & RANGE_MASK];
234 outptr[4] = range_limit[((int) (tmp3 - tmp4)) & RANGE_MASK]
    [all...]
jidctfst.c 175 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
245 tmp4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
252 z11 = tmp4 + tmp7;
253 z12 = tmp4 - tmp7;
264 tmp4 = tmp10 + tmp5;
272 wsptr[DCTSIZE*4] = (int) (tmp3 + tmp4);
273 wsptr[DCTSIZE*3] = (int) (tmp3 - tmp4);
346 tmp4 = tmp10 + tmp5;
362 outptr[4] = range_limit[IDESCALE(tmp3 + tmp4, PASS1_BITS+3)
364 outptr[3] = range_limit[IDESCALE(tmp3 - tmp4, PASS1_BITS+3
    [all...]
  /external/libopus/silk/fixed/mips/
prefilter_FIX_mipsr1.h 51 opus_int32 acc_Q11, acc_Q22, tmp1, tmp2, tmp3, tmp4; local
74 tmp4 = silk_SMLAWB( state_cur, state_next, lambda_Q16 );
77 tmp3 = silk_SMLAWB( state_next, tmp1 - tmp4, lambda_Q16 );
78 state[ 1 ] = tmp4;
80 acc_Q22 = silk_SMLAWB( acc_Q22, tmp4, coef_Q13[ 0 ] );
95 tmp4 = silk_SMLAWB( state_cur, state_next - tmp3, lambda_Q16 );
99 tmp3 = silk_SMLAWB( state_next, tmp1 - tmp4, lambda_Q16 );
100 state[ i + 1 ] = tmp4;
101 acc_Q22 = silk_SMLAWB( acc_Q22, tmp4, coef_Q13[ i ] );
  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred4_dspr2.c 16 int32_t tmp1, tmp2, tmp3, tmp4; local
23 "lb %[tmp4], 3(%[left]) \n\t"
27 "replv.qb %[tmp4], %[tmp4] \n\t"
34 "sw %[tmp4], (%[dst]) \n\t"
37 [tmp4] "=&r"(tmp4)
intrapred16_dspr2.c 16 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
24 "lb %[tmp4], 3(%[left]) \n\t"
41 "replv.qb %[tmp4], %[tmp4] \n\t"
73 "sw %[tmp4], (%[dst]) \n\t"
74 "sw %[tmp4], 4(%[dst]) \n\t"
75 "sw %[tmp4], 8(%[dst]) \n\t"
76 "sw %[tmp4], 12(%[dst]) \n\t"
151 [tmp4] "=&r"(tmp4), [tmp5] "=&r"(tmp5), [tmp7] "=&r"(tmp7)
    [all...]
intrapred8_dspr2.c 16 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
23 "lb %[tmp4], 3(%[left]) \n\t"
32 "replv.qb %[tmp4], %[tmp4] \n\t"
47 "sw %[tmp4], (%[dst]) \n\t"
48 "sw %[tmp4], 4(%[dst]) \n\t"
63 [tmp4] "=&r"(tmp4), [tmp5] "=&r"(tmp5), [tmp7] "=&r"(tmp7),
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c 83 const int64_t tmp4 = ((tmp3 * quant_ptr[k != 0]) >> 16) + tmp3; local
85 (uint32_t)((tmp4 * quant_shift_ptr[k != 0]) >> 16);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator_mips.c 34 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
44 "lh %[tmp4], 6(%[tmp_in]) \n\t"
55 "mul %[tmp8], %[tmp4], %[tmp8] \n\t"
56 "mul %[tmp4], %[tmp4], %[tmp4] \n\t"
65 "srav %[tmp4], %[tmp4], %[scaling] \n\t"
72 "addu %[ysum32], %[ysum32], %[tmp4] \n\t"
79 [tmp4] "=&r" (tmp4), [tmp5] "=&r" (tmp5), [tmp6] "=&r" (tmp6)
105 int32_t tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7, tmp8; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
oversamp_12k8_to_16k.cpp 284 int16 tmp1, tmp2, tmp3, tmp4; local
291 tmp4 = *(pt_x++);
295 L_sum = fxp_mac_16by16(tmp4, *(pt_fir++), L_sum);
299 tmp4 = *(pt_x++);
303 L_sum = fxp_mac_16by16(tmp4, *(pt_fir++), L_sum);
307 tmp4 = *(pt_x++);
311 L_sum = fxp_mac_16by16(tmp4, *(pt_fir++), L_sum);
315 tmp4 = *(pt_x++);
319 L_sum = fxp_mac_16by16(tmp4, *(pt_fir++), L_sum);
323 tmp4 = *(pt_x++)
    [all...]
  /external/aac/libFDK/src/
dct.cpp 250 FIXP_DBL tmp1, tmp2, tmp3, tmp4; local
254 tmp4 = *--pTmp_1;
258 *pDat++ = tmp4;

Completed in 435 milliseconds

1 2 3