HomeSort by relevance Sort by last modified time
    Searched refs:temp1 (Results 1 - 25 of 296) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 27 int32 *temp0, *temp1; local
35 temp1 = (int32 *)comp;
37 temp1[0] = temp0[0];
38 temp1[1] = temp0[1];
39 temp1[2] = temp0[2];
40 temp1[3] = temp0[3];
46 temp1 = (int32 *)comp;
48 temp1[0] = temp0[0];
49 temp1[1] = temp0[1];
50 temp1[2] = temp0[2]
88 int32 *temp0, *temp1; local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 33 LVM_INT32 temp1,left,right; local
44 temp1 = (left+right)>>1;
45 *dstM = (LVM_INT16)temp1;
49 temp1 = (left-right)>>1;
50 *dstS = (LVM_INT16)temp1;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
enc_lag3.cpp 264 Word16 temp1; local
273 temp1 = sub(T0, 85, pOverflow);
274 if (temp1 <= 0)
307 temp1 = sub(tmp_lag, T0_min, pOverflow);
308 temp2 = sub(temp1, 5, pOverflow);
311 temp1 = sub(T0_max, tmp_lag, pOverflow);
312 temp2 = sub(temp1, 4, pOverflow);
316 temp1 = add(T0, T0, pOverflow);
317 temp2 = add(temp1, T0, pOverflow);
321 temp1 = add(i, i, pOverflow)
    [all...]
  /external/libavc/common/x86/
ih264_deblk_luma_ssse3.c 104 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
122 temp1 = _mm_unpacklo_epi8(line1, line2);
127 line1 = _mm_unpacklo_epi16(temp1, temp2);
128 line2 = _mm_unpackhi_epi16(temp1, temp2);
146 temp1 = _mm_unpacklo_epi8(line1, line2);
151 line1 = _mm_unpacklo_epi16(temp1, temp2);
152 line2 = _mm_unpackhi_epi16(temp1, temp2);
156 temp1 = _mm_unpacklo_epi32(line1, line3);
161 p3_16x8 = _mm_unpacklo_epi64(p1_8x16, temp1);
162 p2_16x8 = _mm_unpackhi_epi64(p1_8x16, temp1);
528 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
865 temp1; local
1157 __m128i temp1, temp2; local
1456 __m128i temp1, temp2, temp3, temp4, temp5, temp6; local
1772 __m128i temp1, temp2, temp3, temp4; local
    [all...]
ih264_ihadamard_scaling_sse42.c 98 __m128i temp0, temp1, temp2, temp3; local
127 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3
131 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
132 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
135 temp1 = _mm_add_epi32(src_r1, src_r2);
139 src_r0 = _mm_add_epi32(temp0, temp1);
141 src_r2 = _mm_sub_epi32(temp0, temp1);
156 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1
160 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
161 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d
211 __m128i src, plane_0, plane_1, temp0, temp1, sign_reg; local
    [all...]
