Searched defs:tmp (Results 76 - 100 of 204) sorted by relevance

123456789

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dsad_inline.h30 __inline int32 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
32 tmp = tmp - tmp2;
33 if (tmp > 0) sad += tmp;
34 else sad -= tmp;
174 __inline int32 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
178 rsbs tmp, tmp, tmp2 ; local
179 rsbmi tmp, tm local
180 add sad, sad, tmp ; local
343 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dget_pred_adv_b_add.cpp92 int tmp; local
99 tmp = (uint32)prev & 0x3;
102 if (tmp == 0) /* word-aligned */
112 else if (tmp == 1) /* first position */
134 else if (tmp == 2) /* second position */
192 int tmp; local
206 tmp = (uint32)prev & 3;
211 if (tmp == 0) /* word-aligned */
281 else if (tmp == 1)
360 else if (tmp
521 int tmp; local
868 int tmp; local
[all...]
H A Didct_vca.cpp43 int tmp; local
56 tmp = (*(blk += 8) + 32) >> 6;
60 res = tmp + (pred_word & 0xFF);
62 res2 = tmp + ((pred_word >> 8) & 0xFF);
65 res = tmp + ((pred_word >> 16) & 0xFF);
68 res = tmp + ((pred_word >> 24) & 0xFF);
74 res = tmp + (pred_word & 0xFF);
76 res2 = tmp + ((pred_word >> 8) & 0xFF);
79 res = tmp + ((pred_word >> 16) & 0xFF);
82 res = tmp
422 int32 tmp; 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 Dvop.cpp511 BitstreamEncVideo *bs, tmp; local
516 tmp.bitstreamBuffer = buffer; /* use temporary buffer */
517 tmp.bufferSize = 30;
518 BitstreamEncReset(&tmp);
519 bs = &tmp;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp377 int32 * tmp = pVars->Scratch_mem; local
383 (uint32 *)tmp,
427 int32 * tmp = pVars->Scratch_mem; local
433 (uint32 *)tmp,
H A Dpvmp3_stereo_proc.cpp232 int32 tmp = fxp_mul32_Q32((*pt_xr) << 1, TmpFac); local
233 *(pt_xl++) = (*pt_xr) - tmp;
234 *(pt_xr++) = tmp;
235 tmp = fxp_mul32_Q32((*pt_xr) << 1, TmpFac);
236 *(pt_xl++) = (*pt_xr) - tmp;
237 *(pt_xr++) = tmp;
242 int32 tmp = fxp_mul32_Q32((*pt_xr) << 1, TmpFac); local
243 *(pt_xl) = (*pt_xr) - tmp;
244 *(pt_xr) = tmp;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_conceal.c266 i32 tmp; local
445 tmp = pTmp[(i & 0xF)>>2];
447 *pData++ = CLIP1(tmp);
556 tmp = pTmp[(i & 0x7)>>1];
558 *pData++ = CLIP1(tmp);
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_storage.c301 u32 tmp; local
317 tmp = CheckPps(pStorage->pps[ppsId],
319 if (tmp != HANTRO_OK)
320 return(tmp);
371 tmp = h264bsdResetDpb(pStorage->dpb,
378 if (tmp != HANTRO_OK)
379 return(tmp);
532 u32 i, tmp; local
544 for (i = 0, tmp = 0; i < pStorage->picSizeInMbs; i++)
545 tmp
634 u32 tmp, ppsId, frameNum, idrPicId, picOrderCntLsb; local
[all...]
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp41 int32_t tmp; local
42 CHECK(meta->findInt32(kKeyColorFormat, &tmp));
43 mColorFormat = (OMX_COLOR_FORMATTYPE)tmp;
219 size_t tmp = (mCropWidth + 1) / 2; local
220 for (size_t x = 0; x < tmp; ++x) {
/frameworks/base/libs/hwui/
H A DRect.h115 Rect tmp(l, t, r, b);
116 intersectWith(tmp);
117 if (!tmp.isEmpty()) {
118 set(tmp);
177 void intersectWith(Rect& tmp) const {
178 tmp.left = max(left, tmp.left);
179 tmp.top = max(top, tmp.top);
180 tmp
185 Rect tmp; local
[all...]
H A DSnapshot.cpp111 SkIRect tmp; local
112 tmp.set(left, top, right, bottom);
113 clipRegion->op(tmp, op);
/frameworks/base/services/common_time/
H A Dcommon_time_config_service.cpp65 String8 tmp; local
66 status_t ret = mTimeServer.getInterfaceBinding(tmp);
67 ifaceName = String16(tmp);
72 String8 tmp(ifaceName);
73 return mTimeServer.setInterfaceBinding(tmp);
H A Dcommon_time_server_packets.cpp93 int16_t tmp; local
96 DESERIALIZE_INT16(tmp);
99 packetType = static_cast<TimeServicePacketType>(tmp);
105 ssize_t ret, tmp; local
116 tmp =((WhoIsMasterRequestPacket*)(this))->serializePacket(data,
120 tmp =((WhoIsMasterResponsePacket*)(this))->serializePacket(data,
124 tmp =((SyncRequestPacket*)(this))->serializePacket(data, length);
127 tmp =((SyncResponsePacket*)(this))->serializePacket(data, length);
130 tmp =((MasterAnnouncementPacket*)(this))->serializePacket(data,
137 if (tmp <
[all...]
H A Ddiag_thread.cpp50 int tmp = 1; local
51 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &tmp, sizeof(tmp)) < 0) {
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp57 Category* tmp = current; local
59 delete tmp;
/frameworks/native/libs/utils/
H A DLinearTransform.cpp230 T tmp = a; local
232 b = tmp;
/frameworks/rs/
H A DrsProgramFragment.cpp111 uint32_t tmp[2]; local
112 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
113 tmp[1] = (uint32_t)inputType.get();
118 NULL, 0, NULL, tmp, 2);
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/support/renderscript/v8/rs_support/
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/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/libmedia/
H A DVisualizer.cpp249 short tmp = workspace[i >> 1] >> 21; local
250 while (tmp > 127 || tmp < -128) tmp >>= 1;
251 fft[i] = tmp;
252 tmp = workspace[i >> 1];
253 tmp >>= 5;
254 while (tmp > 127 || tmp < -128) tmp >>
[all...]
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp236 int32_t tmp = mUpdateSeq | 0x80000000; local
237 android_atomic_acquire_store(tmp, &mUpdateSeq);
248 tmp = (tmp + 1) & 0x7FFFFFFF;
249 android_atomic_release_store(tmp, &mUpdateSeq);

Completed in 2999 milliseconds

123456789