Searched refs:temp2 (Results 26 - 50 of 151) sorted by relevance

1234567

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c132 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
144 ureg_DP3(ureg, temp2, matrow1, ureg_src(temp0));
148 ureg_MUL(ureg, temp2, ureg_src(temp2), ureg_src(temp3));
153 ureg_src(temp2));
163 ureg_MUL(ureg, temp2,
168 TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
172 ureg_release_temporary(ureg, temp2);
192 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
205 ureg_DP3(ureg, temp2, matrow
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tgsi.c154 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
165 ureg_DP3(ureg, temp2, matrow1, ureg_src(temp0));
169 ureg_MUL(ureg, temp2, ureg_src(temp2), ureg_src(temp3));
172 ureg_MOV(ureg, ureg_writemask(temp4, TGSI_WRITEMASK_Y), ureg_src(temp2));
181 ureg_MUL(ureg, temp2, ureg_src(temp1), ureg_scalar(coords, TGSI_SWIZZLE_Z));
183 ureg_TEX(ureg, out, TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
187 ureg_release_temporary(ureg, temp2);
205 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
216 ureg_DP3(ureg, temp2, matrow
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_exa_tgsi.c132 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
144 ureg_DP3(ureg, temp2, matrow1, ureg_src(temp0));
148 ureg_MUL(ureg, temp2, ureg_src(temp2), ureg_src(temp3));
153 ureg_src(temp2));
163 ureg_MUL(ureg, temp2,
168 TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
172 ureg_release_temporary(ureg, temp2);
192 struct ureg_dst temp2 = ureg_DECL_temporary(ureg); local
205 ureg_DP3(ureg, temp2, matrow
[all...]
/external/opencv/cv/src/
H A Dcvkalman.cpp100 CV_CALL( kalman->temp2 = cvCreateMat( MP, DP, CV_32FC1 ));
151 cvReleaseMat( &kalman->temp2 );
213 /* temp2 = H*P'(k) */
215 kalman->error_cov_pre, 0, kalman->temp2 ));
216 /* temp3 = temp2*Ht + R */
217 CV_CALL( cvGEMM( kalman->temp2, kalman->measurement_matrix, 1,
220 /* temp4 = inv(temp3)*temp2 = Kt(k) */
221 CV_CALL( cvSolve( kalman->temp3, kalman->temp2, kalman->temp4, CV_SVD ));
232 /* P(k) = P'(k) - K(k)*temp2 */
233 CV_CALL( cvGEMM( kalman->gain, kalman->temp2,
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice.c104 WebRtc_Word16 temp2,temp3; local
124 temp2 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(u, orderCoef);
128 memcpy(sthQ15, &filt_coefQ15[temp2], orderCoef * sizeof(WebRtc_Word16));
239 WebRtc_Word16 temp2,temp3; local
247 temp2 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(u, orderCoef);
251 sthQ15[ii] = filt_coefQ15[temp2+ii];
/external/chromium_org/courgette/
H A Ddisassembler_elf_32_arm.cc98 uint32 temp2 = 0x4000; local
99 temp2 |= (arm_op & (1 << 12)) >> 12;
100 temp2 |= (arm_op & (1 << 14)) >> 13;
101 temp2 |= (arm_op & (1 << 15)) >> 13;
102 temp2 |= (arm_op & 0xF8000000) >> 24;
103 temp2 |= (prefetch & 0x0000000F) << 8;
104 (*c_op) = temp2;
123 uint32 temp2 = 0x5000; local
124 temp2 |= (arm_op & 0x03C00000) >> 22; // just save the cond
125 (*c_op) = temp2;
[all...]
/external/libgsm/src/
H A Drpe.c267 word xmax, xmaxc, temp, temp1, temp2; local
327 temp2 = gsm_NRFAC[ mant ]; /* inverse mantissa */
334 temp = GSM_MULT( temp, temp2 );
361 word temp, temp1, temp2, temp3; local
367 temp2 = gsm_sub( 6, exp ); /* see 4.2-15 for exp */
368 temp3 = gsm_asl( 1, gsm_sub( temp2, 1 ));
381 *xMp++ = gsm_asr( temp, temp2 );
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DColor.cpp79 static double calcHue(double temp1, double temp2, double hueVal) argument
86 return temp1 + (temp2 - temp1) * hueVal * 6.0;
88 return temp2;
90 return temp1 + (temp2 - temp1) * (2.0 / 3.0 - hueVal) * 6.0;
108 double temp2 = lightness < 0.5 ? lightness * (1.0 + saturation) : lightness + saturation - lightness * saturation;
109 double temp1 = 2.0 * lightness - temp2;
111 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
112 static_cast<int>(calcHue(temp1, temp2, hue) * scaleFactor),
113 static_cast<int>(calcHue(temp1, temp2, hue - 1.0 / 3.0) * scaleFactor),
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc79 Register temp2 = r5; local
87 __ Push(temp3, temp2, temp1);
90 temp1, temp2, temp3);
91 __ Pop(temp3, temp2, temp1);
239 Register temp2 = ip;
242 __ bic(temp2, chars, Operand(0x3), SetCC);
244 __ add(temp2, dest, temp2);
249 __ cmp(dest, temp2);
316 Register temp2
756 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.h107 Register temp2,
/external/jpeg/
H A Djcphuff.c380 register int temp, temp2; local
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
408 temp = temp2 - entropy->last_dc_val[ci];
409 entropy->last_dc_val[ci] = temp2;
412 temp2 = temp;
415 /* For a negative input, want temp2 = bitwise complement of abs(input) */
417 temp2--;
438 emit_bits(entropy, (unsigned int) temp2, nbits);
467 register int temp, temp2; local
497 * interwoven with finding the abs value (temp) and output bits (temp2)
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c25 int temp1, temp2; local
33 temp2 = (step[0] - step[1]) * cospi_16_64;
35 output[2] = dct_const_round_shift(temp2);
37 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64;
39 output[3] = dct_const_round_shift(temp2);
58 /*needs32*/ int temp1, temp2; local
82 temp2 = (step[0] - step[1]) * cospi_16_64;
84 out[2] = dct_const_round_shift(temp2);
86 temp2 = -step[2] * cospi_8_64 + step[3] * cospi_24_64;
88 out[3] = dct_const_round_shift(temp2);
324 /*needs32*/ int temp1, temp2; local
650 /*needs32*/ int temp1, temp2; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcphuff.c380 register int temp, temp2; local
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
408 temp = temp2 - entropy->last_dc_val[ci];
409 entropy->last_dc_val[ci] = temp2;
412 temp2 = temp;
415 /* For a negative input, want temp2 = bitwise complement of abs(input) */
417 temp2--;
438 emit_bits(entropy, (unsigned int) temp2, nbits);
467 register int temp, temp2; local
497 * interwoven with finding the abs value (temp) and output bits (temp2)
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
H A Dmatrix.cc22 float temp, temp2, temp3, temp4; local
24 temp2 = right - left;
27 mat[0] = temp / temp2;
35 mat[8] = (right + left) / temp2;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
H A Dmatrix.cc22 float temp, temp2, temp3, temp4; local
24 temp2 = right - left;
27 mat[0] = temp / temp2;
35 mat[8] = (right + left) / temp2;
/external/chromium_org/v8/src/ia32/
H A Dcodegen-ia32.h99 Register temp2);
/external/chromium_org/v8/src/mips/
H A Dcodegen-mips.cc79 Register temp2 = t1; local
87 __ Push(temp3, temp2, temp1);
90 temp1, temp2, temp3);
91 __ Pop(temp3, temp2, temp1);
529 Register temp2,
537 ASSERT(!temp1.is(temp2));
539 ASSERT(!temp2.is(temp3));
556 __ FmoveLow(temp2, double_scratch1);
573 __ srl(temp1, temp2, 11);
574 __ Ext(temp2, temp
523 EmitMathExp(MacroAssembler* masm, DoubleRegister input, DoubleRegister result, DoubleRegister double_scratch1, DoubleRegister double_scratch2, Register temp1, Register temp2, Register temp3) argument
[all...]
H A Dcodegen-mips.h109 Register temp2,
/external/clang/test/CodeGenCXX/
H A Dtype_visibility.cpp56 namespace temp2 { namespace
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Didct_dequant_full_2x_neon.asm58 ; q7: 12 * sinpi : d1/temp2
81 ; q5: 12 + 12 * cospi : c1/temp2
85 ; c1 = temp1 - temp2
86 ; d1 = temp1 + temp2
111 ; q9: 3 * sinpi : d1/temp2
127 ; q11: 3 + 3 * cospi : c1/temp2
131 ; q8: c1 = temp1 - temp2
132 ; q9: d1 = temp1 + temp2
/external/libvpx/libvpx/vp8/common/
H A Dfilter.c416 unsigned char temp2[16];
419 filter_block2d_bil(src_ptr, temp2, src_pixels_per_line, 4, HFilter, VFilter, 4, 4);
423 if (temp1[i] != temp2[i])
426 filter_block2d_bil(src_ptr, temp2, src_pixels_per_line, 4, HFilter, VFilter, 4, 4);
/external/opencv/otherlibs/highgui/
H A Dloadsave.cpp498 CvMat *temp = 0, *temp2 = 0; local
535 CV_CALL( temp2 = cvCreateMat(image->rows,
537 CV_CALL( cvConvertImage( image, temp2 ));
538 image = temp2;
550 cvReleaseMat( &temp2 );
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_short_idct16x16_add_neon.asm99 ; temp2 = step2[4] * cospi_4_64 + step2[7] * cospi_28_64
110 ; dct_const_round_shift(temp2)
135 ; temp2 = step2[5] * cospi_20_64 + step2[6] * cospi_12_64
143 ; dct_const_round_shift(temp2)
169 ; temp2 = (step1[0] - step1[1]) * cospi_16_64
177 ; dct_const_round_shift(temp2)
190 ; temp2 = input[1] * cospi_8_64 + input[3] * cospi_24_64
198 ; dct_const_round_shift(temp2)
235 ; temp2 = (step2[5] + step2[6]) * cospi_16_64
243 ; dct_const_round_shift(temp2)
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkGpuBlurUtils.cpp153 GrAutoScratchTexture temp1, temp2; local
155 GrTexture* tempTexture = canClobberSrc ? srcTexture : temp2.set(context, desc);
256 } else if (srcTexture == temp2.texture()) {
257 return temp2.detach();
/external/chromium_org/third_party/sqlite/src/src/
H A Dcallback.c410 Hash temp2; local
415 temp2 = pSchema->trigHash;
418 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
421 sqlite3HashClear(&temp2);

Completed in 635 milliseconds

1234567