ih264_ihadamard_scaling_ssse3.c 98 __m128i temp0, temp1, temp2, temp3; local
129 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //a2 b2 a3 b3
133 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //a2 b2 c2 d2
134 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //a3 b3 c3 d3
137 temp1 = _mm_add_epi32(src_r1, src_r2);
141 src_r0 = _mm_add_epi32(temp0, temp1);
143 src_r2 = _mm_sub_epi32(temp0, temp1);
158 temp1 = _mm_unpackhi_epi32(src_r0, src_r1); //c0 c1 d0 d1
162 src_r2 = _mm_unpacklo_epi64(temp1, temp3); //c0 c1 c2 c3
163 src_r3 = _mm_unpackhi_epi64(temp1, temp3); //d0 d1 d2 d
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
util.c 57 Word32 temp1,temp2,num; local
63 temp1 = *x++;
64 *y++ = temp1;
68 temp1 = *x++;
70 *y++ = temp1;
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
int_lsf.cpp 222 Word16 temp1; local
231 temp1 = ~(~(*(lsf_old + i)) >> 2);
235 temp1 = *(lsf_old + i) >> 2;
245 *(lsf_out + i) = add((Word16)(*(lsf_old + i) - temp1),
257 temp1 = ~(~(*(lsf_old + i)) >> 1);
261 temp1 = *(lsf_old + i) >> 1;
272 temp1,
284 temp1 = ~(~(*(lsf_old + i)) >> 2);
288 temp1 = *(lsf_old + i) >> 2;
298 *(lsf_out + i) = add((Word16)temp1,
    [all...]
dec_gain.cpp 200 Word16 temp1; local
241 temp1 = (Word16) L_deposit_l(g_code);
242 Log2(temp1, &exp, &frac, pOverflow);
245 temp1 = shr_r(frac, 5, pOverflow);
247 qua_ener_MR122 = add(temp1, temp2, pOverflow);
289 temp1 = sub(10, exp, pOverflow);
290 L_tmp = L_shr(L_tmp, temp1, pOverflow);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
interpolate_samples.c 27 int16_t *ppi, *ppo, i, j, temp1, temp2; local
34 temp1 = 0;
41 (int16_t)((WebRtcIlbcfix_kAlpha[temp1] * *ppi) >> 15);
45 temp1++;
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 23 std::string temp1 = get_temp_file_name(); local
26 std::ofstream fs1(temp1.c_str());
35 std::ifstream fs(temp1.c_str());
42 std::remove(temp1.c_str());
53 std::wofstream fs1(temp1.c_str());
62 std::wifstream fs(temp1.c_str());
69 std::remove(temp1.c_str());
nonmember_swap.pass.cpp 24 std::string temp1 = get_temp_file_name(); local
27 std::ofstream fs1(temp1.c_str());
36 std::ifstream fs(temp1.c_str());
43 std::remove(temp1.c_str());
54 std::wofstream fs1(temp1.c_str());
63 std::wifstream fs(temp1.c_str());
70 std::remove(temp1.c_str());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 23 std::string temp1 = get_temp_file_name(); local
26 std::ofstream fs1(temp1.c_str());
35 std::ifstream fs(temp1.c_str());
42 std::remove(temp1.c_str());
53 std::wofstream fs1(temp1.c_str());
62 std::wifstream fs(temp1.c_str());
69 std::remove(temp1.c_str());
nonmember_swap.pass.cpp 24 std::string temp1 = get_temp_file_name(); local
27 std::ofstream fs1(temp1.c_str());
36 std::ifstream fs(temp1.c_str());
43 std::remove(temp1.c_str());
54 std::wofstream fs1(temp1.c_str());
63 std::wifstream fs(temp1.c_str());
70 std::remove(temp1.c_str());
  /toolchain/binutils/binutils-2.25/gold/testsuite/
ifunc-sel.h 29 void *temp1, *temp2; local
46 : "=&b" (ret), "=&b" (temp1), "=&b" (temp2)
  /external/webp/src/dsp/
argb_mips_dsp_r2.c 20 int temp0, temp1, temp2, temp3, offset; local
29 "lbux %[temp1], %[offset](%[r]) \n\t"
32 "ins %[temp1], %[temp0], 16, 16 \n\t"
35 "precr.qb.ph %[temp0], %[temp1], %[temp3] \n\t"
42 "lbux %[temp1], %[offset](%[r]) \n\t"
45 "ins %[temp1], %[temp0], 16, 16 \n\t"
47 "precr.qb.ph %[temp0], %[temp1], %[temp3] \n\t"
50 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
60 int temp0, temp1, temp2, offset local
    [all...]
lossless_mips_dsp_r2.c 95 int temp0, temp1, temp2, temp3, temp4, temp5; local
97 "preceu.ph.qbr %[temp1], %[c0] \n\t"
105 "addq.ph %[temp1], %[temp1], %[temp3] \n\t"
107 "shll_s.ph %[temp1], %[temp1], 7 \n\t"
109 "precrqu_s.qb.ph %[temp2], %[temp2], %[temp1] \n\t"
110 : [temp0]"=r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
120 int temp0, temp1, temp2, temp3, temp4, temp5 local
149 int temp0, temp1, temp2, temp3, temp4, temp5; local
231 uint32_t temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
285 int temp0, temp1, temp2, temp3, temp4, temp5; local
352 int temp0, temp1, temp2, temp3; local
404 int temp0, temp1, temp2, temp3; local
454 int temp0, temp1, temp2, temp3, temp4, temp5; local
528 int temp0, temp1, temp2, temp3, temp4, temp5; local
606 int temp0, temp1, temp2, temp3; local
    [all...]
alpha_processing_mips_dsp_r2.c 29 int temp1, temp2, temp3; local
35 "srl %[temp1], %[temp0], 8 \n\t"
40 "sb %[temp1], -12(%[pdst]) \n\t"
43 : [temp0]"=&r"(temp0), [temp1]"=&r"(temp1), [temp2]"=&r"(temp2),
94 int temp0, temp1, temp2, temp3, alpha; local
103 "andi %[temp1], %[argb], 0xff \n\t"
106 "mul %[temp1], %[temp1], %[temp0] \n\t"
109 "precrq.ph.w %[temp1], %[temp2], %[temp1] \n\t
    [all...]
enc_mips_dsp_r2.c 50 // dpa.w.ph $ac0 temp0 ,temp1
51 // $ac += temp0[31..16] * temp1[31..16] + temp0[15..0] * temp1[15..0]
52 // dpax.w.ph $ac0 temp0 ,temp1
53 // $ac += temp0[31..16] * temp1[15..0] + temp0[15..0] * temp1[31..16]
79 #define HORIZONTAL_PASS(A, TEMP0, TEMP1, TEMP2, TEMP3) \
81 "lw %[" #TEMP1 "], 4(%[args]) \n\t" \
83 "lw %[" #TEMP3 "], " XSTR(BPS) "*" #A "(%[" #TEMP1 "]) \n\t" \
85 "preceu.ph.qbl %[" #TEMP1 "], %[" #TEMP3 "] \n\t"
147 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
175 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
251 int temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9; local
484 int temp0, temp1, temp2, temp3; local
547 int temp0, temp1, temp2, temp3; local
590 int temp0, temp1; local
611 int a10, a32, temp0, temp1, temp2, temp3, temp4, temp5; local
666 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
697 int temp0, temp1, temp2, temp3, temp4, temp5, temp6; local
733 int temp0, temp1, temp2, temp3, temp4, temp5; local
782 int temp0, temp1, temp2, temp3, temp4; local
832 int temp0, temp1, temp2, temp3, temp4, temp5; local
879 int temp0, temp1, temp2, temp3, temp4; local
928 int temp0, temp1, temp2, temp3, temp4; local
976 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7; local
1082 int temp0, temp1, temp2, temp3; local
1112 int temp0, temp1, temp2, temp3; local
1134 int temp0, temp1, temp2, temp3; local
1152 int temp0, temp1, temp2, temp3; local
1275 int temp0, temp1, temp2, temp3, temp4, temp5,temp6; local
1362 int temp0, temp1, temp2, temp3, temp4; local
1463 int temp0, temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 87 temp1 RN 5 label
124 MOV temp1,#0 ;// Initialize Count to zero
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
armVCM4P2_SetPredDir_s.s 78 temp1 RN 9 label
93 SUBS temp1,blockDCLeft,blockDCTopLeft
94 RSBLT temp1,temp1,#0
100 CMP temp1,temp2
102 LDRLTB temp1,[pQpBuf,#1]
104 STRLT temp1,[predQP]
106 LDRGEB temp1,[pQpBuf]
109 STRGE temp1,[predQP]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 87 temp1 RN 5 label
124 MOV temp1,#0 ;// Initialize Count to zero
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
armVCM4P2_SetPredDir_s.s 78 temp1 RN 9 label
93 SUBS temp1,blockDCLeft,blockDCTopLeft
94 RSBLT temp1,temp1,#0
100 CMP temp1,temp2
102 LDRLTB temp1,[pQpBuf,#1]
104 STRLT temp1,[predQP]
106 LDRGEB temp1,[pQpBuf]
109 STRGE temp1,[predQP]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
dct_msa.c 72 v8i16 temp0, temp1; local
81 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3);
82 SLLI_4V(temp0, temp1, in1, in3, 3);
83 in0 = temp0 + temp1;
84 in2 = temp0 - temp1;
97 BUTTERFLY_4(in0, in1, in2, in3, temp0, temp1, in1, in3);
98 in0 = temp0 + temp1 + 7;
99 in2 = temp0 - temp1 + 7;
103 temp1 = RET_1_IF_NZERO_H(in3);
104 ILVR_H2_SH(zero, temp1, in3, in1, temp1, temp0)
119 v8i16 temp0, temp1, tmp0, tmp1; local
173 v4i32 in0_w, in1_w, in2_w, in3_w, temp0, temp1, temp2, temp3; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct16x16_test.cc 86 double temp1, temp2; local
116 temp1 = step[ 8] * C7;
118 output[ 8] = temp1 + temp2;
120 temp1 = step[ 9] * C11;
122 output[ 9] = temp1 - temp2;
124 temp1 = step[10] * C3;
126 output[10] = temp1 + temp2;
128 temp1 = step[11] * C15;
130 output[11] = temp1 - temp2;
132 temp1 = step[11] * C1
    [all...]

Completed in 1554 milliseconds

1 2 3 4 5 6 7 8 91011>>