Searched refs:temp (Results 101 - 125 of 1627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dcomplex_bit_reverse.c72 int32_t temp = 0; local
74 temp = complex_data_ptr[index[m]]; /* Real and imaginary */
76 complex_data_ptr[index[m + 1]] = temp;
87 int32_t temp = 0; local
103 temp = complex_data_ptr[m]; /* Real and imaginary */
105 complex_data_ptr[mr] = temp;
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_convolve_neon.c23 DECLARE_ALIGNED_ARRAY(8, uint8_t, temp, 64 * 72);
37 * the temp buffer which has lots of extra room and is subsequently discarded
41 temp, 64,
45 /* Step into the temp buffer 3 lines to get the actual frame data */
46 vp9_convolve8_vert_neon(temp + 64 * 3, 64,
57 DECLARE_ALIGNED_ARRAY(8, uint8_t, temp, 64 * 72);
71 temp, 64,
74 vp9_convolve8_avg_vert_neon(temp + 64 * 3,
/external/lzma/CPP/Common/
H A DIntToString.cpp14 char temp[72]; local
19 temp[pos++] = (char)((delta < 10) ? ('0' + delta) : ('a' + (delta - 10)));
24 *s++ = temp[--pos];
31 wchar_t temp[32]; local
35 temp[pos++] = (wchar_t)(L'0' + (int)(value % 10));
40 *s++ = temp[--pos];
/external/fdlibm/
H A De_jn.c61 double a, b, temp, di; local
100 case 0: temp = ieee_cos(x)+ieee_sin(x); break;
101 case 1: temp = -ieee_cos(x)+ieee_sin(x); break;
102 case 2: temp = -ieee_cos(x)-ieee_sin(x); break;
103 case 3: temp = ieee_cos(x)-ieee_sin(x); break;
105 b = invsqrtpi*temp/ieee_sqrt(x);
110 temp = b;
112 a = temp;
123 temp = x*0.5; b = temp;
223 double a, b, temp; local
[all...]
/external/libgsm/src/
H A Drpe.c267 word xmax, xmaxc, temp, temp1, temp2; local
276 temp = xM[i];
277 temp = GSM_ABS(temp);
278 if (temp > xmax) xmax = temp;
285 temp = SASR( xmax, 9 );
290 itest |= (temp <= 0);
291 temp = SASR( temp,
361 word temp, temp1, temp2, temp3; local
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmsynth.c225 EAS_I32 temp; local
228 temp = (EAS_I32) nLogRate << 7;
229 temp += ((EAS_I32) nKeyNumber - EG_SCALE_PIVOT_POINT) * (EAS_I32) nEGScale;
232 temp = max(temp, 0);
233 temp = min(temp, 32767);
237 return fmRateTable[temp >> 8];
401 EAS_I32 temp; local
422 temp
518 EAS_I32 temp; local
627 EAS_U32 temp; local
730 EAS_I32 temp; local
806 EAS_I32 temp; local
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmsynth.c225 EAS_I32 temp; local
228 temp = (EAS_I32) nLogRate << 7;
229 temp += ((EAS_I32) nKeyNumber - EG_SCALE_PIVOT_POINT) * (EAS_I32) nEGScale;
232 temp = max(temp, 0);
233 temp = min(temp, 32767);
237 return fmRateTable[temp >> 8];
401 EAS_I32 temp; local
422 temp
518 EAS_I32 temp; local
627 EAS_U32 temp; local
730 EAS_I32 temp; local
806 EAS_I32 temp; local
[all...]
/external/qemu/android/
H A Dmain-emulator.c376 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
377 p = bufprint(temp, end, "%s/%s", path, filename);
378 D("Probing for: %s\n", temp);
379 return (p < end && path_exists(temp));
394 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
412 p = bufprint(temp, en
451 char *temp = NULL; local
[all...]
H A Duser-config.c54 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
65 p = bufprint_config_file(temp, end, USER_CONFIG_FILE);
67 p = bufprint(temp, end, "%s/%s", avdInfo_getContentPath(info),
74 p = bufprint_temp_file(temp, end, USER_CONFIG_FILE);
82 uc->iniPath = ASTRDUP(temp);
183 char temp[256]; local
190 bufprint(temp, temp
[all...]
/external/deqp/framework/common/
H A DtcuCPUWarmup.cpp44 T temp[Size]; variable
46 temp[i] = v[i];
48 std::sort(DE_ARRAY_BEGIN(temp), DE_ARRAY_END(temp));
51 ? 0.5f * ((float)temp[Size/2-1] + (float)temp[Size/2])
52 : (float)temp[Size/2];
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Drsaz_exp.c280 *temp = (BN_ULONG *)(table+16*8*8+8*8); local
286 temp[0] = 0-m[0]; temp[1] = ~m[1];
287 temp[2] = ~m[2]; temp[3] = ~m[3];
288 temp[4] = ~m[4]; temp[5] = ~m[5];
289 temp[6] = ~m[6]; temp[7] = ~m[7];
290 rsaz_512_scatter4(table, temp,
[all...]
/external/aac/libFDK/src/
H A Dscale.cpp352 SHORT temp, maxVal = 0; local
355 temp = (SHORT)(*vector++);
356 maxVal |= (temp^(temp>>(SHORT_BITS-1)));
379 INT_PCM temp, maxVal = 0; local
382 temp = (INT_PCM)(*vector); vector+=stride;
383 maxVal |= (temp^(temp>>((sizeof(INT_PCM)*8)-1)));
405 SHORT temp, maxVal = 0; local
408 temp
433 FIXP_DBL temp, maxVal = (FIXP_DBL)0; local
451 SHORT temp, maxVal = (FIXP_SGL)0; local
[all...]
/external/chromium_org/third_party/skia/src/xml/
H A DSkXMLParser.cpp35 SkString temp; local
38 temp.set(gErrorStrings[fCode - 1]);
39 temp.append(fNoun);
41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
42 str->append(temp);
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Drwupdt.h19 Scalar temp, rowj; local
28 temp = givens[i].c() * r(i,j) + givens[i].s() * rowj;
30 r(i,j) = temp;
41 temp = givens[j].c() * b[j] + givens[j].s() * alpha;
43 b[j] = temp;
H A Dlmpar.h24 Scalar temp, paru; local
50 temp = wa1[j];
52 wa1[i] -= r(i,j) * temp;
87 temp = wa1.blueNorm();
88 parl = fp / delta / temp / temp;
121 temp = fp;
127 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
137 temp
182 Scalar temp, paru; local
[all...]
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
H A Dmember_swap.pass.cpp23 std::string temp = get_temp_file_name(); local
26 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
38 std::remove(temp.c_str());
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
53 std::remove(temp.c_str());
H A Dmove_assign.pass.cpp24 std::string temp = get_temp_file_name(); local
27 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
39 std::remove(temp.c_str());
42 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
54 std::remove(temp.c_str());
H A Dnonmember_swap.pass.cpp25 std::string temp = get_temp_file_name(); local
28 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
40 std::remove(temp.c_str());
43 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
55 std::remove(temp.c_str());
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/
H A Dmove.pass.cpp24 std::string temp = get_temp_file_name(); local
27 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
38 std::remove(temp.c_str());
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
52 std::remove(temp.c_str());
/external/qemu/android/avd/
H A Dinfo.c99 IMAGE_STATE_TEMPORARY, /* copied to temp file (no lock needed) */
227 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp; local
233 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
237 path = iniFile_getString(configIni, temp, NULL);
241 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
243 path = ASTRDUP(temp);
276 char temp[PATH_MAX], *p=temp, *en local
292 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp); local
312 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
367 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
462 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
572 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
638 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
865 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
984 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp); local
1180 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
[all...]
/external/skia/src/xml/
H A DSkXMLParser.cpp35 SkString temp; local
38 temp.set(gErrorStrings[fCode - 1]);
39 temp.append(fNoun);
41 SkXMLParser::GetNativeErrorString(fNativeCode, &temp);
42 str->append(temp);
/external/srec/srec/cfront/
H A Dsh_down.h45 int temp, retval; local
49 temp = value;
51 temp = -value;
53 retval = temp << shift;
55 if ((retval > (int)LONG_MAX) || (retval < temp)) /* TODO: max_val if LONG_MAX, overflow won't be detected */
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vertex_sse.c263 struct x86_reg temp )
266 store[sz-1](p, dest, temp);
271 struct x86_reg temp )
275 sse_mulps(&p->func, temp, p->chan0);
278 sse2_cvtps2dq(&p->func, temp, temp);
279 sse2_packssdw(&p->func, temp, temp);
280 sse2_packuswb(&p->func, temp, temp);
355 struct x86_reg temp = x86_make_reg(file_XMM, 0); local
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex_sse.c263 struct x86_reg temp )
266 store[sz-1](p, dest, temp);
271 struct x86_reg temp )
275 sse_mulps(&p->func, temp, p->chan0);
278 sse2_cvtps2dq(&p->func, temp, temp);
279 sse2_packssdw(&p->func, temp, temp);
280 sse2_packuswb(&p->func, temp, temp);
355 struct x86_reg temp = x86_make_reg(file_XMM, 0); local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsrchtest.cpp467 UChar temp[128]; local
474 u_unescape(search->text, temp, 128);
476 text.setTo(temp);
477 u_unescape(search->pattern, temp, 128);
479 pattern.setTo(temp);
524 UChar temp[128]; local
533 u_unescape(search->text, temp, 128);
535 text.setTo(temp);
536 u_unescape(search->pattern, temp, 128);
538 pattern.setTo(temp);
577 UChar temp[128]; local
870 UChar temp[128]; local
1003 UChar temp[128]; local
1047 UChar temp[128]; local
1111 UChar temp[512]; local
1207 UChar temp[128]; local
1296 UChar temp[128]; local
1417 UChar temp[128]; local
1481 UChar temp[128]; local
1595 UChar temp[128]; local
1633 UChar temp[128]; local
1674 UChar temp[128]; local
1754 UChar temp[128]; local
1859 UChar temp[128]; local
1902 UChar temp[128]; local
1964 UChar temp[128]; local
2031 UChar temp[128]; local
2123 UChar temp[128]; local
2199 UChar temp[128]; local
[all...]

Completed in 3170 milliseconds

1234567891011>>