Searched refs:tmp (Results 126 - 150 of 295) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp676 void* tmp = (void*)(video->currYMB); local
677 ULong *htfmMB = (ULong*)tmp;
741 void* tmp = (void*)(video->currYMB); local
742 ULong *currYMB = (ULong*)tmp;
1649 Int tmp[9]; local
1650 tmp[0] = dn[0];
1651 tmp[1] = dn[1];
1652 tmp[2] = dn[2];
1653 tmp[3] = dn[3];
1654 tmp[
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp808 void* tmp = (void*)(encvid->currYMB); local
809 uint32 *currYMB = (uint32*) tmp;
1682 int tmp[9]; local
1683 tmp[0] = dn[0];
1684 tmp[1] = dn[1];
1685 tmp[2] = dn[2];
1686 tmp[3] = dn[3];
1687 tmp[4] = dn[4];
1688 tmp[5] = dn[5];
1689 tmp[
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp130 struct sockaddr_in tmp = mRemoteAddr; local
131 tmp.sin_port = htons(ntohs(mRemoteAddr.sin_port) | 1);
135 (const struct sockaddr *)&tmp,
136 sizeof(tmp));
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp217 DirIterator tmp(*this);
227 return tmp;
230 return tmp;
234 return tmp;
/frameworks/rs/
H A DrsProgramFragment.cpp114 uintptr_t tmp[2]; local
115 tmp[0] = RS_PROGRAM_PARAM_CONSTANT;
116 tmp[1] = (uintptr_t)inputType.get();
121 NULL, 0, NULL, tmp, 2);
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.c217 Word32 tmp; local
220 tmp = (value << iLog4);
221 tmp16 = round16(tmp);
222 tmp = L_mult(tmp16, tmp16);
223 tmp16 = round16(tmp);
224 tmp = L_mult(tmp16, tmp16);
225 tmp16 = round16(tmp);
354 Word32 tmp, tmp2; local
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.cpp271 Speech_Decode_FrameState *tmp = s; local
276 void** tempVoid = (void**) tmp;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_stream.c143 u32 tmp = (8-bitPosInWord); local
145 out |= byte>>tmp;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DSmartCamera.java176 ImageView tmp = (ImageView) inflater.inflate(R.layout.imageview, null);
177 mImages.add(tmp);
178 mLinearLayout.addView(tmp);
191 ImageView tmp = (ImageView) inflater.inflate(R.layout.imageview, null);
192 mImages.add(tmp);
193 mLinearLayout.addView(tmp);
206 boolean tmp = (Boolean) mGraph.getVariable("startCapture").getValue();
207 if (tmp == false) {
/frameworks/testing/uiautomator/cmds/uiautomator/
H A Duiautomator34 export run_base=/data/local/tmp
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp517 char tmp[32]; local
518 sprintf(tmp, "%zu", numTracks);
520 mMetaData.add(METADATA_KEY_NUM_TRACKS, String8(tmp));
575 sprintf(tmp, "%" PRId64, (maxDurationUs + 500) / 1000);
576 mMetaData.add(METADATA_KEY_DURATION, String8(tmp));
585 sprintf(tmp, "%d", videoWidth);
586 mMetaData.add(METADATA_KEY_VIDEO_WIDTH, String8(tmp));
588 sprintf(tmp, "%d", videoHeight);
589 mMetaData.add(METADATA_KEY_VIDEO_HEIGHT, String8(tmp));
591 sprintf(tmp, "
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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...]
H A Dget_pred_adv_b_add.cpp92 int tmp; local
99 tmp = (uintptr_t)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 = (uintptr_t)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...]
/frameworks/rs/scriptc/
H A Drs_core_math.rsh6065 char2 tmp;
6066 tmp.x = (v1.x > v2.x ? v1.x : v2.x);
6067 tmp.y = (v1.y > v2.y ? v1.y : v2.y);
6068 return tmp;
6079 uchar2 tmp;
6080 tmp.x = (v1.x > v2.x ? v1.x : v2.x);
6081 tmp.y = (v1.y > v2.y ? v1.y : v2.y);
6082 return tmp;
6093 short2 tmp;
6094 tmp
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DSELinuxMMAC.java424 * Included is the failure to atomically rename the tmp
429 File tmp = null;
431 tmp = File.createTempFile("seapp_hash", ".journal", file.getParentFile());
432 tmp.setReadable(true);
433 fos = new FileOutputStream(tmp);
436 if (!tmp.renameTo(file)) {
440 if (tmp != null) {
441 tmp.delete();
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c899 int tmp[10]; local
902 tmp, tmp+1, tmp+2, tmp+3, tmp+4, tmp+5, tmp+6, tmp+7, tmp
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java827 float[] tmp = new float[9];
828 multiply(tmp, mValues, matrix);
829 mValues = tmp;
838 float[] tmp = new float[9];
839 multiply(tmp, matrix, mValues);
840 mValues = tmp;
982 float[] tmp = new float[9];
987 // translate tmp so that the pivot is in 0,0
988 setTranslate(tmp, -px, -py);
991 multiply(tmp2, tmp, getScal
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c321 int ret, i, bitrate, tmp; local
360 tmp = 441;
362 tmp =480;
368 config.bitRate = 640*config.sampleRate/tmp*config.nChannelsOut;
380 bitrate = bitrate * tmp / config.sampleRate;
432 tmp = 441;
434 tmp =480;
436 config.bitRate = 640*config.sampleRate/tmp*config.nChannelsOut;
447 bitrate = bitrate * tmp / config.sampleRate;
/frameworks/av/media/libstagefright/codecs/avc/common/src/
H A Dreflist.cpp174 void* tmp; local
181 tmp = (void*)sliceHdr->abs_diff_pic_num_minus1_l0;
182 abs_diff_pic_num_minus1 = (int*) tmp;
183 tmp = (void*)sliceHdr->long_term_pic_num_l0;
184 long_term_pic_idx = (int*) tmp;
191 tmp = (void*) sliceHdr->abs_diff_pic_num_minus1_l1;
192 abs_diff_pic_num_minus1 = (int*) tmp;
193 tmp = (void*) sliceHdr->long_term_pic_num_l1;
194 long_term_pic_idx = (int*)tmp;
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp257 int32_t tmp = mUpdateSeq | 0x80000000; local
258 android_atomic_acquire_store(tmp, &mUpdateSeq);
269 tmp = (tmp + 1) & 0x7FFFFFFF;
270 android_atomic_release_store(tmp, &mUpdateSeq);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3ZslStream.cpp48 T tmp = a; local
50 b = tmp;
213 const sp<PinnedBufferItem>& tmp = *it; local
215 tmp->getBufferItem().mGraphicBuffer->getNativeBuffer();
218 bufferItem = tmp;
/frameworks/base/libs/common_time/
H A Dclock_recovery.cpp374 int64_t tmp; local
380 time_to_cur_slew_.doForwardTransform(now, &tmp);
382 if (tmp > INT16_MAX)
384 else if (tmp < INT16_MIN)
387 cur_correction_ = static_cast<int16_t>(tmp);
/frameworks/base/services/core/java/com/android/server/
H A DCommonTimeManagementService.java64 int tmp;
67 tmp = SystemProperties.getInt(SERVER_PRIO_PROP, 1);
70 if (tmp < 1)
73 if (tmp > 30)
76 BASE_SERVER_PRIO = (byte)tmp;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp117 const char *tmp; local
118 CHECK(meta->findCString(kKeyMIMEType, &tmp));
119 AString mime = tmp;
/frameworks/base/core/java/android/emoji/
H A DEmojiFactory.java113 Bitmap tmp = cache.get();
114 if (tmp == null) {
119 return tmp;

Completed in 678 milliseconds

1234567891011>>