Searched refs:tmp (Results 151 - 175 of 279) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/emoji/
H A DEmojiFactory.java113 Bitmap tmp = cache.get();
114 if (tmp == null) {
119 return tmp;
/frameworks/native/services/sensorservice/
H A Dmat.h340 mat<T, N, N> tmp(src);
347 if (fabs(tmp[j][i]) > fabs(tmp[i][i])) {
355 t = tmp[i][k];
356 tmp[i][k] = tmp[swap][k];
357 tmp[swap][k] = t;
365 t = 1 / tmp[i][i];
367 tmp[i][k] *= t;
372 t = tmp[
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_transform.c320 i32 tmp; local
321 tmp = ((1 - qpDiv) == 0) ? 1 : 2;
328 data[0 ] = ((tmp0 + tmp3)*levScale+tmp) >> (2-qpDiv);
329 data[4 ] = ((tmp1 + tmp2)*levScale+tmp) >> (2-qpDiv);
330 data[8 ] = ((tmp1 - tmp2)*levScale+tmp) >> (2-qpDiv);
331 data[12] = ((tmp0 - tmp3)*levScale+tmp) >> (2-qpDiv);
H A Dh264bsd_dpb.c1251 u8 *tmp; local
1275 tmp = dpb->buffer[dpb->dpbSize].data;
1328 * tmp */
1331 if (dpb->buffer[i].data == tmp)
1335 dpb->buffer[dpb->dpbSize].data = tmp;
1387 dpbPicture_t *tmp; local
1394 tmp = NULL;
1401 tmp = dpb->buffer + i;
1406 return(tmp);
1428 dpbPicture_t *tmp; local
[all...]
H A DDecTestBench.c86 u32 i, tmp; local
215 if ( (tmp = NextPacket(&decInput.pStream)) != 0 )
216 decInput.dataLen = tmp;
339 tmp = CropPicture(tmpImage, imageData,
342 if (tmp)
398 tmp = CropPicture(tmpImage, imageData,
401 if (tmp)
/frameworks/rs/
H A DrsProgramVertex.cpp203 uint32_t tmp[4]; local
204 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
205 tmp[1] = (uint32_t)inputType.get();
206 tmp[2] = RS_PROGRAM_PARAM_INPUT;
207 tmp[3] = (uint32_t)attrElem.get();
210 NULL, 0, NULL, tmp, 4);
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasic_op.h274 Word32 tmp;
279 "MOV %[tmp], %[result], ASR #15\n"
280 "TEQ %[tmp], %[result], ASR #31 \n"
282 :[result]"=&r"(result), [tmp]"=&r"(tmp)
308 Word32 tmp;
310 "MOV %[tmp], %[L_var1],ASR#15\n"
311 "TEQ %[tmp], %[L_var1],ASR#31\n"
314 :[result]"=&r"(result), [tmp]"=&r"(tmp)
599 Word32 tmp; local
627 Word32 tmp; local
731 Word32 tmp; local
[all...]
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp427 uint8_t tmp[12]; local
428 ssize_t n = mDataSource->readAt(offset, tmp, 8);
434 uint32_t fourcc = U32_AT(tmp);
435 uint32_t chunkSize = U32LE_AT(&tmp[4]);
452 n = mDataSource->readAt(offset + 8, &tmp[8], 4);
458 uint32_t subFourcc = U32_AT(&tmp[8]);
917 const char *tmp; local
918 CHECK(track->mMeta->findCString(kKeyMIMEType, &tmp));
920 AString mime = tmp;
1128 uint8_t tmp[ local
1288 char tmp[12]; local
[all...]
H A DMP3Extractor.cpp103 uint8_t *tmp = buf; local
116 memcpy(buf, tmp, remainingBytes);
133 tmp = buf;
138 uint32_t header = U32_AT(tmp);
142 ++tmp;
153 ++tmp;
167 uint8_t tmp[4]; local
168 if (source->readAt(test_pos, tmp, 4) < 4) {
173 uint32_t test_header = U32_AT(tmp);
205 ++tmp;
[all...]
H A DVBRISeeker.cpp47 uint32_t tmp = U32_AT(&header[0]); local
50 if (!GetMPEGAudioFrameSize(tmp, &frameSize, &sampleRate)) {
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp271 uint8 *p_ref, *tmp; local
291 tmp = p_ref + blkwidth;
298 while (p_ref < tmp)
363 tmp = p_ref + blkwidth;
364 for (; p_ref < tmp;)
437 tmp = p_ref + blkwidth;
444 while (p_ref < tmp)
497 tmp = p_ref + blkwidth;
498 for (; p_ref < tmp;)
561 int *p_ref, *tmp; local
720 uint8 *p_ref, *tmp; local
784 uint8 *p_cur, *p_ref, *tmp; local
1087 uint8 *p_ref, *tmp; local
1152 int *p_ref, *tmp; local
1312 uint8 *p_cur, *p_ref, *p_tmp8, *tmp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dpitch_f4.c172 Word16 exp_norm, excf[L_SUBFR], tmp; local
255 tmp = exc[k];
258 excf[i] = add1(vo_mult(tmp, h[i]), excf[i - 1]);
260 excf[0] = vo_mult(tmp, h[0]);
/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk49 mkdir -p $(OBJROOT)/$*.tmp
50 cd $(OBJROOT)/$*.tmp; \
/frameworks/native/include/utils/
H A DList.h141 _Iter tmp(*this);
143 return tmp;
150 _Iter tmp(*this);
152 return tmp;
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorUtils.cpp307 const uint8_t *tmp = data; local
312 while (bytesLeft > 4 && !memcmp("\x00\x00\x00\x01", tmp, 4)) {
313 type = (*(tmp + 4)) & 0x1F;
322 nextStartCode = parseParamSet(&ctx, tmp + 4, bytesLeft - 4, type,
332 nextStartCode = parseParamSet(&ctx, tmp + 4, bytesLeft - 4, type,
344 bytesLeft -= nextStartCode - tmp;
345 tmp = nextStartCode;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock_s.s237 ;// M_HSUM_XOR $v0, $v1, $tmp
242 ;// $tmp scratch register
249 M_HSUM_XOR $v0, $v1, $tmp
250 UHADD8 $tmp, $v0, $v1 ;// s0 = a + b
252 MOV $v0, $tmp ;// s0
258 ;// M_MCRECONBLOCK_HalfPixelXY done here. Uses "tmp" as scratch register and
298 lsb2 SETS "tmp"
459 M_HSUM_XOR t00, t10, tmp ;// s0, l0
460 M_HSUM_XOR t01, t11, tmp ;// s0', l0'
468 M_HSUM_XOR t20, t30, tmp ;// s
602 tmp RN 12 label
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c547 Word32 tmp, tmp2; local
558 tmp = rsqrt(sfbEnergy[sfb], INT_BITS);
559 if(tmp > INT_BITS_SCAL)
561 shift = norm_l(tmp);
562 tmp = Div_32( INT_BITS_SCAL << shift, tmp << shift );
566 tmp = 0x7fffffff;
570 tmp = 0x7fffffff;
572 tnsSfbMean[sfb] = tmp;
577 tmp
865 Word32 accu,tmp,tmpSave; local
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h170 Self tmp = *this; local
172 return tmp;
236 Self tmp = *this; local
238 return tmp;
247 Self tmp = *this; local
249 return tmp;
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp964 AString tmp; local
965 tmp.append(mUser);
966 tmp.append(":");
967 tmp.append(mPass);
970 encodeBase64(tmp.c_str(), tmp.size(), &out);
1004 AString tmp; local
1005 tmp.append(HA1);
1006 tmp.append(":");
1007 tmp
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dsyn_filt.cpp47 are stored in the tmp buffer. Updated copyright year.
184 Word16 tmp[80]; // This is usually done by memory allocation (lg+M)
189 yy = tmp;
211 y[i] = tmp[i + M];
261 Word16 tmp[2*M]; /* This is usually done by memory allocation (lg+M) */ local
271 yy = tmp;
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp444 char *tmp = new char[utf8len]; local
445 char *ptr = tmp;
460 s->setTo(tmp, utf8len);
462 delete[] tmp;
463 tmp = NULL;
490 char tmp[16]; local
491 sprintf(tmp, "%d", (int)*frameData);
493 id->setTo(tmp);
/frameworks/base/core/java/android/inputmethodservice/
H A DSoftInputWindow.java144 int tmp = lp.width;
146 lp.height = tmp;
/frameworks/base/core/java/android/os/
H A DFileUtils.java167 byte[] tmp = last; last = data; data = tmp;
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DHttpResponseCacheTest.java39 String tmp = System.getProperty("java.io.tmpdir");
40 cacheDir = new File(tmp, "HttpCache-" + UUID.randomUUID());
/frameworks/native/libs/utils/
H A DLinearTransform.cpp230 T tmp = a; local
232 b = tmp;

Completed in 442 milliseconds

1234567891011>>