Searched refs:temp (Results 176 - 200 of 225) sorted by relevance

123456789

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java324 TreeMap<String, ClassReader> temp = new TreeMap<String, ClassReader>();
339 temp.clear();
340 temp.putAll(new_deps);
341 temp.putAll(new_keep);
347 for (ClassReader cr : temp.values()) {
/frameworks/av/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/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/base/obex/javax/obex/
H A DClientOperation.java231 Long temp = (Long)mReplyHeader.getHeader(HeaderSet.LENGTH);
233 if (temp == null) {
236 return temp.longValue();
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV7/
H A Dsyn_filt_neon.s59 MOV r10, r13 @ temp = y_buf
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s57 temp RN 14 label
179 M_MEDIAN3 CandMV1dx, CandMV2dx, CandMV3dx, temp
184 M_MEDIAN3 CandMV1dy, CandMV2dy, CandMV3dy, temp
H A DarmVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s65 temp RN 5 label
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s57 temp RN 14 label
179 M_MEDIAN3 CandMV1dx, CandMV2dx, CandMV3dx, temp
184 M_MEDIAN3 CandMV1dy, CandMV2dy, CandMV3dy, temp
H A DarmVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s65 temp RN 5 label
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h404 char *temp = mDevice->ops->get_parameters(mDevice); local
405 String8 str_parms(temp);
407 mDevice->ops->put_parameters(mDevice, temp);
409 free(temp);
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java1135 final float[] temp = mTempMatrix;
1136 synchronized(temp) {
1138 if (remapCoordinateSystemImpl(inR, X, Y, temp)) {
1141 outR[i] = temp[i];
/frameworks/base/core/java/android/text/format/
H A DTime.java881 Time temp = new Time(this);
882 temp.monthDay += sThursdayOffset[weekDay];
883 temp.normalize(true /* ignore isDst */);
884 return temp.yearDay / 7 + 1;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java2706 for (final DrawableRecipientChip temp : recipients) {
2708 if (temp != null && RecipientEntry.isCreatedRecipient(
2709 temp.getEntry().getContactId())
2710 && getSpannable().getSpanStart(temp) != -1) {
2713 entries.get(tokenizeAddress(temp.getEntry()
2730 for (final DrawableRecipientChip temp : recipients) {
2731 if (temp != null && RecipientEntry.isCreatedRecipient(
2732 temp.getEntry().getContactId())
2733 && getSpannable().getSpanStart(temp) != -1) {
2735 temp
[all...]
/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/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;
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1843 int temp; local
1861 temp = 1;
1862 pData = (void *)(&temp);
1866 temp = 16000;
1867 pData = (void *)(&temp);
1871 temp = gData->frameType;
1872 pData = (void *)(&temp);
1876 temp = gData->mode;
1877 pData = (void *)(&temp);
/frameworks/base/core/java/android/widget/
H A DGridView.java302 View temp = makeRow(pos, nextTop, true);
303 if (temp != null) {
304 selectedView = temp;
402 View temp = makeRow(pos, nextBottom, false);
403 if (temp != null) {
404 selectedView = temp;
563 final View temp = makeRow(mStackFromBottom ? motionRowEnd : motionRowStart, top, true);
599 if (temp != null) {
600 return temp;
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java482 final View temp = createViewFromTag(root, name, attrs, false);
494 // Set the layout params for temp if we are not
496 temp.setLayoutParams(params);
503 // Inflate all children under temp
504 rInflate(parser, temp, attrs, true, true);
509 // We are supposed to attach all the views we found (int temp)
512 root.addView(temp, params);
518 result = temp;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubInfoRecordUpdater.java397 SubInfoRecord temp = subInfos.get(i);
399 String msisdn = TelephonyManager.getDefault().getLine1NumberForSubscriber(temp.subId);
405 SubscriptionManager._ID + "=" + Long.toString(temp.subId), null);
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1085 size_t temp = frameCount; // temp may be replaced by a revised value of frameCount, local
1094 &temp,
1133 // note that temp is the (possibly revised) value of frameCount
1134 if (temp < frameCount || (frameCount == 0 && temp == 0)) {
1138 ALOGW("Requested frameCount %zu but received frameCount %zu", frameCount, temp);
1140 frameCount = temp;
1656 size_t temp = newPosition; local
1657 mCbf(EVENT_NEW_POS, mUserData, &temp);
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DMediaSource.java320 String temp = String.format("SetSourceRegion: %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f, %.2f",
323 Log.v(TAG, temp);
/frameworks/base/rs/java/android/renderscript/
H A DMatrix4f.java485 float temp = mMat[i*4 + j];
487 mMat[j*4 + i] = temp;
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix4f.java486 float temp = mMat[i*4 + j];
488 mMat[j*4 + i] = temp;

Completed in 855 milliseconds

123456789