Searched refs:temp (Results 51 - 75 of 267) sorted by relevance

1234567891011

/frameworks/rs/tests/lldb/jni/DebugWaitAttach/jnidebugwaitattach/
H A Dsimple.rs28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Didct_vca.cpp450 int32 x0, x1, x2, x4, x5, temp; local
476 temp = ((x0 + x2) >> 14);
477 CLIP_RESULT(temp)
478 word = word | (temp << 8);
479 temp = ((x0 + x1) >> 14);
480 CLIP_RESULT(temp)
481 word = word | (temp << 16);
482 temp = ((x0 + x5) >> 14);
483 CLIP_RESULT(temp)
484 word = word | (temp << 2
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dint_lpc.cpp443 Word16 temp; local
450 temp = shr(lsp_old[i], 2, pOverflow);
451 temp = sub(lsp_old[i], temp, pOverflow);
454 lsp[i] = add(temp2, temp, pOverflow);
467 temp = shr(lsp_new[i], 1, pOverflow);
469 lsp[i] = add(temp, temp2, pOverflow);
481 temp = shr(lsp_new[i], 2, pOverflow);
482 temp = sub(lsp_new[i], temp, pOverflo
580 Word16 temp; local
[all...]
H A Dq_plsf_5.cpp217 Word16 temp; local
247 temp = (aux1 - ((Word32)wf1_0 * *(p_dico++))) >> 15;
248 dist = ((Word32)temp * temp);
256 temp = (aux2 - ((Word32)wf1_1 * *(p_dico++))) >> 15;
257 dist += ((Word32)temp * temp);
265 temp = (aux3 - ((Word32)wf2_0 * *(p_dico++))) >> 15;
266 dist += ((Word32)temp * temp);
383 Word16 temp; local
[all...]
H A Dlsp_lsf.cpp355 Word16 temp; local
366 temp = *(p_lsp--);
367 while (table[ind] < temp)
375 L_tmp = (Word32)(temp - table[ind]) * slope[ind];
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c762 int32_t temp; local
825 temp = (pReverb->m_nRoomLpfFwd << 15)
827 *pValue16 = Effects_Linear16ToMillibels(temp);
829 ALOGV("get REVERB_PARAM_ROOM_LEVEL %d, gain %d, m_nRoomLpfFwd %d, m_nRoomLpfFbk %d", *pValue16, temp, pReverb->m_nRoomLpfFwd, pReverb->m_nRoomLpfFbk);
843 temp = MULT_EG1_EG1(pReverb->m_nRoomLpfFbk, pReverb->m_nRoomLpfFbk);
844 ALOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 %d", temp);
848 temp = 32767 + temp - temp2;
849 ALOGV("get REVERB_PARAM_ROOM_HF_LEVEL, a1^2 + 2 Cos a1 + 1 %d", temp);
850 temp
1045 int32_t temp; local
1906 int temp; local
[all...]
/frameworks/av/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/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dg_code.cpp241 Word16 temp; local
286 temp = *(p_y2++) >> 1;
287 s += ((Word32) temp * temp) >> 2;
288 temp = *(p_y2++) >> 1;
289 s += ((Word32) temp * temp) >> 2;
H A Dcbsearch.cpp202 Word16 temp; local
287 temp =
296 temp,
319 temp =
328 temp,
345 temp = ((Word32)h[i - T0] * pit_sharpTmp) >> 15;
355 temp,
378 temp =
387 temp,
H A Dqua_gain.cpp217 Word16 temp; local
277 temp = shl(exp_code, 1, pOverflow);
278 temp = add(15, temp, pOverflow);
279 exp_max[2] = add(exp_coeff[2], temp, pOverflow);
283 temp = add(1, exp_code, pOverflow);
284 exp_max[4] = add(exp_coeff[4], temp, pOverflow);
394 temp = sub(10, exp_gcode0, pOverflow);
395 L_tmp = L_shr(L_tmp, temp, pOverflow);
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/core/tests/coretests/src/android/content/pm/
H A DLimitedLengthInputStreamTest.java82 byte[] temp = new byte[TEST_STRING1.length];
89 assertEquals(length, is.read(temp, 0, temp.length));
91 System.arraycopy(temp, 0, actual, 0, length);
94 assertEquals(-1, is.read(temp, 0, temp.length));
122 byte[] temp = new byte[TEST_STRING1.length + 10];
124 assertEquals(TEST_STRING1.length, is.read(temp, 0, TEST_STRING1.length + 10));
127 System.arraycopy(temp, 0, actual, 0, actual.length);
132 byte[] temp
[all...]
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DDelayAllPass_Sat_32x16To32.c40 LVM_INT32 temp; local
46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15)
47 a = temp;
67 MUL32x16INTO32(c, -coeff, temp, 15)
68 a = temp;
H A DMac3s_Sat_32x16.c35 LVM_INT32 srcval,temp, dInVal, dOutVal; local
43 MUL32x16INTO32(srcval,val,temp,15)
46 dOutVal = temp + dInVal;
49 if ((((dOutVal ^ temp) & (dOutVal ^ dInVal)) >> 31)!=0) /* overflow / underflow */
51 if(temp<0)
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dpreemph.cpp246 Word16 temp; local
252 temp = *p1;
266 st->mem_pre = temp;
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/util/
H A DIntArray.java27 int temp[] = new int[mSize + mSize];
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
/frameworks/base/libs/hwui/tests/common/scenes/
H A DMagnifierAnimation.cpp34 SkBitmap temp; variable
35 magnifier->getSkBitmap(&temp);
36 temp.eraseColor(Color::White);
68 SkBitmap temp; variable
69 magnifier->getSkBitmap(&temp);
73 y + magnifier->height(), &temp);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dqpisf_2s.c66 Word32 i, k, temp, min_err, distance; local
87 temp = min_err;
89 temp = vo_L_add(temp, min_err);
91 temp = vo_L_add(temp, min_err);
93 if(temp < distance)
95 distance = temp;
117 temp = min_err;
119 temp
156 Word32 temp, min_err, distance; local
451 Word16 temp, *p_dico; local
498 Word16 temp, *p_dico; local
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.h104 void fillMainDataBuf(void *pMem, int32 temp);
/frameworks/base/libs/hwui/utils/
H A DStringUtils.h46 double temp = d.bytes; local
47 while (temp > 1024 && suffix < 2) {
48 temp /= 1024.0;
51 stream << std::fixed << std::setprecision(2) << temp << SUFFIXES[suffix];
/frameworks/rs/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/
H A DBenchmark.java36 int[] temp;
37 temp = new int[1];
43 aout.copy1DRangeFrom(0, 1, temp);
54 aout.copy1DRangeFrom(0, 1, temp);
/frameworks/base/location/java/android/location/
H A DGeofence.java150 long temp;
151 temp = Double.doubleToLongBits(mLatitude);
152 result = prime * result + (int) (temp ^ (temp >>> 32));
153 temp = Double.doubleToLongBits(mLongitude);
154 result = prime * result + (int) (temp ^ (temp >>> 32));
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java129 byte[] temp = mArray.toByteArray();
132 System.arraycopy(temp, 0, result, 0, size);
133 if (temp.length != size) {
134 mArray.write(temp, size, temp.length - size);
/frameworks/base/core/java/android/os/
H A DFileBridge.java97 final byte[] temp = new byte[8192];
99 while (IoBridge.read(mServer, temp, 0, MSG_LENGTH) == MSG_LENGTH) {
100 final int cmd = Memory.peekInt(temp, 0, ByteOrder.BIG_ENDIAN);
103 int len = Memory.peekInt(temp, 4, ByteOrder.BIG_ENDIAN);
105 int n = IoBridge.read(mServer, temp, 0, Math.min(temp.length, len));
110 IoBridge.write(mTarget, temp, 0, n);
117 IoBridge.write(mServer, temp, 0, MSG_LENGTH);
124 IoBridge.write(mServer, temp, 0, MSG_LENGTH);
/frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/pom/
H A DDependencyVersions.kt64 val temp = currentSet.toMutableMap()
65 temp[forVariable] = newVersion
66 return DependencyVersions(temp)

Completed in 551 milliseconds

1234567891011