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

1234567891011

/frameworks/rs/
H A DrsComponent.cpp269 uint8_t temp = stream->loadU8(); local
270 mNormalized = temp != 0;
/frameworks/av/media/libmedia/
H A DJetPlayer.cpp162 int temp; local
233 if ((temp = mAudioTrack->write(mAudioBuffer, num_output)) < 0) {
234 ALOGE("JetPlayer::render(): Error in writing:%d",temp);
235 return temp;
/frameworks/base/graphics/java/android/graphics/
H A DRectF.java526 float temp = left;
528 right = temp;
531 float temp = top;
533 bottom = temp;
H A DRect.java623 int temp = left;
625 right = temp;
628 int temp = top;
630 bottom = temp;
H A DColorSpace.java2170 long temp;
2171 temp = Double.doubleToLongBits(a);
2172 result = (int) (temp ^ (temp >>> 32));
2173 temp = Double.doubleToLongBits(b);
2174 result = 31 * result + (int) (temp ^ (temp >>> 32));
2175 temp = Double.doubleToLongBits(c);
2176 result = 31 * result + (int) (temp ^ (temp >>> 3
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DCamera2Source.java245 float temp;
247 temp = orientation.floatValue();
249 temp = 90.0f;
251 orientationFrame.setValue(temp);
/frameworks/wilhelm/src/itf/
H A DIPlay.cpp166 SLmillisecond temp; local
169 result = android_audioPlayer_getDuration(thiz, &temp);
172 result = android_Player_getDuration(thiz, &temp);
179 duration = temp;
/frameworks/av/media/extractors/midi/
H A DMidiExtractor.cpp155 EAS_I32 temp; local
165 result = EAS_ParseMetaData(mEasData, mEasHandle, &temp);
178 trackMetadata->setInt64(kKeyDuration, 1000ll * temp); // milli->micro
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dgain_q.cpp502 Word16 temp; local
551 temp =
560 temp,
H A Dp_ol_wgh.cpp598 Word16 temp; local
656 temp = pv_round(t1, pOverflow);
657 t1 = L_msu(t0, temp, 13107, pOverflow);
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_dequantize_sample.cpp302 int32 temp = - global_gain; local
303 if (temp < 32)
305 is[ss] = (tmp >> temp);
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Ddtx_decoder_amr_wb.cpp926 int16 temp, temp1, i, dither_fac, rand_dith; local
945 temp = add_int16(isf[0], mult_int16_r(rand_dith, dither_fac));
948 if (temp < ISF_GAP)
954 isf[0] = temp;
964 temp = add_int16(isf[i], mult_int16_r(rand_dith, dither_fac));
965 temp1 = sub_int16(temp, isf[i - 1]);
974 isf[i] = temp;
/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.cpp103 void *temp = malloc(READ_FRAMES * sfframesize); local
109 count = sf_readf_float(sndfile, (float *) temp, READ_FRAMES);
113 count = sf_readf_int(sndfile, (int *) temp, READ_FRAMES);
117 count = sf_readf_short(sndfile, (short *) temp, READ_FRAMES);
127 const unsigned char *ptr = (unsigned char *) temp;
145 free(temp);
/frameworks/base/core/java/android/util/
H A DBase64.java171 byte[] temp = new byte[decoder.op];
172 System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
173 return temp;
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
H A DImageUtils.java90 BufferedImage temp = new BufferedImage(goldenImage.getWidth(), goldenImage.getHeight(),
92 temp.getGraphics().drawImage(goldenImage, 0, 0, null);
93 goldenImage = temp;
/frameworks/base/core/java/android/text/method/
H A DBaseKeyListener.java428 int temp = selectionEnd;
430 selectionStart = temp;
511 int temp = selectionEnd;
513 selectionStart = temp;
/frameworks/av/media/libaaudio/tests/
H A Dtest_timestamps.cpp206 int64_t temp = sTimestampData.framesTotal; local
208 sTimestampData.framesTotal = temp;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h214 __inline Int m4v_enc_clz(UInt temp) argument
217 register UInt ra = (UInt)temp;
/frameworks/base/media/java/android/mtp/
H A DMtpStorageManager.java923 MtpObject temp = oldObj;
925 temp.setName(obj.getName());
926 temp.setState(obj.getState());
930 obj = temp;
1028 MtpObject temp = oldObj;
1030 temp.setParent(newObj.getParent());
1031 temp.setState(newObj.getState());
1035 newObj = temp;
/frameworks/base/media/jni/audioeffect/
H A Dandroid_media_AudioEffect.cpp741 jobjectArray temp = env->NewObjectArray(totalEffectsCount, fields.clazzDesc, NULL); local
742 if (temp == NULL) {
743 return temp;
789 env->SetObjectArrayElement(temp, returnedEffectsCount++, jdesc);
800 env->SetObjectArrayElement(ret, i, env->GetObjectArrayElement(temp, i));
802 env->DeleteLocalRef(temp);
807 if (temp != NULL) {
808 env->DeleteLocalRef(temp);
/frameworks/base/packages/InputDevices/
H A DAndroid.mk48 # Reset temp vars.
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
H A DUtils.java124 int temp = array[i];
126 array[j] = temp;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java420 float[] temp = mTempMatrix;
421 Matrix.setRotateM(temp, 0, angle, x, y, z);
424 Matrix.multiplyMM(temp, MATRIX_SIZE, matrix, index, temp, 0);
425 System.arraycopy(temp, MATRIX_SIZE, matrix, index, MATRIX_SIZE);
430 float[] temp = mTempMatrix;
433 Matrix.multiplyMM(temp, 0, currentMatrix, index, matrix, offset);
434 System.arraycopy(temp, 0, currentMatrix, index, 16);
/frameworks/base/rs/java/android/renderscript/
H A DMatrix3f.java308 float temp = mMat[i*3 + j];
310 mMat[j*3 + i] = temp;
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraSettings.java180 int temp = max;
182 min = temp;

Completed in 3853 milliseconds

1234567891011