Searched defs:temp (Results 126 - 150 of 167) sorted by relevance

1234567

/frameworks/base/libs/utils/
H A DThreads.cpp75 int temp; local
76 if (sscanf(buf, "%d", &temp) == 1) {
77 gDoSchedulingGroup = temp == 0;
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dpsy_configuration.c124 Word32 center_freq, temp, bvalFFTLine; local
128 temp = atan_1000((center_freq << 2) / (3*10));
130 (26600 * atan_1000((center_freq*76) / 100) + 7*temp*temp) / (2*1000*1000 / BARC_SCALE);
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/src/
H A Dvad1.cpp757 Word16 temp; local
821 temp = shr(num, 1, pOverflow);
822 temp = div_s(temp, denom);
824 stat_rat = add(stat_rat, shr(temp, sub(8, exp, pOverflow), pOverflow), pOverflow);
858 temp = sub(level[i], st->ave_level[i], pOverflow);
859 temp = mult_r(alpha, temp, pOverflow);
864 temp,
1146 Word16 temp; local
1489 Word16 temp; local
2006 Word16 temp; local
2184 Word16 temp; local
[all...]
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
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...]
/frameworks/base/media/libstagefright/codecs/avc/enc/
H A DAVCEncoder.cpp126 uint32_t temp = *inyuv_4++; local
127 uint32_t tempU = temp & 0xFF;
128 tempU = tempU | ((temp >> 8) & 0xFF00);
130 uint32_t tempV = (temp >> 8) & 0xFF;
131 tempV = tempV | ((temp >> 16) & 0xFF00);
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c412 OMX_U8 temp; local
417 temp = *(pBuf1 + i);
419 *(pBuf2 + i) = temp;
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c412 OMX_U8 temp; local
417 temp = *(pBuf1 + i);
419 *(pBuf2 + i) = temp;
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c412 OMX_U8 temp; local
417 temp = *(pBuf1 + i);
419 *(pBuf2 + i) = temp;
/frameworks/base/services/input/
H A DPointerController.cpp340 float temp; local
345 temp = x;
347 y = temp;
354 temp = x;
356 y = mLocked.displayHeight - temp;
363 temp = x;
365 y = mLocked.displayWidth - temp;
372 temp = x;
374 y = temp;
/frameworks/media/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp684 sp<VideoEditorPlayer> temp = mVePlayer[playerInst]; local
685 temp->acquireLock();
689 temp->releaseLock();
842 int32_t temp = pFrameStr->uiFrameWidth; local
844 pFrameStr->uiFrameHeight = temp;
/frameworks/media/libvideoeditor/vss/src/
H A DM4VSS3GPP_AudioMixing.c3519 M4OSA_Int32 temp; local
3534 temp = -( *pPCMdata1)
3537 if( temp > 32767 )
3543 *pPCMdata1 = (M4OSA_Int16)(-temp);
3548 temp = ( *pPCMdata1)
3551 if( temp > 32768 )
3557 *pPCMdata1 = (M4OSA_Int16)temp;
H A DM4VSS3GPP_Edit.c2243 M4SYS_StreamIDValue temp; local
2406 temp.streamID = M4VSS3GPP_WRITER_VIDEO_STREAM_ID;
2407 temp.value = pC_ewc->uiVideoMaxAuSize;
2410 (M4OSA_DataOption) &temp);
2423 temp.streamID = M4VSS3GPP_WRITER_VIDEO_STREAM_ID;
2424 temp.value = (M4OSA_UInt32)(pC_ewc->uiVideoMaxAuSize \
2430 (M4OSA_DataOption) &temp);
2543 temp.streamID = M4VSS3GPP_WRITER_AUDIO_STREAM_ID;
2544 temp.value = pC_ewc->uiAudioMaxAuSize;
2547 (M4OSA_DataOption) &temp);
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteDatabase.cpp547 char temp[21]; local
548 sprintf(temp, "error code %d", errcode);
549 throw_sqlite3_exception(env, errcode, temp, message);
H A Dandroid_os_Debug.cpp127 unsigned temp; local
196 if (sscanf(line, "Size: %d kB", &temp) == 1) {
197 size = temp;
198 } else if (sscanf(line, "Rss: %d kB", &temp) == 1) {
199 resident = temp;
200 } else if (sscanf(line, "Pss: %d kB", &temp) == 1) {
201 pss = temp;
202 } else if (sscanf(line, "Shared_Clean: %d kB", &temp) == 1) {
203 shared_clean = temp;
204 } else if (sscanf(line, "Shared_Dirty: %d kB", &temp)
286 unsigned temp; local
[all...]
H A Dandroid_server_BluetoothEventLoop.cpp585 struct pollfd *temp = (struct pollfd *)malloc( local
587 if (!temp) {
590 memcpy(temp, nat->pollData, sizeof(struct pollfd) *
593 nat->pollData = temp;
/frameworks/base/drm/drmserver/
H A DDrmManager.cpp55 int temp = 0; local
63 temp = rand() & uniqueIdRange;
68 temp |= 0x1000;
73 if (mUniqueIdVector.itemAt(index) == temp) {
86 mUniqueIdVector.push(temp);
87 return temp;
/frameworks/base/media/libmedia/
H A Dmediaplayer.cpp347 bool temp = false; local
348 mPlayer->isPlaying(&temp);
349 LOGV("isPlaying: %d", temp);
350 if ((mCurrentState & MEDIA_PLAYER_STARTED) && ! temp) {
354 return temp;
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1455 #define PAD_CORNER { temp = *src; \
1456 temp |= (temp<<8); \
1457 temp |= (temp<<16); \
1458 *((ULong*)dst) = temp; \
1459 *((ULong*)(dst+4)) = temp; \
1460 *((ULong*)(dst+=lx)) = temp; \
1461 *((ULong*)(dst+4)) = temp; \
1462 *((ULong*)(dst+=lx)) = temp; \
1525 ULong temp, temp2; local
1559 temp = *(src += lx); local
1677 temp = *(src += lx); local
1722 ULong temp; local
1769 ULong temp; local
1802 ULong temp; local
1869 ULong temp; local
[all...]
/frameworks/base/services/camera/libcameraservice/
H A DFakeCamera.cpp221 uint32_t temp; local
238 temp = (BETA*(pixels & 0x001F) + ALPHA*(pixels>>11) );
239 y0 = y_tab[(temp>>SHIFT1) + ((pixels>>3) & 0x00FC)];
246 temp = (BETA*(pixels & 0x001F) + ALPHA*(pixels>>11) );
247 y1 = y_tab[(temp>>SHIFT1) + ((pixels>>3) & 0x00FC)];
/frameworks/base/services/java/com/android/server/am/
H A DBatteryStatsService.java432 int temp, int volt) {
434 mStats.setBatteryState(status, health, plugType, level, temp, volt);
431 setBatteryState(int status, int health, int plugType, int level, int temp, int volt) argument
/frameworks/base/core/java/android/text/
H A DTextUtils.java96 char[] temp = obtain(INDEX_INCREMENT);
103 getChars(s, start, segend, temp, 0);
107 if (temp[i] == ch) {
108 recycle(temp);
116 recycle(temp);
154 char[] temp = obtain(INDEX_INCREMENT);
161 getChars(s, segstart, end, temp, 0);
165 if (temp[i] == ch) {
166 recycle(temp);
174 recycle(temp);
1298 recycle(char[] temp) argument
[all...]
/frameworks/base/media/libeffects/testlibs/
H A DEffectReverb.c748 int32_t temp; local
811 temp = (pReverb->m_nRoomLpfFwd << 15)
813 *pValue16 = Effects_Linear16ToMillibels(temp);
815 LOGV("get REVERB_PARAM_ROOM_LEVEL %d, gain %d, m_nRoomLpfFwd %d, m_nRoomLpfFbk %d", *pValue16, temp, pReverb->m_nRoomLpfFwd, pReverb->m_nRoomLpfFbk);
829 temp = MULT_EG1_EG1(pReverb->m_nRoomLpfFbk, pReverb->m_nRoomLpfFbk);
830 LOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 %d", temp);
834 temp = 32767 + temp - temp2;
835 LOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 + 2 Cos a1 + 1 %d", temp);
836 temp
1031 int32_t temp; local
1892 int temp; local
[all...]
/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/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp1659 uint32 temp; local
1668 temp = *in++;
1670 temp |= (byte << 8);
1672 temp |= (byte << 16);
1674 temp |= (byte << 24);
1676 *((uint32*)out) = temp; /* write 4 bytes */
1689 temp = *((uint32*)in);
1690 *((uint32*)out) = temp;
1841 uint8 temp[288]; local
1848 out = temp;
2027 int32 temp[9]; local
2070 int i, temp, temp0, temp1; local
2121 uint16 temp; local
[all...]

Completed in 5819 milliseconds

1234567