Searched refs:temp (Results 51 - 75 of 181) sorted by relevance

12345678

/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DComprehensionTlv.java115 int temp = data[curIndex++] & 0xff;
116 switch (temp) {
131 tag = temp;
139 temp = data[curIndex++] & 0xff;
140 if (temp < 0x80) {
141 length = temp;
142 } else if (temp == 0x81) {
148 } else if (temp == 0x82) {
156 } else if (temp == 0x83) {
/frameworks/base/media/libeffects/lvm/lib/Common/src/
H A DDelayAllPass_Sat_32x16To32.c40 LVM_INT32 temp; local
46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15)
47 a = temp;
67 MUL32x16INTO32(c, -coeff, temp, 15)
68 a = temp;
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dget_adif_header.cpp139 RETURNING( temp )
141 theIDFromFile = (theIDFromFile << (2*LEN_BYTE)) | temp;
154 RETURNING( temp )
156 IF (temp != FALSE) THEN
297 UInt32 temp; local
315 temp = get17_n_lessbits((2 * LEN_BYTE), pInputStream);
317 theIDFromFile = (theIDFromFile << (2 * LEN_BYTE)) | temp;
342 temp =
346 if (temp != FALSE)
H A Dtns_ar_filter.cpp313 Int32 temp; local
386 temp = *p_state++;
387 y0 -= fxp_mul32_Q31(temp, *(p_lpc++)) << shift_up;
409 temp = *p_state++;
410 y0 -= fxp_mul32_Q31(temp, *(p_lpc++)) << shift_up;
/frameworks/base/media/libstagefright/codecs/amrnb/common/src/
H A Dq_plsf_5.cpp217 Word16 temp; local
247 temp = (aux1 - ((Word32)wf1_0 * *(p_dico++))) >> 15;
248 dist = ((Word32)temp * temp);
256 temp = (aux2 - ((Word32)wf1_1 * *(p_dico++))) >> 15;
257 dist += ((Word32)temp * temp);
265 temp = (aux3 - ((Word32)wf2_0 * *(p_dico++))) >> 15;
266 dist += ((Word32)temp * temp);
383 Word16 temp; local
[all...]
H A Dlsp_lsf.cpp355 Word16 temp; local
366 temp = *(p_lsp--);
367 while (table[ind] < temp)
375 L_tmp = (Word32)(temp - table[ind]) * slope[ind];
/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
H A Dpreemph.cpp246 Word16 temp; local
252 temp = *p1;
266 st->mem_pre = temp;
H A Dagc.cpp131 Word16 i, temp;
133 temp = shr (in[0], 2);
134 s = L_mult (temp, temp);
138 temp = shr (in[i], 2);
139 s = L_mac (s, temp, temp);
177 Word16 temp; local
181 temp = in[i] >> 2;
182 s = L_mac(s, temp, tem
756 Word16 temp; local
978 Word16 temp; local
[all...]
H A Dd_gain_c.cpp206 Word16 temp; local
226 temp = sub((Word16)mode, (Word16)MR122, pOverflow);
227 if (temp == 0)
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp101 unsigned temp; local
147 if (sscanf(line, "Size: %d kB", &temp) == 1) {
148 size = temp;
149 } else if (sscanf(line, "Rss: %d kB", &temp) == 1) {
150 resident = temp;
151 } else if (sscanf(line, "Pss: %d kB", &temp) == 1) {
152 pss = temp;
153 } else if (sscanf(line, "Shared_Clean: %d kB", &temp) == 1) {
154 shared_clean = temp;
155 } else if (sscanf(line, "Shared_Dirty: %d kB", &temp)
[all...]
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Dqpisf_2s.c66 Word32 i, k, temp, min_err, distance; local
87 temp = min_err;
89 temp = vo_L_add(temp, min_err);
91 temp = vo_L_add(temp, min_err);
93 if(temp < distance)
95 distance = temp;
117 temp = min_err;
119 temp
156 Word32 temp, min_err, distance; local
451 Word16 temp, *p_dico; local
498 Word16 temp, *p_dico; local
[all...]
/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.h104 void fillMainDataBuf(void *pMem, int32 temp);
/frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
H A DLVPSA_Process.c233 LVM_INT32 temp; local
235 temp = (LVM_INT32)(LVPSA_MAXUNSIGNEDCHAR - pLVPSA_Inst->pPreviousPeaks[ii]);
236 temp = ((temp * LVPSA_MAXLEVELDECAYFACTOR)>>LVPSA_MAXLEVELDECAYSHIFT);
238 if(temp == (LVPSA_MAXUNSIGNEDCHAR - pLVPSA_Inst->pPreviousPeaks[ii]))
240 temp += 1;
243 temp = (temp > LVPSA_MAXUNSIGNEDCHAR) ? LVPSA_MAXUNSIGNEDCHAR : temp;
245 pLVPSA_Inst->pPreviousPeaks[ii] = (LVM_UINT8)(LVPSA_MAXUNSIGNEDCHAR - temp);
[all...]
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dintra_est.cpp42 int temp, SBE, offset; local
60 temp = *topL++ - orgY[j];
61 SBE += ((temp >= 0) ? temp : -temp);
62 temp = *(leftL += picPitch) - *(orgY_2 += orgPitch);
63 SBE += ((temp >= 0) ? temp : -temp);
76 temp
728 uint32 temp, DC; local
2012 int component, SubBlock_indx, temp; local
[all...]
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java132 byte[] temp = mArray.toByteArray();
135 System.arraycopy(temp, 0, result, 0, size);
136 if (temp.length != size) {
137 mArray.write(temp, size, temp.length - size);
H A DPrivateInputStream.java150 byte[] temp = new byte[length];
152 System.arraycopy(mData, mIndex, temp, 0, mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
155 mData = temp;
H A DObexHelper.java234 Calendar temp = Calendar.getInstance();
237 temp.setTimeZone(TimeZone.getTimeZone("UTC"));
239 temp.set(Calendar.YEAR, Integer.parseInt(dateString.substring(
241 temp.set(Calendar.MONTH, Integer.parseInt(dateString.substring(
243 temp.set(Calendar.DAY_OF_MONTH, Integer.parseInt(dateString
245 temp.set(Calendar.HOUR_OF_DAY, Integer.parseInt(dateString
247 temp.set(Calendar.MINUTE, Integer.parseInt(dateString
249 temp.set(Calendar.SECOND, Integer.parseInt(dateString
251 headerImpl.setHeader(HeaderSet.TIME_ISO_8601, temp);
304 Calendar temp
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dqua_gain.cpp217 Word16 temp; local
277 temp = shl(exp_code, 1, pOverflow);
278 temp = add(15, temp, pOverflow);
279 exp_max[2] = add(exp_coeff[2], temp, pOverflow);
283 temp = add(1, exp_code, pOverflow);
284 exp_max[4] = add(exp_coeff[4], temp, pOverflow);
394 temp = sub(10, exp_gcode0, pOverflow);
395 L_tmp = L_shr(L_tmp, temp, pOverflow);
H A Dpitch_fr.cpp337 Word16 temp; local
354 temp = *(p_excf++);
355 *(p_s_excf++) = temp >> 2;
356 s += (Word32) temp * temp;
357 temp = *(p_excf++);
358 *(p_s_excf++) = temp >> 2;
359 s += (Word32) temp * temp;
415 temp
730 Word16 temp; local
[all...]
H A Dc1035pf.cpp412 Word16 temp; local
454 temp = *p1;
456 if (temp < 0)
462 if (((index ^ temp) & 8) == 0)
467 if (temp <= index)
473 *(p1 + 5) = temp;
482 if ((temp & 7) <= (index & 7))
484 *(p1 + 5) = temp;
H A Dspstproc.cpp194 Word16 temp; local
293 * temp Q0 Q0
305 temp = (Word16)(L_temp >> 14);
308 temp += (Word16)(L_temp >> kShift);
310 mem_w0[j] = xn[i] - temp;
/frameworks/base/media/libstagefright/codecs/avc/common/src/
H A Dreflist.cpp410 AVCPictureData *temp; local
418 temp = data[j];
420 data[i] = temp;
432 AVCPictureData *temp; local
440 temp = data[j];
442 data[i] = temp;
455 AVCFrameStore *temp; local
463 temp = data[j];
465 data[i] = temp;
477 AVCFrameStore *temp; local
499 AVCPictureData *temp; local
538 AVCPictureData *temp; local
560 AVCFrameStore *temp; local
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DJournaledFile.java27 public JournaledFile(File real, File temp) { argument
29 mTemp = temp;
34 * Prefers the real file. If it doesn't exist, uses the temp one, and then copies
35 * it to the real one. If there is both a real file and a temp one, assumes that the
36 * temp one isn't fully written and deletes it.
69 // trust anything that's in temp. In order to have the chooseForRead code not
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dtns.c98 Word32 temp, shift; local
105 temp = lineNumber - bandStartOffset[numOfBands] ;
106 if (temp >= 0)
111 temp = bandStartOffset[band + 1] - lineNumber;
112 if (temp > 0) break;
115 temp = (lineNumber - bandStartOffset[band]);
116 temp = (temp - (bandStartOffset[band + 1] - lineNumber));
117 if ( temp > 0 )
277 Word32 temp; local
363 Word32 i, temp; local
402 Word32 temp; local
722 Word32 temp, workBuffer0; local
761 Word32 temp; local
776 Word32 temp; local
790 Word32 temp; local
814 Word32 temp; local
839 Word32 temp; local
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/
H A Dmult.h133 Word32 temp = 0x7FFF; local
147 : "r"(temp)
151 : "r"(temp)

Completed in 285 milliseconds

12345678