Searched refs:temp (Results 151 - 175 of 181) sorted by relevance

12345678

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java136 // temp array for pairs
473 float[] temp = new float[32];
474 setRotateM(temp, 0, a, x, y, z);
475 multiplyMM(temp, 16, m, mOffset, temp, 0);
476 System.arraycopy(temp, 16, m, mOffset, 16);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java278 TreeMap<String, ClassReader> temp = new TreeMap<String, ClassReader>();
292 temp.clear();
293 temp.putAll(new_deps);
294 temp.putAll(new_keep);
300 for (ClassReader cr : temp.values()) {
/frameworks/base/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/base/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/base/core/java/android/widget/
H A DGridView.java221 View temp = makeRow(pos, nextTop, true);
222 if (temp != null) {
223 selectedView = temp;
306 View temp = makeRow(pos, nextBottom, false);
307 if (temp != null) {
308 selectedView = temp;
466 final View temp = makeRow(mStackFromBottom ? motionRowEnd : motionRowStart, top, true);
502 if (temp != null) {
503 return temp;
H A DListView.java1290 View temp = makeAndAddView(position, top, true, mListPadding.left, tempIsSelected);
1299 above = fillUp(position - 1, temp.getTop() - dividerHeight);
1302 below = fillDown(position + 1, temp.getBottom() + dividerHeight);
1308 below = fillDown(position + 1, temp.getBottom() + dividerHeight);
1311 above = fillUp(position - 1, temp.getTop() - dividerHeight);
1319 return temp;
/frameworks/base/libs/utils/
H A DThreads.cpp75 int temp; local
76 if (sscanf(buf, "%d", &temp) == 1) {
77 gDoSchedulingGroup = temp == 0;
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java405 char[] temp = new char[1024];
407 while ((size = br.read(temp)) > 0) {
408 bw.write(temp, 0, size);
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A Dsyn_filt_neon.s59 MOV r10, r13 @ temp = y_buf
/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp284 int32 temp = history[i]; local
288 out[i] = temp;
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java393 int temp, int volt) {
395 mStats.setBatteryState(status, health, plugType, level, temp, volt);
392 setBatteryState(int status, int health, int plugType, int level, int temp, int volt) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp1366 Vop *temp; local
1612 temp = video->prevBaseVop;
1615 video->currVop = temp;
1621 temp = video->prevEnhanceVop;
1624 video->currVop = temp;
1846 Vop *temp; local
1930 temp = video->prevBaseVop;
1933 video->currVop = temp;
1939 temp = video->prevEnhanceVop;
1942 video->currVop = temp;
2837 UInt temp; local
[all...]
H A Dfastquant.cpp162 Int *temp; local
174 temp = (Int*) bitmapcol;
175 temp[0] = temp[1] = 0;
H A Dmotion_est.cpp654 double temp[15]; local
662 temp[i] = 1 / exp_lamda[i] * M4VENC_LOG(2 * pf);
664 temp[i] = -1 / exp_lamda[i] * M4VENC_LOG(2 * (1 - pf));
669 nrmlz_th[i] = (Int)(temp[i] * ((i + 1) << 4) + 0.5);
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1839 int temp; local
1857 temp = 1;
1858 pData = (void *)(&temp);
1862 temp = 16000;
1863 pData = (void *)(&temp);
1867 temp = gData->frameType;
1868 pData = (void *)(&temp);
1872 temp = gData->mode;
1873 pData = (void *)(&temp);
/frameworks/base/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp261 int64_t temp; local
262 if (safe_strtoi64(s, &temp)) {
263 if (temp >= 0 && temp <= 0x007FFFFFFF) {
264 *val = static_cast<int32_t>(temp);
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteDatabase.cpp509 char temp[21]; local
510 sprintf(temp, "error code %d", errcode);
511 throw_sqlite3_exception(env, errcode, temp, message);
H A Dandroid_server_BluetoothEventLoop.cpp494 struct pollfd *temp = (struct pollfd *)malloc( local
496 if (!temp) {
499 memcpy(temp, nat->pollData, sizeof(struct pollfd) *
502 nat->pollData = temp;
/frameworks/base/libs/surfaceflinger_client/
H A DSharedBufferStack.cpp546 BufferList temp(mBufferList);
547 temp.remove(buffer);
548 uint32_t mask = temp.getMask();
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Davcdec_api.cpp529 AVCNalUnitType temp = video->nal_unit_type; local
532 video->nal_unit_type = temp;
554 AVCNalUnitType temp = video->nal_unit_type; local
577 video->nal_unit_type = temp;
/frameworks/base/core/tests/coretests/src/android/os/
H A DPerformanceCollectorTest.java381 for (int i = 0, temp = 0; i < 50; i++ ) {
382 temp += i;
/frameworks/base/services/surfaceflinger/
H A DLayerBuffer.cpp646 const Layer::State& temp(mLayer.currentState());
647 if (temp.sequence != front.sequence) {
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java1463 final float[] temp = mTempMatrix;
1464 synchronized(temp) {
1466 if (remapCoordinateSystemImpl(inR, X, Y, temp)) {
1469 outR[i] = temp[i];
/frameworks/base/libs/ui/
H A DInputReader.cpp56 T temp = a; local
58 b = temp;
1190 float temp; local
1193 temp = pointerCoords.x;
1195 pointerCoords.y = - temp;
1204 temp = pointerCoords.x;
1206 pointerCoords.y = temp;
2072 TouchData temp; local
2075 temp.copyFrom(mCurrentTouch);
2076 savedTouch = & temp;
[all...]
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java548 long temp = mRelCpuSpeedTimes[i];
550 mCpuSpeedTimes[i] = temp;

Completed in 700 milliseconds

12345678