Searched refs:temp (Results 101 - 125 of 268) sorted by relevance

1234567891011

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Ddtx_dec.cpp887 Word16 temp; local
936 temp = ~((~st->log_en_hist[i]) >> 3);
940 temp = st->log_en_hist[i] >> 3;
942 st->log_en = add(st->log_en, temp, pOverflow);
1060 temp = (Word16) L_temp;
1064 st->true_sid_period_inv = div_s(1 << 10, temp);
1109 temp = ~((~st->log_en) >> 1);
1113 temp = st->log_en >> 1;
1115 ma_pred_init = sub(temp, 9000, pOverflow);
1146 temp
[all...]
/frameworks/base/core/java/android/os/storage/
H A DDiskInfo.java152 final Parcel temp = Parcel.obtain();
154 writeToParcel(temp, 0);
155 temp.setDataPosition(0);
156 return CREATOR.createFromParcel(temp);
158 temp.recycle();
H A DVolumeRecord.java106 final Parcel temp = Parcel.obtain();
108 writeToParcel(temp, 0);
109 temp.setDataPosition(0);
110 return CREATOR.createFromParcel(temp);
112 temp.recycle();
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java293 long temp = -1;
304 temp = ((Long)headerValue).longValue();
305 if ((temp < 0L) || (temp > 0xFFFFFFFFL)) {
331 temp = ((Long)headerValue).longValue();
332 if ((temp < 0L) || (temp > 0xFFFFFFFFL)) {
487 temp = ((Long)headerValue).longValue();
488 if ((temp < 0L) || (temp >
[all...]
H A DObexHelper.java258 Calendar temp = Calendar.getInstance();
261 temp.setTimeZone(TimeZone.getTimeZone("UTC"));
263 temp.set(Calendar.YEAR, Integer.parseInt(dateString.substring(
265 temp.set(Calendar.MONTH, Integer.parseInt(dateString.substring(
267 temp.set(Calendar.DAY_OF_MONTH, Integer.parseInt(dateString
269 temp.set(Calendar.HOUR_OF_DAY, Integer.parseInt(dateString
271 temp.set(Calendar.MINUTE, Integer.parseInt(dateString
273 temp.set(Calendar.SECOND, Integer.parseInt(dateString
275 headerImpl.setHeader(HeaderSet.TIME_ISO_8601, temp);
328 Calendar temp
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dblock_idct.cpp627 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
699 temp = ((x3 + x2) >> 14);
700 CLIP_RESULT(temp)
701 word = word | (temp << 8);
703 temp = ((x0 + x4) >> 14);
704 CLIP_RESULT(temp)
705 word = word | (temp << 16);
707 temp = ((x8 + x6) >> 14);
708 CLIP_RESULT(temp)
709 word = word | (temp << 2
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s48 temp RN 11 label
131 SUB temp, iWidth, #1
136 ORR iWidth, iWidth, temp, LSL #16
231 SUB temp, iWidth, #1
236 ORR iWidth, iWidth, temp, LSL #16
269 SUB temp, iWidth, #1
274 ORR iWidth, iWidth, temp, LSL #16
/frameworks/base/libs/hwui/tests/unit/
H A DGraphicsStatsServiceTests.cpp94 int temp = i - mockData.frameCounts.size(); local
95 expectedCount = (temp % 5) + 1;
96 expectedBucket = JankTracker::frameTimeForSlowFrameCountIndex(temp);
151 int temp = i - mockData.frameCounts.size(); local
152 expectedCount = (temp % 5) + 1;
153 expectedCount += ((temp % 10) + 1) * 2;
154 expectedBucket = JankTracker::frameTimeForSlowFrameCountIndex(temp);
/frameworks/av/include/media/
H A DAudioMixer.h167 typedef void (*hook_t)(track_t* t, int32_t* output, size_t numOutFrames, int32_t* temp,
317 static void track__genericResample(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
319 static void track__nop(track_t* t, int32_t* out, size_t numFrames, int32_t* temp, int32_t* aux);
320 static void track__16BitsStereo(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
322 static void track__16BitsMono(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
324 static void volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp,
326 static void volumeStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp,
360 TO* temp __unused, TA* aux);
363 TO* temp __unused, TA* aux);
/frameworks/av/media/libaudioclient/include/media/
H A DAudioMixer.h167 typedef void (*hook_t)(track_t* t, int32_t* output, size_t numOutFrames, int32_t* temp,
317 static void track__genericResample(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
319 static void track__nop(track_t* t, int32_t* out, size_t numFrames, int32_t* temp, int32_t* aux);
320 static void track__16BitsStereo(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
322 static void track__16BitsMono(track_t* t, int32_t* out, size_t numFrames, int32_t* temp,
324 static void volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp,
326 static void volumeStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp,
360 TO* temp __unused, TA* aux);
363 TO* temp __unused, TA* aux);
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_QPD_Process.c74 LVM_INT32 temp,temp2; local
125 MUL32x32INTO32((LVM_INT32)D0,Km,temp,31);
126 accu +=temp + Xg0;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s110 temp RN 14 label
191 MOV temp1,absCoeffDC ;// Load the Prediction coeff to temp for comparision
195 ADD temp,dcScaler,dcScaler
196 LDRH temp,[predCoeffTable,temp] ;// Load value from coeff table for performing division using multiplication
197 SMULBB tempPred,temp,absCoeffDC ;// tempped=pPredBufRow(Col)[0]*32767/dcScaler
213 LDRH temp,[pSrcDst] ;// temp=pSrcDst[0]
214 ADD temp,temp,tempPre
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java260 // We have passed all of the checks, start checking the temp
276 float temp = temps[0];
277 mRecentTemps[mNumTemps++] = temp;
281 && temp >= mThresholdTemp) {
282 logAtTemperatureThreshold(temp);
294 private void logAtTemperatureThreshold(float temp) { argument
296 sb.append("currentTemp=").append(temp)
319 float temp = mRecentTemps[i];
320 sum += temp;
321 if (temp > ma
[all...]
/frameworks/native/services/sensorservice/
H A Dtraits.h58 enum { temp = IndexOf<Tail, T>::value }; enumerator in enum:android::TL::IndexOf::__anon1857
60 enum { value = temp == -1 ? -1 : 1 + temp };
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_halfpel.cpp69 Int temp; local
83 temp = ((p1[j] + p2[j] + 1) >> 1) - *kk++;
84 sad += PV_ABS(temp);
101 Int temp; local
114 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
115 sad += PV_ABS(temp);
143 Int temp; local
157 temp = ((p1[j] + p2[j] + 1) >> 1) - *kk++;
158 sad += PV_ABS(temp);
175 Int temp; local
227 Int temp; local
268 Int temp; local
304 Int temp; local
785 Int temp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dbasic_op_arm_gcc_v5.h482 Word32 temp; local
488 : "=r"(temp)
495 : "r"(temp), "r"(temp)
/frameworks/support/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DSupportPreferenceDemos.java136 Map<String, Object> temp = new HashMap<>();
137 temp.put("title", name);
138 temp.put("intent", intent);
139 data.add(temp);
/frameworks/support/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/
H A DSupportTransitionDemos.java134 Map<String, Object> temp = new HashMap<>();
135 temp.put("title", name);
136 temp.put("intent", intent);
137 data.add(temp);
/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DSupportPreferenceDemos.java136 Map<String, Object> temp = new HashMap<>();
137 temp.put("title", name);
138 temp.put("intent", intent);
139 data.add(temp);
/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/
H A DSupportTransitionDemos.java134 Map<String, Object> temp = new HashMap<>();
135 temp.put("title", name);
136 temp.put("intent", intent);
137 data.add(temp);
/frameworks/wilhelm/src/
H A Ddevices.cpp231 SLmilliHertz *temp = (SLmilliHertz *) malloc(sizeof(SLmilliHertz) *
233 assert(NULL != temp);
234 memcpy(temp, pDescriptor->pSampleRatesSupported, sizeof(SLmilliHertz) *
236 pDescriptor->pSampleRatesSupported = temp;
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.cpp245 Speech_Encode_FrameState** temp = &s; local
246 GSMEncodeFrameExit((void**)temp);
/frameworks/base/rs/java/android/renderscript/
H A DMatrix2f.java184 float temp = mMat[1];
186 mMat[2] = temp;
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DMatrix2f.java187 float temp = mMat[1];
189 mMat[2] = temp;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp275 int32 temp = pvmp3_get_main_data_size(info, pVars); local
291 fillMainDataBuf(pVars, temp);
312 pVars->frame_start += temp;
566 void fillMainDataBuf(void *pMem, int32 temp) argument
576 if ((offset + temp) < BUFSIZE)
585 if ((offset + temp) < BUFSIZE)
587 pv_memcpy((pVars->mainDataStream.pBuffer + offset), ptr, temp*sizeof(uint8));
588 pVars->mainDataStream.offset += temp;
593 for (int32 nBytes = temp >> 1; nBytes != 0; nBytes--) /* read main data. */
601 if (temp
[all...]

Completed in 932 milliseconds

1234567891011