Searched refs:tmp (Results 51 - 75 of 322) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dq_pulse.c56 Word16 mask, tmp; local
76 tmp = (N << 1);
77 index = vo_L_add(index, (1L << tmp)); /* index += 1 << (2*N); */
88 tmp = (N << 1); /* index += 1 << (2*N); */
89 index = vo_L_add(index, (1L << tmp));
97 tmp = (N << 1);
98 index = vo_L_add(index, (1 << tmp)); /* index += 1 << (2*N); */
191 Word16 nb_pos, mask __unused, n_1, tmp; local
215 tmp = vo_sub((N << 2), 3); /* index = 1 << ((4*N)-3); */
216 index = (1L << tmp);
257 Word16 nb_pos, n_1, tmp; local
[all...]
H A Dlog2.c63 Word16 i, a, tmp; local
79 tmp = vo_sub(table[i], table[i + 1]); /* table[i] - table[i+1] */
80 L_y = vo_L_msu (L_y, tmp, a); /* L_y -= tmp*a*2 */
H A Ddtx.c167 Word16 log_en, gain, level, exp, exp0, tmp; local
281 tmp = mult(exc2[i], gain); /* Q0 * Q15 */
282 exc2[i] = shl(tmp, exp);
437 Word16 i, j, tmp; local
444 tmp = DTX_HIST_SIZE_MIN_ONE;
448 j = add(j, tmp);
450 tmp = sub(tmp, 1);
469 tmp = 0;
470 for (i = 27; i >= 12; i = (Word16) (i - tmp))
570 Word16 tmp, mean, CN_dith, gain_diff; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_decoder.c157 u32 tmp, ppsId, spsId; local
184 tmp = h264bsdExtractNalUnit(byteStrm, len, &strm, readBytes);
185 if (tmp != HANTRO_OK)
197 tmp = h264bsdDecodeNalUnit(&strm, &nalUnit);
198 if (tmp != HANTRO_OK)
211 tmp = h264bsdCheckAccessUnitBoundary(
216 if (tmp != HANTRO_OK)
219 if (tmp == PARAM_SET_ERROR)
246 tmp = h264bsdConceal(pStorage, pStorage->currImage, P_SLICE);
249 tmp
[all...]
H A Dh264bsd_image.c181 u8 *tmp; local
218 tmp = data + y*16 + x;
221 ASSERT(!((u32)tmp&0x3));
227 i32 *in32 = (i32*)tmp;
249 tmp1 = tmp[0];
251 tmp3 = tmp[1];
256 tmp1 = tmp[2];
260 tmp3 = tmp[3];
264 tmp += 16;
283 tmp
[all...]
H A Dh264bsd_inter_prediction.c210 u32 tmp; local
236 tmp = (0<<24) + (0<<16) + (16<<8) + 16;
238 colAndRow, tmp, pFill);
245 tmp = (0<<24) + (0<<16) + (16<<8) + 8;
247 colAndRow, tmp, pFill);
250 tmp = (0<<24) + (8<<16) + (16<<8) + 8;
252 colAndRow, tmp, pFill);
259 tmp = (0<<24) + (0<<16) + (8<<8) + 16;
261 colAndRow, tmp, pFill);
263 tmp
502 u8 *tmp; local
586 u8 *tmp; local
693 u8 *tmp; local
972 u32 tmp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dinv_sqrt.cpp158 Word16 exp, i, a, tmp;
190 tmp = sub (table[i], table[i + 1]); // table[i] - table[i+1])
191 L_y = L_msu (L_y, tmp, a); // L_y -= tmp*a*2
229 Word16 tmp; local
260 tmp = inv_sqrt_tbl[i] - inv_sqrt_tbl[i + 1];
263 L_y -= ((Word32)tmp * a) << 1; /* L_y -= tmp*a*2 */
H A Dsqrt_l.cpp153 Word16 e, i, a, tmp;
181 tmp = sub (table[i], table[i + 1]); // table[i] - table[i+1])
182 L_y = L_msu (L_y, tmp, a); // L_y -= tmp*a*2
220 Word16 tmp; local
258 tmp = sub(sqrt_l_tbl[i], sqrt_l_tbl[i + 1], pOverflow);
260 L_y = L_msu(L_y, tmp, a, pOverflow); /* L_y -= tmp*a*2 */
H A Dgc_pred.cpp487 Word16 tmp; local
502 tmp = *(p_code++);
503 ener_code += ((Word32) tmp * tmp) >> 3;
504 tmp = *(p_code++);
505 ener_code += ((Word32) tmp * tmp) >> 3;
506 tmp = *(p_code++);
507 ener_code += ((Word32) tmp * tmp) >>
[all...]
/frameworks/base/services/core/java/com/android/server/updates/
H A DSELinuxPolicyInstallReceiver.java86 File tmp = new File(updateDir.getParentFile(), "tmp");
89 deleteRecursive(tmp);
90 tmp.mkdirs();
91 installFile(new File(tmp, versionPath), stream, chunkLengths[0]);
92 installFile(new File(tmp, macPermissionsPath), stream, chunkLengths[1]);
93 installFile(new File(tmp, seappContextsPath), stream, chunkLengths[2]);
94 installFile(new File(tmp, propertyContextsPath), stream, chunkLengths[3]);
95 installFile(new File(tmp, fileContextsPath), stream, chunkLengths[4]);
96 installFile(new File(tmp, sepolicyPat
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_huffman_decoding.cpp263 int32 tmp = getUpTo17bits(pMainData, (h->linbits + 1)); local
264 x += tmp >> 1;
265 if (tmp&1)
281 int32 tmp = getUpTo17bits(pMainData, (h->linbits + 1)); local
282 y += tmp >> 1;
283 if (tmp&1)
/frameworks/base/rs/java/android/renderscript/
H A DMatrix3f.java230 Matrix3f tmp = new Matrix3f();
231 tmp.loadMultiply(this, rhs);
232 load(tmp);
245 Matrix3f tmp = new Matrix3f();
246 tmp.loadRotate(rot, x, y, z);
247 multiply(tmp);
257 Matrix3f tmp = new Matrix3f();
258 tmp.loadRotate(rot);
259 multiply(tmp);
270 Matrix3f tmp
[all...]
H A DProgramFragmentFixedFunction.java52 long[] tmp = new long[(mInputCount + mOutputCount + mConstantCount + mTextureCount) * 2];
57 tmp[idx++] = ProgramParam.INPUT.mID;
58 tmp[idx++] = mInputs[i].getID(mRS);
61 tmp[idx++] = ProgramParam.OUTPUT.mID;
62 tmp[idx++] = mOutputs[i].getID(mRS);
65 tmp[idx++] = ProgramParam.CONSTANT.mID;
66 tmp[idx++] = mConstants[i].getID(mRS);
69 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
70 tmp[idx++] = mTextureTypes[i].mID;
74 long id = mRS.nProgramFragmentCreate(mShader, texNames, tmp);
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix3f.java233 Matrix3f tmp = new Matrix3f();
234 tmp.loadMultiply(this, rhs);
235 load(tmp);
248 Matrix3f tmp = new Matrix3f();
249 tmp.loadRotate(rot, x, y, z);
250 multiply(tmp);
260 Matrix3f tmp = new Matrix3f();
261 tmp.loadRotate(rot);
262 multiply(tmp);
273 Matrix3f tmp
[all...]
/frameworks/webview/chromium/tools/
H A Dwebview_command_line17 CMD_LINE_FILE=/data/local/tmp/webview-command-line
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dlagconceal.cpp149 int16 i, tmp, tmp2; local
224 tmp = lagDif >> 1;
225 D2 = mult_int16(tmp, D);
226 tmp = add_int16(add_int16(lag_hist2[2], lag_hist2[3]), lag_hist2[4]);
227 *T0 = add_int16(mult_int16(tmp, ONE_PER_3), D2);
253 tmp = *T0 - maxLag;
256 if ((lagDif < 10) && (*T0 > (minLag - 5)) && (tmp < 5))
309 tmp = lagDif >> 1;
310 D2 = mult_int16(tmp, D);
311 tmp
[all...]
H A Ddec_gain2_amr_wb.cpp187 int16 i, tmp, exp, frac, gcode0, exp_gcode0, qua_ener, gcode_inov; local
219 tmp = median5(&pbuf[2]);
220 *past_gain_pit = tmp;
236 tmp = median5(&gbuf[2]);
240 *past_gain_code = tmp;
247 *past_gain_code = mult_int16(cdown_unusable[state], tmp);
251 *past_gain_code = mult_int16(cdown_usable[state], tmp);
257 tmp = past_qua_en[3];
259 L_tmp = tmp;
261 past_qua_en[3] = tmp;
[all...]
/frameworks/av/media/ndk/
H A DNdkMediaCrypto.cpp84 sp<ICrypto> tmp = makeCrypto(); local
85 if (tmp == NULL) {
89 if (tmp->createPlugin(uuid, data, datasize) != 0) {
94 crypto->mCrypto = tmp;
/frameworks/rs/
H A DrsStream.h33 float tmp = reinterpret_cast<const float *>(&mData[mPos])[0]; local
35 return tmp;
39 int32_t tmp = reinterpret_cast<const int32_t *>(&mData[mPos])[0]; local
41 return tmp;
45 uint32_t tmp = reinterpret_cast<const uint32_t *>(&mData[mPos])[0]; local
47 return tmp;
51 uint16_t tmp = reinterpret_cast<const uint16_t *>(&mData[mPos])[0]; local
53 return tmp;
56 uint8_t tmp = reinterpret_cast<const uint8_t *>(&mData[mPos])[0]; local
58 return tmp;
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3reader.cpp172 size_t tmp = (layer == 1 /* L3 */) ? 72000 : 144000; local
173 *frame_size = tmp * bitrate / sampling_rate + padding;
251 uint8_t *tmp = buf; local
263 memcpy(buf, tmp, remainingBytes);
279 tmp = buf;
284 uint32_t header = U32_AT(tmp);
288 ++tmp;
299 ++tmp;
312 uint8_t tmp[4]; local
313 ssize_t retval = sourceReadAt(fp, test_pos, tmp, sizeo
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_SELinux.cpp88 security_context_t tmp = NULL; local
89 int ret = getpeercon(fd, &tmp);
90 Unique_SecurityContext context(tmp);
157 char *tmp = const_cast<char *>(context.c_str()); local
158 int ret = setfilecon(path.c_str(), tmp);
184 security_context_t tmp = NULL; local
185 int ret = getfilecon(path.c_str(), &tmp);
186 Unique_SecurityContext context(tmp);
210 security_context_t tmp = NULL; local
211 int ret = getcon(&tmp);
237 security_context_t tmp = NULL; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.cpp47 Int tmp, tmp2; local
59 tmp = *((Int*) cur); /* contains 4 pixels */
62 k1 = mask & (tmp << 1);
65 k2 = mask & (tmp >> 7);
68 k3 = mask & (tmp >> 15);
71 k4 = mask & (tmp >> 23);
73 tmp = *((Int*)(cur + 4)); /* another 4 pixels */
76 k5 = mask & (tmp << 1);
79 k6 = mask & (tmp >> 7);
82 k7 = mask & (tmp >> 1
275 Int tmp, tmp2; local
481 Int tmp, tmp2; local
661 Int *curInt, tmp; local
871 Int *curInt, tmp; local
1058 Int *curInt, tmp; local
[all...]
H A Dfastquant_inline.h62 __inline int32 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp) argument
66 OSCL_UNUSED_ARG(tmp);
108 __inline int32 clip_2047(int32 q_value, int32 tmp) argument
110 OSCL_UNUSED_ARG(tmp);
124 __inline int32 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) argument
128 OSCL_UNUSED_ARG(tmp);
149 __inline int32 coeff_dequant_mpeg_intra(int32 q_value, int32 tmp) argument
151 OSCL_UNUSED_ARG(tmp);
194 mov coeff, q_value, asr shift /*smull tmp, coeff, q_scale, coeff*/
202 __inline int32 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp) argument
215 eorhi coeff, tmp, coeff, asr #31 local
243 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) argument
259 eorhi q_value, tmp, q_value, asr #31 local
298 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp) argument
311 eorhi coeff, tmp, coeff, asr #31 local
340 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) argument
356 eorhi q_value, tmp, q_value, asr #31 local
392 clip_2047(int32 q_value, int32 tmp) argument
402 eorhi q_value, tmp, q_value, asr #31 local
408 coeff_dequant_mpeg_intra(int32 q_value, int32 tmp) argument
420 eorhi q_value, tmp, q_value, asr #31 local
483 coeff_dequant(int32 q_value, int32 QPx2, int32 Addition, int32 tmp) argument
553 clip_2047(int32 q_value, int32 tmp) argument
567 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) argument
598 coeff_dequant_mpeg_intra(int32 q_value, int32 tmp) argument
[all...]
H A Dfastquant.cpp154 Int tmp, coeff, q_value; local
237 tmp = 2047;
238 coeff = coeff_dequant(q_value, QPx2, Addition, tmp);
256 tmp = 1 << (8 - i);
259 if (bitmapcol[i])(*bitmaprow) |= tmp;
260 tmp <<= 1;
274 Int tmp, coeff, q_value; local
387 /*smull tmp, coeff, q_value, q_scale*/
399 tmp = 2047;
400 coeff = coeff_dequant(q_value, QPx2, Addition, tmp);
451 Int tmp; local
498 Int tmp, coeff; local
549 Int tmp, coeff, q_value = 0; local
678 Int tmp, coeff, q_value = 0; local
923 Int tmp, coeff, q_value; local
[all...]
/frameworks/av/media/libmedia/
H A DIMediaHTTPConnection.cpp51 String16 tmp(uri);
52 data.writeString16(tmp);
54 tmp = String16("");
60 tmp.append(key);
61 tmp.append(String16(": "));
62 tmp.append(val);
63 tmp.append(String16("\r\n"));
66 data.writeString16(tmp);

Completed in 753 milliseconds

1234567891011>>