Searched refs:temp (Results 176 - 200 of 238) sorted by relevance

12345678910

/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraSettings.java180 int temp = max;
182 min = temp;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix3f.java311 float temp = mMat[i*3 + j];
313 mMat[j*3 + i] = temp;
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp444 uint32_t temp = *inYVU_4++; local
445 uint32_t tempU = temp & 0xFF;
446 tempU = tempU | ((temp >> 8) & 0xFF00);
448 uint32_t tempV = (temp >> 8) & 0xFF;
449 tempV = tempV | ((temp >> 16) & 0xFF00);
/frameworks/base/core/java/android/os/storage/
H A DVolumeInfo.java479 final Parcel temp = Parcel.obtain();
481 writeToParcel(temp, 0);
482 temp.setDataPosition(0);
483 return CREATOR.createFromParcel(temp);
485 temp.recycle();
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java323 TreeMap<String, ClassReader> temp = new TreeMap<>();
338 temp.clear();
339 temp.putAll(new_deps);
340 temp.putAll(new_keep);
346 for (ClassReader cr : temp.values()) {
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp191 int temp, SBE; local
200 temp = out[j] - cur[j];
201 SBE += ((temp >= 0) ? temp : -temp);
210 temp = *(out += pitch) - *(cur += pitch);
211 SBE += ((temp >= 0) ? temp : -temp);
722 double temp[1 local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Ddec_amr.cpp577 Word16 temp;
903 temp = mult (code[i - T0], pit_sharp);
904 code[i] = add (code[i], temp);
1055 temp = mult (st->exc[i], pit_sharp);
1056 L_temp = L_mult (temp, gain_pit);
1182 L_temp = sqrt_l_exp(L_temp, &temp); // function result
1183 L_temp = L_shr(L_temp, add( shr(temp, 1), 15));
1386 Word16 temp; local
1800 temp = mult(*(code + i - T0), pit_sharp, pOverflow);
1801 *(code + i) = add(*(code + i), temp, pOverflo
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodecListOverrides.cpp51 // TODO: move MediaCodecInfo to C++. Until then, some temp methods to parse out info.
253 AString temp; local
254 if (!splitString(s, delimiter, s1, &temp)) {
257 if (!splitString(temp, delimiter, s2, s3)) {
/frameworks/base/obex/javax/obex/
H A DClientOperation.java252 Long temp = (Long)mReplyHeader.getHeader(HeaderSet.LENGTH);
254 if (temp == null) {
257 return temp.longValue();
H A DServerOperation.java722 Long temp = (Long)requestHeader.getHeader(HeaderSet.LENGTH);
724 if (temp == null) {
727 return temp.longValue();
/frameworks/wilhelm/tests/examples/
H A DslesTestRecBuffQueue.cpp121 short temp[BUFFER_SIZE_IN_BYTES]; local
122 memcpy_to_i16_from_u8(temp, (const unsigned char *) pCntxt->pDataBase, BUFFER_SIZE_IN_BYTES);
123 (void) sf_writef_short(sndfile, (const short *) temp, frameCount);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A Dsyn_filt_neon.s59 MOV r10, r13 @ temp = y_buf
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s71 temp RN 14 label
193 M_MEDIAN3 CandMV1dx, CandMV2dx, CandMV3dx, temp
198 M_MEDIAN3 CandMV1dy, CandMV2dy, CandMV3dy, temp
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s71 temp RN 14 label
193 M_MEDIAN3 CandMV1dx, CandMV2dx, CandMV3dx, temp
198 M_MEDIAN3 CandMV1dy, CandMV2dy, CandMV3dy, temp
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h440 char *temp = mDevice->ops->get_parameters(mDevice); local
441 String8 str_parms(temp);
443 mDevice->ops->put_parameters(mDevice, temp);
445 free(temp);
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java1281 final float[] temp = mTempMatrix;
1282 synchronized(temp) {
1284 if (remapCoordinateSystemImpl(inR, X, Y, temp)) {
1287 outR[i] = temp[i];
/frameworks/base/core/java/android/text/format/
H A DTime.java908 Time temp = new Time(this);
909 temp.monthDay += sThursdayOffset[weekDay];
910 temp.normalize(true /* ignore isDst */);
911 return temp.yearDay / 7 + 1;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp284 int32 temp = history[i]; local
288 out[i] = temp;
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl125 void setBatteryState(int status, int health, int plugType, int level, int temp, int volt,
/frameworks/wilhelm/tools/permute/
H A Dpermute.c234 Segment temp = s.mSegmentArray[i]; local
236 s.mSegmentArray[j] = temp;
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp372 bool temp = false; local
373 mPlayer->isPlaying(&temp);
374 ALOGV("isPlaying: %d", temp);
375 if ((mCurrentState & MEDIA_PLAYER_STARTED) && ! temp) {
378 } else if ((mCurrentState & MEDIA_PLAYER_PAUSED) && temp) {
382 return temp;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp1399 Vop *temp; local
1645 temp = video->prevBaseVop;
1648 video->currVop = temp;
1654 temp = video->prevEnhanceVop;
1657 video->currVop = temp;
1879 Vop *temp; local
1963 temp = video->prevBaseVop;
1966 video->currVop = temp;
1972 temp = video->prevEnhanceVop;
1975 video->currVop = temp;
2870 UInt temp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1847 int temp; local
1865 temp = 1;
1866 pData = (void *)(&temp);
1870 temp = 16000;
1871 pData = (void *)(&temp);
1875 temp = gData->frameType;
1876 pData = (void *)(&temp);
1880 temp = gData->mode;
1881 pData = (void *)(&temp);
/frameworks/base/core/java/android/widget/
H A DGridView.java307 View temp = makeRow(pos, nextTop, true);
308 if (temp != null) {
309 selectedView = temp;
407 View temp = makeRow(pos, nextBottom, false);
408 if (temp != null) {
409 selectedView = temp;
568 final View temp = makeRow(mStackFromBottom ? motionRowEnd : motionRowStart, top, true);
604 if (temp != null) {
605 return temp;
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java495 final View temp = createViewFromTag(root, name, inflaterContext, attrs);
507 // Set the layout params for temp if we are not
509 temp.setLayoutParams(params);
517 // Inflate all children under temp against its context.
518 rInflateChildren(parser, temp, attrs, true);
524 // We are supposed to attach all the views we found (int temp)
527 root.addView(temp, params);
533 result = temp;

Completed in 2885 milliseconds

12345678910