/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/ |
matrix.cc | 22 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/ |
matrix.cc | 22 float temp, temp2, temp3, temp4; local 24 temp2 = right - left; 27 mat[0] = temp / temp2; 35 mat[8] = (right + left) / temp2;
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
atomicops_internals_mips_gcc.h | 98 Atomic32 temp, temp2; local 104 "addu %1, %0, %3\n" // temp2 = temp + increment 105 "sc %1, %2\n" // *ptr = temp2 (with atomic check) 107 "addu %1, %0, %3\n" // temp2 = temp + increment 109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr) 112 // temp2 now holds the final value. 113 return temp2;
|
/external/chromium_org/v8/src/ |
atomicops_internals_mips_gcc.h | 92 Atomic32 temp, temp2; local 98 "addu %1, %0, %3\n" // temp2 = temp + increment 99 "sc %1, %2\n" // *ptr = temp2 (with atomic check) 101 "addu %1, %0, %3\n" // temp2 = temp + increment 103 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr) 106 // temp2 now holds the final value. 107 return temp2;
|
/external/libvpx/libvpx/test/ |
vp8_fdct4x4_test.cc | 42 const int temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); local 43 const int c1 = temp1 - temp2; 60 const int temp2 = ip[3] + ((ip[3] * cospi8sqrt2minus1) >> 16); local 61 const int c1 = temp1 - temp2;
|
/external/libvpx/libvpx/vp8/common/ |
idctllm.c | 38 int temp1, temp2; local 47 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 48 c1 = temp1 - temp2; 51 temp2 = (ip[12] * sinpi8sqrt2) >> 16; 52 d1 = temp1 + temp2; 73 temp2 = ip[3] + ((ip[3] * cospi8sqrt2minus1) >> 16); 74 c1 = temp1 - temp2; 77 temp2 = (ip[3] * sinpi8sqrt2) >> 16; 78 d1 = temp1 + temp2;
|
variance_c.c | 293 unsigned char temp2[20*16]; local 304 var_filter_block2d_bil_second_pass(FData3, temp2, 4, 4, 4, 4, VFilter); 306 return vp8_variance4x4_c(temp2, 4, dst_ptr, dst_pixels_per_line, sse); 322 unsigned char temp2[20*16]; local 329 var_filter_block2d_bil_second_pass(FData3, temp2, 8, 8, 8, 8, VFilter); 331 return vp8_variance8x8_c(temp2, 8, dst_ptr, dst_pixels_per_line, sse); 346 unsigned char temp2[20*16]; local 353 var_filter_block2d_bil_second_pass(FData3, temp2, 16, 16, 16, 16, VFilter); 355 return vp8_variance16x16_c(temp2, 16, dst_ptr, dst_pixels_per_line, sse); 422 unsigned char temp2[20*16] local 446 unsigned char temp2[20*16]; local [all...] |
/external/v8/src/ |
atomicops_internals_mips_gcc.h | 94 Atomic32 temp, temp2; local 100 "addu %1, %0, %3\n" // temp2 = temp + increment 101 "sc %1, %2\n" // *ptr = temp2 (with atomic check) 103 "addu %1, %0, %3\n" // temp2 = temp + increment 105 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr) 108 // temp2 now holds the final value. 109 return temp2;
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_dequantize_sample.cpp | 275 int32 temp2 = fxp_mul32_Q32((ss - cb_begin) << 16, mp3_shortwindBandWidths[sfreq][cb_width]); local 276 temp2 = (temp2 + 1) >> 15; 279 global_gain -= gr_info->subblock_gain[temp2] << 3; 280 global_gain -= (1 + gr_info->scalefac_scale) * (scalefac->s[temp2][cb] << 1);
|
pvmp3_equalizer.cpp | 342 int32 temp2 = (pt_work_buff[ i + FILTERBANK_BANDS ]); local 346 *(inData++) = temp2; 357 int32 temp2 = (pt_work_buff[ i + FILTERBANK_BANDS ]); local 361 *(inData++) = temp2; 382 int32 temp2 = (pt_work_buff[ i + FILTERBANK_BANDS ]); local 386 *(inData++) = fxp_mul32_Q32(temp2 << 1, *(pt_equalizer++)); 399 int32 temp2 = (pt_work_buff[ i + FILTERBANK_BANDS ]); local 403 *(inData++) = fxp_mul32_Q32(temp2 << 1, *(pt_equalizer++));
|
pvmp3_imdct_synth.cpp | 322 int32 temp2 = out[slot+2]; local 325 out[slot+2] = -temp2; 343 int32 temp2 = history[slot+1]; local 346 out[slot+1] = -temp2; 350 temp2 = history[slot+4]; 353 out[slot+4] = temp2; 362 int32 temp2 = history[slot+1]; local 365 out[slot+1] = temp2;
|
/bionic/libc/bionic/ |
md5.c | 190 u_int32_t temp1, temp2; local 193 temp2 = temp1 >> 8; 195 temp2 &= 0x00ff00ff; 197 return temp1 | temp2;
|
/external/chromium_org/third_party/skia/src/effects/ |
SkGpuBlurUtils.cpp | 153 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/ |
callback.c | 410 Hash temp2; local 415 temp2 = pSchema->trigHash; 418 for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ 421 sqlite3HashClear(&temp2);
|
/external/e2fsprogs/ext2ed/ |
dir_com.c | 219 char *ptr,full_dir_name [500],dir_name [500],temp [500],temp2 [500]; local 277 strcpy (temp2,(unsigned char *) &type_data.u.t_ext2_inode.i_block); 278 strcat (temp2,"/"); 279 strcat (temp2,full_dir_name); 284 sprintf (temp,"cd %s",temp2); /* And continue from there by dispatching a cd command */
|
/external/libgsm/src/ |
rpe.c | 267 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/libvpx/libvpx/vp8/common/mips/dspr2/ |
idctllm_dspr2.c | 51 int temp1, temp2; local 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 67 c1 = temp1 - temp2; 70 temp2 = (ip[12] * sinpi8sqrt2) >> 16; 71 d1 = temp1 + temp2; 98 temp2 = ip[14] + ((ip[14] * cospi8sqrt2minus1) >> 16); 99 c1 = temp1 - temp2; 102 temp2 = (ip[14] * sinpi8sqrt2) >> 16; 103 d1 = temp1 + temp2; 136 temp2 = ip[3] + ((ip[3] * cospi8sqrt2minus1) >> 16) [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_onyxd_if.c | 398 MODE_INFO **temp2 = cm->prev_mi_grid_base; local 402 cm->mi_grid_base = temp2;
|
/external/opencv/otherlibs/highgui/ |
loadsave.cpp | 498 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/skia/src/effects/ |
SkGpuBlurUtils.cpp | 153 GrAutoScratchTexture temp1, temp2; local 155 GrTexture* tempTexture = canClobberSrc ? srcTexture : temp2.set(context, desc); 256 } else if (srcTexture == temp2.texture()) { 257 return temp2.detach();
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_smf.c | 1194 EAS_U32 temp1, temp2; local [all...] |
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_smf.c | 1194 EAS_U32 temp1, temp2; local [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_smf.c | 1203 EAS_U32 temp1, temp2; local [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
lattice.c | 104 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];
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
q_plsf_5.cpp | 385 Word16 temp2; local 422 temp2 = lsf_r1_0 + temp; 424 temp2 = ((Word32)wf1_0 * temp2) >> 15; 426 dist2 = ((Word32)temp2 * temp2); 430 temp2 = lsf_r1_1 + temp; 432 temp2 = ((Word32)wf1_1 * temp2) >> 15; 434 dist2 += ((Word32)temp2 * temp2) [all...] |