Searched refs:temp1 (Results 1 - 25 of 118) sorted by relevance

12345

/external/libvpx/libvpx/test/
H A Ddct16x16_test.cc85 double temp1, temp2; local
115 temp1 = step[ 8] * C7;
117 output[ 8] = temp1 + temp2;
119 temp1 = step[ 9] * C11;
121 output[ 9] = temp1 - temp2;
123 temp1 = step[10] * C3;
125 output[10] = temp1 + temp2;
127 temp1 = step[11] * C15;
129 output[11] = temp1 - temp2;
131 temp1
[all...]
H A Dvp8_fdct4x4_test.cc41 const int temp1 = (ip[4] * sinpi8sqrt2) >> 16; local
43 const int c1 = temp1 - temp2;
59 const int temp1 = (ip[1] * sinpi8sqrt2) >> 16; local
61 const int c1 = temp1 - temp2;
/external/chromium_org/third_party/sqlite/src/
H A Dmkdll.sh27 $NM tclsqlite3.o | grep ' T ' >temp1
28 grep '_Init$' temp1 >temp2
29 grep '_SafeInit$' temp1 >>temp2
30 grep ' T _sqlite3_' temp1 >>temp2
40 $NM sqlite3.o | grep ' T ' >temp1
42 grep ' _sqlite3_' temp1 | sed 's/^.* _//' >>sqlite3.def
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c101 int temp1, temp2; local
103 temp1 = (input[0] + input[2]) * cospi_16_64;
105 step[0] = dct_const_round_shift(temp1);
107 temp1 = input[1] * cospi_24_64 - input[3] * cospi_8_64;
109 step[2] = dct_const_round_shift(temp1);
161 int temp1, temp2; local
167 temp1 = input[1] * cospi_28_64 - input[7] * cospi_4_64;
169 step1[4] = dct_const_round_shift(temp1);
171 temp1 = input[5] * cospi_12_64 - input[3] * cospi_20_64;
173 step1[5] = dct_const_round_shift(temp1);
451 int temp1, temp2; local
883 int temp1, temp2; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c38 int temp1, temp2; local
46 temp1 = (ip[4] * sinpi8sqrt2) >> 16;
48 c1 = temp1 - temp2;
50 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16);
52 d1 = temp1 + temp2;
72 temp1 = (ip[1] * sinpi8sqrt2) >> 16;
74 c1 = temp1 - temp2;
76 temp1 = ip[1] + ((ip[1] * cospi8sqrt2minus1) >> 16);
78 d1 = temp1 + temp2;
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didctllm_dspr2.c51 int temp1, temp2; local
65 temp1 = (ip[4] * sinpi8sqrt2) >> 16;
67 c1 = temp1 - temp2;
69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16);
71 d1 = temp1 + temp2;
97 temp1 = (ip[6] * sinpi8sqrt2) >> 16;
99 c1 = temp1 - temp2;
101 temp1 = ip[6] + ((ip[6] * cospi8sqrt2minus1) >> 16);
103 d1 = temp1 + temp2;
135 temp1
[all...]
/external/chromium_org/ui/gfx/
H A Dcolor_utils.cc29 int calcHue(double temp1, double temp2, double hue) { argument
35 double result = temp1;
37 result = temp1 + (temp2 - temp1) * hue * 6.0;
41 result = temp1 + (temp2 - temp1) * (2.0 / 3.0 - hue) * 6.0;
147 double temp1 = 2.0 * lightness - temp2; local
149 calcHue(temp1, temp2, hue + 1.0 / 3.0),
150 calcHue(temp1, temp2, hue),
151 calcHue(temp1, temp
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DSweepSphere.java52 private final Vector3f temp1 = new Vector3f(), field in class:SweepSphere
97 temp1.set(line2).subtractLocal(line1);
98 temp3.set(temp1);
100 temp1.crossLocal(temp2);
106 return temp1.dot(temp3) >= 0;
150 temp1.set(sCenter).subtractLocal(vertex);
152 float b = 2f * sVelocity.dot(temp1);
153 float c = temp1.negateLocal().lengthSquared() - 1f;
174 Vector3f edge = temp1.set(l2).subtractLocal(l1);
360 temp1
[all...]
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_short_idct32x32_add_neon.asm287 ;temp1 = input[1 * 32] * cospi_31_64 - input[31 * 32] * cospi_1_64;
289 ;step1b[16][i] = dct_const_round_shift(temp1);
295 ;temp1 = input[17 * 32] * cospi_15_64 - input[15 * 32] * cospi_17_64;
297 ;step1b[17][i] = dct_const_round_shift(temp1);
313 ;temp1 = step1b[30][i] * cospi_28_64 - step1b[17][i] * cospi_4_64;
315 ;step3[17] = dct_const_round_shift(temp1);
322 ;temp1 = input[9 * 32] * cospi_23_64 - input[23 * 32] * cospi_9_64;
324 ;step1b[18][i] = dct_const_round_shift(temp1);
330 ;temp1 = input[25 * 32] * cospi_7_64 - input[7 * 32] * cospi_25_64;
332 ;step1b[19][i] = dct_const_round_shift(temp1);
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dlattice.c35 int n,k,i,u,temp1; local
47 temp1 = u*ord_1;
49 memcpy(a+1, filtcoeflo+temp1+1, sizeof(double) * (ord_1-1));
55 gain1 = (float)filtcoeflo[temp1];
116 int n,k,i,u,temp1; local
127 temp1 = u*ord_1;
130 memcpy(a+1, lo_filt_coef+temp1+1, sizeof(double) * (ord_1-1));
134 gain1 = (float)lo_filt_coef[temp1];
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc78 Register temp1 = r4; local
87 __ Push(temp3, temp2, temp1);
90 temp1, temp2, temp3);
91 __ Pop(temp3, temp2, temp1);
133 Register temp1 = r3;
234 __ bic(temp1, chars, Operand(0x3), SetCC);
236 __ ldr(temp1, MemOperand(src, 4, PostIndex));
237 __ str(temp1, MemOperand(dest, 4, PostIndex));
247 __ ldr(temp1, MemOperand(src, 4, PostIndex));
248 __ str(temp1, MemOperan
759 EmitMathExp(MacroAssembler* masm, DwVfpRegister input, DwVfpRegister result, DwVfpRegister double_scratch1, DwVfpRegister double_scratch2, Register temp1, Register temp2, Register temp3) argument
[all...]
H A Dcodegen-arm.h105 Register temp1,
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice.c121 int32_t temp1 = WEBRTC_SPL_MUL_16_16(u, HALF_SUBFRAMELEN); local
150 fQ15vec[i] = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)lat_inQ0[i + temp1], 15); //Q15
151 gQ15[0][i] = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)lat_inQ0[i + temp1], 15); //Q15
196 lat_outQ9[n + temp1] = t16a;
244 int32_t temp1 = WEBRTC_SPL_MUL_16_16(u, HALF_SUBFRAMELEN); local
278 tmp32 = WEBRTC_SPL_LSHIFT_W32(lat_inQ25[i + temp1], 1); //Q25->Q26
301 lat_outQ0[n + temp1] = ARfQ0vec[n];
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DCombinerHeightMap.java241 float[] temp1 = map1.getHeightMap();
249 (int) (temp1[i + (j * size)] * factor1
257 (int) (temp1[i + (j * size)] * factor1
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnumtst.c143 UChar temp1[512]; local
252 u_uastrcpy(temp1, "$100,000,000.00");
273 if(u_strcmp(result, temp1)==0)
287 u_uastrcpy(temp1, "($10,456.37)");
305 if(result && u_strcmp(result, temp1)==0)
343 u_uastrcpy(temp1, "Y1,235");
344 temp1[0] = 0xA5; /* Yen sign */
358 if (result && u_strcmp(result, temp1)==0) {
398 u_uastrcpy(temp1, "$462.12345");
399 resultlength=u_strlen(temp1);
1046 char temp1[128]; local
1081 UChar temp1[512]; local
1195 UChar temp1[512]; local
[all...]
/external/libgsm/src/
H A Drpe.c126 /* register word temp1; */
143 * temp1 = SASR( x[m + 3*i], 2 );
145 * assert(temp1 != MIN_WORD);
147 * L_temp = GSM_L_MULT( temp1, temp1 );
267 word xmax, xmaxc, temp, temp1, temp2; local
326 temp1 = 6 - exp; /* normalization by the exponent */
331 assert(temp1 >= 0 && temp1 < 16);
333 temp = xM[i] << temp1;
361 word temp, temp1, temp2, temp3; local
[all...]
H A Dshort_term.c27 register word temp1 /* , temp2 */; local
42 * temp1 = GSM_ADD( *LARc, *MIC ) << 10;
44 * temp1 = GSM_SUB( temp1, temp2 );
48 * temp1 = GSM_MULT_R( *INVA, temp1 );
49 * *LARpp = GSM_ADD( temp1, temp1 );
55 temp1 = GSM_ADD( *LARc++, MIC ) << 10; \
56 temp1
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c153 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
164 ureg_DP3(ureg, temp1, matrow0, ureg_src(temp0));
168 ureg_MUL(ureg, temp1, ureg_src(temp1), ureg_src(temp3));
171 ureg_MOV(ureg, ureg_writemask(temp4, TGSI_WRITEMASK_X), ureg_src(temp1));
177 ureg_MAD(ureg, temp1,
181 ureg_MUL(ureg, temp2, ureg_src(temp1), ureg_scalar(coords, TGSI_SWIZZLE_Z));
186 ureg_release_temporary(ureg, temp1);
204 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
215 ureg_DP3(ureg, temp1, matrow
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c131 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
143 ureg_DP3(ureg, temp1, matrow0, ureg_src(temp0));
147 ureg_MUL(ureg, temp1, ureg_src(temp1), ureg_src(temp3));
151 ureg_src(temp1));
158 ureg_MAD(ureg, temp1,
164 ureg_src(temp1),
171 ureg_release_temporary(ureg, temp1);
191 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
204 ureg_DP3(ureg, temp1, matrow
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c153 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
164 ureg_DP3(ureg, temp1, matrow0, ureg_src(temp0));
168 ureg_MUL(ureg, temp1, ureg_src(temp1), ureg_src(temp3));
171 ureg_MOV(ureg, ureg_writemask(temp4, TGSI_WRITEMASK_X), ureg_src(temp1));
177 ureg_MAD(ureg, temp1,
181 ureg_MUL(ureg, temp2, ureg_src(temp1), ureg_scalar(coords, TGSI_SWIZZLE_Z));
186 ureg_release_temporary(ureg, temp1);
204 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
215 ureg_DP3(ureg, temp1, matrow
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c131 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
143 ureg_DP3(ureg, temp1, matrow0, ureg_src(temp0));
147 ureg_MUL(ureg, temp1, ureg_src(temp1), ureg_src(temp3));
151 ureg_src(temp1));
158 ureg_MAD(ureg, temp1,
164 ureg_src(temp1),
171 ureg_release_temporary(ureg, temp1);
191 struct ureg_dst temp1 = ureg_DECL_temporary(ureg); local
204 ureg_DP3(ureg, temp1, matrow
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DColor.cpp81 static double calcHue(double temp1, double temp2, double hueVal) argument
88 return temp1 + (temp2 - temp1) * hueVal * 6.0;
92 return temp1 + (temp2 - temp1) * (2.0 / 3.0 - hueVal) * 6.0;
93 return temp1;
111 double temp1 = 2.0 * lightness - temp2;
113 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
114 static_cast<int>(calcHue(temp1, temp2, hue) * scaleFactor),
115 static_cast<int>(calcHue(temp1, temp
[all...]
/external/icu4c/test/cintltst/
H A Dcnumtst.c126 UChar temp1[512]; local
235 u_uastrcpy(temp1, "$100,000,000.00");
256 if(u_strcmp(result, temp1)==0)
270 u_uastrcpy(temp1, "($10,456.37)");
288 if(result && u_strcmp(result, temp1)==0)
323 u_uastrcpy(temp1, "Y1,235");
324 temp1[0] = 0xA5; /* Yen sign */
338 if (result && u_strcmp(result, temp1)==0) {
379 u_uastrcpy(temp1, "$462.12345");
380 resultlength=u_strlen(temp1);
1207 char temp1[128]; local
1242 UChar temp1[512]; local
1356 UChar temp1[512]; local
1950 char temp1[256]; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c22 int temp1, temp2; local
29 temp1 = (step[0] + step[1]) * cospi_16_64;
31 output[0] = dct_const_round_shift(temp1);
33 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64;
35 output[1] = dct_const_round_shift(temp1);
56 /*needs32*/ int temp1, temp2; local
79 temp1 = (step[0] + step[1]) * cospi_16_64;
81 out[0] = dct_const_round_shift(temp1);
83 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64;
85 out[1] = dct_const_round_shift(temp1);
329 /*needs32*/ int temp1, temp2; local
662 /*needs32*/ int temp1, temp2; local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dcodegen-ia32.h98 Register temp1,

Completed in 447 milliseconds

12345