Searched refs:tmp (Results 1 - 25 of 194) sorted by relevance

12345678

/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_decode_huff_cw.cpp152 uint32 tmp; local
155 tmp = getUpTo9bits(pMainData, 3); /* hufftable1 */
157 cw = *(huffTable_1 + tmp);
169 uint32 tmp; local
172 tmp = getUpTo9bits(pMainData, 6); /* huffTable_2,3 */
174 if (tmp >> 3)
176 tmp = (tmp >> 3) - 1;
180 tmp = tmp
195 uint32 tmp; local
221 uint32 tmp; local
250 uint32 tmp; local
279 uint32 tmp; local
312 uint32 tmp; local
345 uint32 tmp; local
378 uint32 tmp; local
423 uint32 tmp; local
463 uint32 tmp; local
504 uint32 tmp; local
569 uint32 tmp; local
614 uint32 tmp; local
682 uint32 tmp; local
734 uint32 tmp = getUpTo9bits(pMainData, 6); /* huffTable_32 */ local
754 uint16 tmp = getUpTo9bits(pMainData, 4); /* huffTable_33 */ local
[all...]
H A Dpvmp3_mdct_6.cpp125 int32 tmp; local
135 tmp = *(pt_vec++);
138 *(pt_vec_o++) = fxp_mul32_Q29(tmp, *(pt_cos++));
147 tmp = -(vec[0] + vec[1]);
148 history[3] = tmp;
149 history[2] = tmp;
150 tmp = -(vec[1] + vec[2]);
153 history[4] = tmp;
154 history[1] = tmp;
155 tmp
[all...]
H A Dpvmp3_dequantize_sample.cpp296 int32 tmp = fxp_mul32_Q30((is[ss] << 16), power_1_third(pv_abs(is[ ss]))); local
298 tmp = fxp_mul32_Q30(tmp, two_raise_one_fourth);
305 is[ss] = (tmp >> temp);
314 is[ss] = (tmp << global_gain);
352 int32 tmp = is[ss]; local
353 if (tmp)
355 tmp = fxp_mul32_Q30((tmp << 16), power_1_third(pv_abs(tmp)));
377 int32 tmp = is[ss]; local
402 int32 tmp = is[ss]; local
428 int32 tmp = is[ss]; local
[all...]
H A Dpvmp3_get_side_info.cpp120 uint32 tmp; local
128 tmp = getbits_crc(inputStream, 14, crc, info->error_protection);
129 si->main_data_begin = (tmp << 18) >> 23; /* 9 */
130 si->private_bits = (tmp << 23) >> 27; /* 5 */
134 tmp = getbits_crc(inputStream, 12, crc, info->error_protection);
135 si->main_data_begin = (tmp << 20) >> 23; /* 9 */
136 si->private_bits = (tmp << 23) >> 29; /* 3 */
142 tmp = getbits_crc(inputStream, 4, crc, info->error_protection);
143 si->ch[ch].scfsi[0] = (tmp << 28) >> 31; /* 1 */
144 si->ch[ch].scfsi[1] = (tmp << 2
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dsad_halfpel_inline.h29 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
31 tmp = (tmp2 >> 1) - tmp;
32 if (tmp > 0) sad += tmp;
33 else sad -= tmp;
38 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
40 tmp = (tmp >> 2) - tmp2;
41 if (tmp >
49 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
53 rsbs tmp, tmp, tmp2, asr #1 ; local
54 rsbmi tmp, tmp, #0 ; local
55 add sad, sad, tmp ; local
61 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
65 rsbs tmp, tmp2, tmp, asr #2 ; local
66 rsbmi tmp, tmp, #0 ; local
67 add sad, sad, tmp ; local
75 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
82 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
[all...]
H A Dsad.cpp97 int saddata[16], tmp, tmp2; /* used when collecting flag (global) is on */ local
114 tmp = p1[12];
116 sad = SUB_SAD(sad, tmp, tmp2);
117 tmp = p1[8];
119 sad = SUB_SAD(sad, tmp, tmp2);
120 tmp = p1[4];
122 sad = SUB_SAD(sad, tmp, tmp2);
123 tmp = p1[0];
126 sad = SUB_SAD(sad, tmp, tmp2);
129 tmp
201 int tmp, tmp2; local
[all...]
H A Dsad_halfpel.cpp189 int difmad, tmp, tmp2; local
212 tmp = p1[12] + p2[12];
214 tmp += tmp2;
216 tmp += 2;
217 sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
218 tmp = p1[8] + p2[8];
220 tmp += tmp2;
222 tmp += 2;
223 sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
224 tmp
271 int difmad, tmp, tmp2; local
352 int difmad, tmp, tmp2; local
427 int sad = 0, tmp, tmp2; local
495 int sad = 0, tmp, tmp2; local
561 int sad = 0, tmp, tmp2; local
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_halfpel_inline.h34 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
36 tmp = (tmp2 >> 1) - tmp;
37 if (tmp > 0) sad += tmp;
38 else sad -= tmp;
43 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
45 tmp = (tmp >> 2) - tmp2;
46 if (tmp >
54 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
58 rsbs tmp, tmp, tmp2, asr #1 ; local
59 rsbmi tmp, tmp, #0 ; local
60 add sad, sad, tmp ; local
66 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
70 rsbs tmp, tmp2, tmp, asr #2 ; local
71 rsbmi tmp, tmp, #0 ; local
72 add sad, sad, tmp ; local
81 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
101 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
[all...]
H A Dsad.cpp113 Int saddata[16], tmp, tmp2; /* used when collecting flag (global) is on */ local
127 tmp = p1[12];
129 sad = SUB_SAD(sad, tmp, tmp2);
130 tmp = p1[8];
132 sad = SUB_SAD(sad, tmp, tmp2);
133 tmp = p1[4];
135 sad = SUB_SAD(sad, tmp, tmp2);
136 tmp = p1[0];
139 sad = SUB_SAD(sad, tmp, tmp2);
142 tmp
214 Int tmp, tmp2; local
321 Int tmp, tmp2, tmp3, mask = 0xFF; local
[all...]
H A Dme_utils.cpp38 Int MB_mean, A, tmp, Th; local
76 tmp = *p - MB_mean;
78 if (tmp > 0) A += tmp;
79 else A -= tmp;
318 Int tmp, tmp2, mask = 0x00FF00FF; local
325 tmp = cInt[3]; /* load 4 pixels at a time */
326 tmp2 = tmp & mask;
327 tmp = (tmp >>
[all...]
/frameworks/base/media/libstagefright/codecs/amrwb/src/
H A Dmedian5.cpp121 int16 tmp; local
133 tmp = x1;
135 x2 = tmp;
139 tmp = x1;
141 x3 = tmp;
145 tmp = x1;
147 x4 = tmp;
155 tmp = x2;
157 x3 = tmp;
161 tmp
[all...]
H A Dvoice_factor.cpp127 int16 i, tmp, exp, ener1, exp1, ener2, exp2; local
135 tmp = (int16)((L_tmp << exp) >> 16);
136 ener1 = mult_int16(ener1, tmp);
142 tmp = shl_int16(gain_code, exp);
143 tmp = mult_int16(tmp, tmp);
144 ener2 = mult_int16(ener2, tmp);
161 tmp = ener1 - ener2;
165 if (tmp >
[all...]
H A Ddec_alg_codebook.cpp147 int16 pos1, pos2, tmp; local
156 tmp = shl_int16(N, 1);
157 i = (index >> tmp) & 1L; /* i = (index >> (2*N)) & 1; */
194 int16 j, tmp; local
200 tmp = sub_int16(shl_int16(N, 1), 1); /* mask = ((1<<((2*N)-1))-1); */
206 tmp = (N << 1) - 1;
209 if (((index >> tmp) & 1L) != 0L)
216 tmp = N << 1; /* idx = (index >> (2*N)) & mask; */
217 idx = (index >> tmp) & mask;
231 int16 j, tmp; local
267 int16 j, n_1, tmp; local
318 int16 j, n_1, tmp; local
[all...]
H A Dhoming_amr_wb_dec.cpp250 int16 i, j, tmp, shift; local
280 tmp = nparms - 15;
281 while (tmp > j)
287 tmp = nparms - j;
288 param[i] = Serial_parm(tmp, &prms);
289 shift = 15 - tmp;
318 tmp = Serial_parm(8, &prms);
319 param[31] = shl_int16(tmp, 7);
324 tmp = i;
326 for (i = 0; i < tmp;
[all...]
/frameworks/base/media/libstagefright/codecs/avc/common/src/
H A Ddeblock.cpp297 int indexA, indexB, tmp; local
386 /* Save Alpha, Beta and clipTable for future use, with the obselete variables filterLeftMbEdgeFlag, mbNum amd tmp */
389 tmp = (int)clipTable;
485 /* Recover Alpha, Beta and clipTable for edge!=0 with the variables filterLeftMbEdgeFlag, mbNum and tmp */
489 clipTable = (int *)tmp;
532 int tmp; local
578 tmp = *ptrQ++ - *ptrP++;
579 if (tmp < 0) tmp = -tmp;
735 int idx, tmp; local
910 int idx, tmp; local
1089 int C0, c0, dif, AbsDelta, tmp, tmp1; local
1278 int C0, c0, dif, AbsDelta, Strng, tmp, tmp1; local
1496 int L1, L0, R0, R1, tmp, tmp1; local
1586 int L1, L0, R0, R1, tmp, tmp1; local
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dsbr_inv_filt_levelemphasis.cpp149 Int32 tmp; local
185 tmp = InvFiltFactors[j];
187 if (tmp < BwVectorOld[i])
189 tmp = ((tmp << 1) + tmp + BwVectorOld[i]) >> 2;
193 tmp = fxp_mul32_Q29(Qfmt(0.90625f), tmp);
194 tmp = fxp_mac32_Q29(Qfmt(0.09375f), BwVectorOld[i], tmp);
[all...]
H A Ddigit_reversal_tables.cpp254 Int32 tmp[2]; local
263 tmp[0] = y[i];
264 tmp[1] = y[i+1];
267 y[j] = tmp[0];
268 y[j+1] = tmp[1];
270 tmp[0] = x[j];
271 tmp[1] = x[j+1];
274 x[i] = tmp[0];
275 x[i+1] = tmp[1];
/frameworks/base/libs/rs/
H A DrsMatrix.h53 Matrix tmp; local
54 tmp.loadMultiply(this, rhs);
55 load(&tmp);
58 Matrix tmp; local
59 tmp.loadRotate(rot, x, y, z);
60 multiply(&tmp);
63 Matrix tmp; local
64 tmp.loadScale(x, y, z);
65 multiply(&tmp);
68 Matrix tmp; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java137 float[] tmp = new float[12];
140 tmp[0] = src[10] * src[15];
141 tmp[1] = src[11] * src[14];
142 tmp[2] = src[9] * src[15];
143 tmp[3] = src[11] * src[13];
144 tmp[4] = src[9] * src[14];
145 tmp[5] = src[10] * src[13];
146 tmp[6] = src[8] * src[15];
147 tmp[7] = src[11] * src[12];
148 tmp[
[all...]
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Dvoicefac.c37 Word16 tmp, exp, ener1, exp1, ener2, exp2; local
48 tmp = extract_h(L_tmp << exp);
49 ener1 = vo_mult(ener1, tmp);
59 tmp = gain_code << exp;
60 tmp = vo_mult(tmp, tmp);
61 ener2 = vo_mult(ener2, tmp);
76 tmp = vo_sub(ener1, ener2);
79 if (tmp >
[all...]
H A Dmem_align.c56 unsigned char *tmp; local
64 tmp = (unsigned char *)MemInfo.VBuffer;
66 pMemop->Set(CodecID, tmp, 0, size + alignment);
69 (unsigned char *) ((unsigned int) (tmp + alignment - 1) &
72 if (mem_ptr == tmp)
75 *(mem_ptr - 1) = (unsigned char) (mem_ptr - tmp);
/frameworks/base/graphics/java/android/renderscript/
H A DProgramFragment.java40 int[] tmp = new int[(mInputCount + mOutputCount + mConstantCount + 1) * 2];
44 tmp[idx++] = 0;
45 tmp[idx++] = mInputs[i].mID;
48 tmp[idx++] = 1;
49 tmp[idx++] = mOutputs[i].mID;
52 tmp[idx++] = 2;
53 tmp[idx++] = mConstants[i].mID;
55 tmp[idx++] = 3;
56 tmp[idx++] = mTextureCount;
58 int id = mRS.nProgramFragmentCreate2(mShader, tmp);
[all...]
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dmemalign.c56 unsigned char *tmp; local
64 tmp = (unsigned char *)MemInfo.VBuffer;
66 pMemop->Set(CodecID, tmp, 0, size + alignment);
69 (unsigned char *) ((unsigned int) (tmp + alignment - 1) &
72 if (mem_ptr == tmp)
75 *(mem_ptr - 1) = (unsigned char) (mem_ptr - tmp);
/frameworks/base/opengl/libs/tools/
H A Dgenfiles22 ./glentrygen ../../include/GLES/gl.h > /tmp/gl_entries.in
23 ./glentrygen ../../include/GLES/glext.h > /tmp/glext_entries.in
24 ./glentrygen ../../include/GLES2/gl2.h > /tmp/gl2_entries.in
25 ./glentrygen ../../include/GLES2/gl2ext.h > /tmp/gl2ext_entries.in
27 cat /tmp/gl_entries.in \
28 /tmp/glext_entries.in \
29 /tmp/gl2_entries.in \
30 /tmp/gl2ext_entries.in \
/frameworks/base/media/libstagefright/foundation/
H A Dhexdump.cpp39 char tmp[32]; local
40 sprintf(tmp, "%08lx: ", (unsigned long)offset);
42 line.append(tmp);
51 sprintf(tmp, "%02x ", data[offset + i]);
52 line.append(tmp);

Completed in 290 milliseconds

12345678