Searched refs:temp (Results 201 - 225 of 267) sorted by relevance

1234567891011

/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DMatrix3f.java311 float temp = mMat[i*3 + j];
313 mMat[j*3 + i] = temp;
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DRGBZ.java203 int temp = (depth_data[i] & 0x000000FF) << 24;
204 v = v | temp;
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp446 uint32_t temp = *inYVU_4++; local
447 uint32_t tempU = temp & 0xFF;
448 tempU = tempU | ((temp >> 8) & 0xFF00);
450 uint32_t tempV = (temp >> 8) & 0xFF;
451 tempV = tempV | ((temp >> 16) & 0xFF00);
/frameworks/base/core/java/android/os/storage/
H A DVolumeInfo.java463 final Parcel temp = Parcel.obtain();
465 writeToParcel(temp, 0);
466 temp.setDataPosition(0);
467 return CREATOR.createFromParcel(temp);
469 temp.recycle();
/frameworks/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/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/bqhelper/
H A DConversion.cpp740 uint8_t temp = 0; local
741 FlattenableUtils::read(buffer, size, temp);
742 size_t index = static_cast<size_t>(temp);
748 FlattenableUtils::read(buffer, size, temp);
749 t->addPostCompositeCalled = static_cast<bool>(temp);
750 FlattenableUtils::read(buffer, size, temp);
751 t->addRetireCalled = static_cast<bool>(temp);
752 FlattenableUtils::read(buffer, size, temp);
753 t->addReleaseCalled = static_cast<bool>(temp);
/frameworks/av/media/libstagefright/
H A DMediaCodecListOverrides.cpp49 // TODO: move MediaCodecInfo to C++. Until then, some temp methods to parse out info.
196 AString temp; local
197 if (!splitString(s, delimiter, s1, &temp)) {
200 if (!splitString(temp, delimiter, s2, s3)) {
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DKernelUidCpuClusterTimeReaderTest.java162 final long[][] temp = increaseTime(times);
164 for (int i = 0; i < temp.length; i++) {
165 times1[i] = Arrays.copyOfRange(temp[i], 0, 4);
/frameworks/base/obex/javax/obex/
H A DClientOperation.java251 Long temp = (Long)mReplyHeader.getHeader(HeaderSet.LENGTH);
253 if (temp == null) {
256 return temp.longValue();
H A DServerOperation.java732 Long temp = (Long)requestHeader.getHeader(HeaderSet.LENGTH);
734 if (temp == null) {
737 return temp.longValue();
/frameworks/wilhelm/tests/examples/
H A DslesTestRecBuffQueue.cpp125 short temp[BUFFER_SIZE_IN_BYTES]; local
126 memcpy_to_i16_from_u8(temp, (const unsigned char *) pCntxt->pDataBase,
128 (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/base/core/java/android/text/format/
H A DTime.java907 Time temp = new Time(this);
908 temp.monthDay += sThursdayOffset[weekDay];
909 temp.normalize(true /* ignore isDst */);
910 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/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.cpp401 bool temp = false; local
402 mPlayer->isPlaying(&temp);
403 ALOGV("isPlaying: %d", temp);
404 if ((mCurrentState & MEDIA_PLAYER_STARTED) && ! temp) {
407 } else if ((mCurrentState & MEDIA_PLAYER_PAUSED) && temp) {
411 return temp;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp1395 Vop *temp; local
1641 temp = video->prevBaseVop;
1644 video->currVop = temp;
1650 temp = video->prevEnhanceVop;
1653 video->currVop = temp;
1875 Vop *temp; local
1959 temp = video->prevBaseVop;
1962 video->currVop = temp;
1968 temp = video->prevEnhanceVop;
1971 video->currVop = temp;
2866 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.java312 View temp = makeRow(pos, nextTop, true);
313 if (temp != null) {
314 selectedView = temp;
412 View temp = makeRow(pos, nextBottom, false);
413 if (temp != null) {
414 selectedView = temp;
573 final View temp = makeRow(mStackFromBottom ? motionRowEnd : motionRowStart, top, true);
609 if (temp != null) {
610 return temp;
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java492 final View temp = createViewFromTag(root, name, inflaterContext, attrs);
504 // Set the layout params for temp if we are not
506 temp.setLayoutParams(params);
514 // Inflate all children under temp against its context.
515 rInflateChildren(parser, temp, attrs, true);
521 // We are supposed to attach all the views we found (int temp)
524 root.addView(temp, params);
530 result = temp;
/frameworks/av/media/libeffects/dynamicsproc/dsp/
H A DDPFrequency.cpp73 //temp vectors
558 float temp = (envDb - thresholdDb + kneeWidthDbHalf); local
560 temp * temp / (kneeWidthDbHalf * 4);
/frameworks/av/media/mtp/
H A DMtpFfsHandle.cpp660 char *temp = new char[me.length]; local
661 memcpy(temp, me.data, me.length);
662 me.data = temp;
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeyCasPlugin.cpp262 unsigned char temp = *(data + i); local
264 *(data + AES_BLOCK_SIZE + i) = temp;
/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl132 void setBatteryState(int status, int health, int plugType, int level, int temp, int volt,

Completed in 2122 milliseconds

1234567891011