Searched refs:temp (Results 1 - 25 of 267) sorted by relevance

1234567891011

/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DFO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c45 LVM_FLOAT temp; local
49 temp = pCoef->A1;
50 pBiquadState->coefs[0] = temp;
51 temp = pCoef->A0;
52 pBiquadState->coefs[1] = temp;
53 temp = pCoef->B1;
54 pBiquadState->coefs[2] = temp;
61 LVM_INT16 temp; local
65 temp=pCoef->A1;
66 pBiquadState->coefs[0]=temp;
[all...]
H A DBQ_1I_D16F16Css_TRC_WRA_01_Init.c45 LVM_FLOAT temp; local
48 temp = pCoef->A2;
49 pBiquadState->coefs[0] = temp;
50 temp = pCoef->A1;
51 pBiquadState->coefs[1] = temp;
52 temp = pCoef->A0;
53 pBiquadState->coefs[2] = temp;
54 temp = pCoef->B2;
55 pBiquadState->coefs[3] = temp;
56 temp
64 LVM_INT16 temp; local
[all...]
H A DBQ_1I_D16F32Css_TRC_WRA_01_init.c46 LVM_FLOAT temp; local
50 temp = pCoef->A2;
51 pBiquadState->coefs[0] = temp;
52 temp = pCoef->A1;
53 pBiquadState->coefs[1] = temp;
54 temp = pCoef->A0;
55 pBiquadState->coefs[2] = temp;
56 temp = pCoef->B2;
57 pBiquadState->coefs[3] = temp;
58 temp
66 LVM_INT16 temp; local
[all...]
H A DBQ_2I_D16F16Css_TRC_WRA_01_Init.c46 LVM_FLOAT temp; local
50 temp = pCoef->A2;
51 pBiquadState->coefs[0] = temp;
52 temp = pCoef->A1;
53 pBiquadState->coefs[1] = temp;
54 temp = pCoef->A0;
55 pBiquadState->coefs[2] = temp;
56 temp = pCoef->B2;
57 pBiquadState->coefs[3] = temp;
58 temp
66 LVM_INT16 temp; local
[all...]
H A DBQ_2I_D16F32Css_TRC_WRA_01_init.c45 LVM_FLOAT temp; local
48 temp = pCoef->A2;
49 pBiquadState->coefs[0] = temp;
50 temp = pCoef->A1;
51 pBiquadState->coefs[1] = temp;
52 temp = pCoef->A0;
53 pBiquadState->coefs[2] = temp;
54 temp = pCoef->B2;
55 pBiquadState->coefs[3] = temp;
56 temp
64 LVM_INT16 temp; local
[all...]
H A DBQ_2I_D32F32Cll_TRC_WRA_01_Init.c45 LVM_FLOAT temp; local
48 temp = pCoef->A2;
49 pBiquadState->coefs[0] = temp;
50 temp = pCoef->A1;
51 pBiquadState->coefs[1] = temp;
52 temp = pCoef->A0;
53 pBiquadState->coefs[2] = temp;
54 temp = pCoef->B2;
55 pBiquadState->coefs[3] = temp;
56 temp
64 LVM_INT32 temp; local
[all...]
H A DFO_1I_D16F16Css_TRC_WRA_01_Init.c46 LVM_FLOAT temp; local
49 temp = pCoef->A1;
50 pBiquadState->coefs[0] = temp;
51 temp = pCoef->A0;
52 pBiquadState->coefs[1] = temp;
53 temp = pCoef->B1;
54 pBiquadState->coefs[2] = temp;
61 LVM_INT16 temp; local
65 temp=pCoef->A1;
66 pBiquadState->coefs[0]=temp;
[all...]
H A DFO_1I_D32F32Cll_TRC_WRA_01_Init.c45 LVM_FLOAT temp; local
49 temp = pCoef->A1;
50 pBiquadState->coefs[0] = temp;
51 temp = pCoef->A0;
52 pBiquadState->coefs[1] = temp;
53 temp = pCoef->B1;
54 pBiquadState->coefs[2] = temp;
61 LVM_INT32 temp; local
65 temp=pCoef->A1;
66 pBiquadState->coefs[0]=temp;
[all...]
H A DMSTo2i_Sat_16x16.c33 LVM_INT32 temp,mVal,sVal; local
45 temp = mVal + sVal;
47 if (temp > 0x00007FFF)
51 else if (temp < -0x00008000)
57 *dst = (LVM_INT16)temp;
61 temp = mVal - sVal;
63 if (temp > 0x00007FFF)
67 else if (temp < -0x00008000)
73 *dst = (LVM_INT16)temp;
86 LVM_FLOAT temp,mVa local
[all...]
H A DInt32RShiftToInt16_Sat_32x16.c33 LVM_INT32 temp; local
38 temp = *src >> shift;
41 if (temp > 0x00007FFF)
45 else if (temp < -0x00008000)
51 *dst = (LVM_INT16)temp;
H A DMult3s_32x16.c35 LVM_INT32 srcval,temp; local
42 MUL32x16INTO32(srcval,val,temp,15)
44 *dst = temp;
57 LVM_FLOAT temp; local
61 temp = (*src) * val;
63 *dst = temp;
H A DShift_Sat_v32xv32.c33 LVM_FLOAT temp; local
41 temp = (LVM_FLOAT)*src;
45 temp = temp * 2;
48 if(temp > 1.0)
49 temp = 1.0;
50 if(temp < -1.0)
51 temp = -1.0;
53 *dst = (LVM_FLOAT)temp;
63 temp
[all...]
H A Dmult3s_16x16.c34 LVM_INT32 temp; local
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
41 *dst = (LVM_INT16)(temp >> 15);
H A DShift_Sat_v16xv16.c33 LVM_INT32 temp; local
40 temp = (LVM_INT32)*src;
43 temp = temp << val;
45 if (temp > 0x00007FFF)
49 else if (temp < -0x00008000)
55 *dst = (LVM_INT16)temp;
H A DDelayMix_16x16.c37 LVM_INT16 temp; local
42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1);
43 *dst = temp;
52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1);
53 *dst = temp;
82 LVM_FLOAT temp; local
87 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst + (LVM_FLOAT)delay[Offset]) / 2.0f);
88 *dst = temp;
97 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst - (LVM_FLOAT)delay[Offset]) / 2.0f);
98 *dst = temp;
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_decode_header.cpp121 uint32 temp; local
136 temp = getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
137 if ((temp & SYNC_WORD) != SYNC_WORD)
147 temp = getNbits(inputStream, 21); // to avoid multiple bitstream accesses
150 switch (temp >> 19) /* 2 */
167 info->layer_description = 4 - ((temp << 13) >> 30); /* 2 */
168 info->error_protection = !((temp << 15) >> 31); /* 1 */
173 calculate_crc((temp << 16) >> 16, 16, crc);
176 info->bitrate_index = (temp << 16) >> 28; /* 4 */
177 info->sampling_frequency = (temp << 2
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dl_extract.cpp164 Word32 temp; local
168 temp = (L_var >> 16);
170 *(pL_var_hi) = (Word16) temp;
171 *(pL_var_lo) = (Word16)((L_var >> 1) - (temp << 15));
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
H A DCoordinates.java37 long temp;
38 temp = Double.doubleToLongBits(lat);
39 result = (int) (temp ^ (temp >>> 32));
40 temp = Double.doubleToLongBits(lng);
41 result = 31 * result + (int) (temp ^ (temp >>> 32));
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dget_pred_outside.cpp113 #define PAD_CORNER { temp = *prev; \
114 temp |= (temp<<8); \
115 temp |= (temp<<16); \
116 *((uint32*)ptr) = temp; \
117 *((uint32*)(ptr+4)) = temp; \
118 *((uint32*)(ptr+=16)) = temp; \
119 *((uint32*)(ptr+4)) = temp; \
120 *((uint32*)(ptr+=16)) = temp; \
259 uint32 temp, temp2; local
316 temp = *(prev += 16); local
[all...]
H A Dvlc_dequant.cpp77 int32 temp; local
148 temp = (int32)datablock[k] * qmat[k] * QP;
149 temp = (temp + (0x7 & (temp >> 31))) >> 3;
150 if (temp > 2047) temp = 2047;
151 else if (temp < -2048) temp = -2048;
152 datablock[k] = (int) temp;
402 int32 temp; local
507 int32 temp; local
809 int32 temp; local
1071 int32 temp; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dagc2_amr_wb.cpp128 int16 temp; local
132 temp = sig_out[0] >> 2;
133 s = fxp_mul_16by16(temp, temp) << 1;
136 temp = sig_out[i] >> 2;
137 s = mac_16by16_to_int32(s, temp, temp);
150 temp = sig_in[0] >> 2;
151 s = mul_16by16_to_int32(temp, temp);
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dlsfwt.cpp192 Word16 temp; local
223 temp = wgt_fct - 1843;
225 if (temp > 0)
227 temp = (Word16)(((Word32)temp * 6242) >> 15);
228 wgt_fct = 1843 - temp;
232 temp = (Word16)(((Word32)wgt_fct * 28160) >> 15);
233 wgt_fct = 3427 - temp;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DAverageFilter.java35 private float[] temp = new float[NUM_FRAMES]; field in class:AverageFilter
58 temp[counter] = ((Float)inFrameValue.getValue()).floatValue();
63 float output = (temp[0] + temp[1] + temp[2] + temp[3] + temp[4]) / NUM_FRAMES;
64 if (mLogVerbose) Log.v(TAG, "Avg= " + output + "temp1= " + temp[0] + "temp2= " +
65 temp[1] + "temp3= " + temp[
[all...]
/frameworks/base/obex/javax/obex/
H A DObexPacket.java59 byte[] temp = null;
62 temp = new byte[length - 3];
63 bytesReceived = is.read(temp);
64 while (bytesReceived != temp.length) {
65 bytesReceived += is.read(temp, bytesReceived, temp.length - bytesReceived);
68 newPacket.mPayload = temp;
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dd_plsf_3.cpp173 Word16 temp; local
186 temp =
201 temp,
210 /* temp = mean_lsf[i] + past_r2_q[i] * PRED_FAC; */
212 temp =
218 temp =
221 temp,
227 temp,
236 /* temp = mean_lsf[i] + past_r2_q[i]; */
238 temp
[all...]

Completed in 389 milliseconds

1234567891011