HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 176 - 200 of 2100) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_code.cpp 241 Word16 temp; local
286 temp = *(p_y2++) >> 1;
287 s += ((Word32) temp * temp) >> 2;
288 temp = *(p_y2++) >> 1;
289 s += ((Word32) temp * temp) >> 2;
cbsearch.cpp 202 Word16 temp; local
287 temp =
296 temp,
319 temp =
328 temp,
345 temp = ((Word32)h[i - T0] * pit_sharpTmp) >> 15;
355 temp,
378 temp =
387 temp,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 111 temp RN 11 label
145 ;// Caulucate temp pred by performing Division
156 ADD temp,dcScaler,dcScaler
157 LDRH temp,[predCoeffTable,temp] ;// Load value from coeff table for performing division using multiplication
159 SMULBB tempPred,temp,absCoeffDC ;// tempPred=pPredBufRow(Col)[0]*32767/dcScaler
167 LDRH temp,[pPredBufCol]
174 STRH temp,[pPredBufRow,#-16]
176 LDRH temp,[pSrcDst] ;// temp=pSrcDst[0
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jnf.c 32 float a, b, temp, di; local
58 temp = b;
60 a = temp;
70 temp = x*(float)0.5; b = temp;
73 b *= temp; /* b = (x/2)^n */
134 temp = b;
137 a = temp;
142 temp = b;
145 a = temp;
171 float a, b, temp; local
    [all...]
  /external/qemu/android/
user-config.c 54 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+sizeof(temp)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
LimitedLengthInputStreamTest.java 82 byte[] temp = new byte[TEST_STRING1.length];
89 assertEquals(length, is.read(temp, 0, temp.length));
91 System.arraycopy(temp, 0, actual, 0, length);
94 assertEquals(-1, is.read(temp, 0, temp.length));
122 byte[] temp = new byte[TEST_STRING1.length + 10];
124 assertEquals(TEST_STRING1.length, is.read(temp, 0, TEST_STRING1.length + 10));
127 System.arraycopy(temp, 0, actual, 0, actual.length);
132 byte[] temp = new byte[TEST_STRING1.length]
    [all...]
  /external/aac/libFDK/src/
scale.cpp 352 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 = (SHORT)(*vector); vector+=stride
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/
SkXMLParser.cpp 35 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/
rwupdt.h 19 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;
lmpar.h 22 Scalar temp, paru; local
48 temp = wa1[j];
50 wa1[i] -= r(i,j) * temp;
85 temp = wa1.blueNorm();
86 parl = fp / delta / temp / temp;
119 temp = fp;
125 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
135 temp = wa1[j]
178 Scalar temp, paru; local
    [all...]
  /external/skia/src/xml/
SkXMLParser.cpp 35 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/
sh_down.h 45 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 */
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DelayAllPass_Sat_32x16To32.c 40 LVM_INT32 temp; local
46 MUL32x16INTO32(delay[AllPassOffset], coeff, temp, 15)
47 a = temp;
67 MUL32x16INTO32(c, -coeff, temp, 15)
68 a = temp;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 23 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());
move_assign.pass.cpp 24 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());
nonmember_swap.pass.cpp 25 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());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.cons/
move.pass.cpp 24 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());
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_5.cpp 217 Word16 temp; local
247 temp = (aux1 - ((Word32)wf1_0 * *(p_dico++))) >> 15;
248 dist = ((Word32)temp * temp);
256 temp = (aux2 - ((Word32)wf1_1 * *(p_dico++))) >> 15;
257 dist += ((Word32)temp * temp);
265 temp = (aux3 - ((Word32)wf2_0 * *(p_dico++))) >> 15;
266 dist += ((Word32)temp * temp);
383 Word16 temp; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vertex_sse.c 263 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/
t_vertex_sse.c 263 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/
srchtest.cpp 364 UChar temp[128]; local
371 u_unescape(search->text, temp, 128);
373 text.setTo(temp);
374 u_unescape(search->pattern, temp, 128);
376 pattern.setTo(temp);
421 UChar temp[128]; local
430 u_unescape(search->text, temp, 128);
432 text.setTo(temp);
433 u_unescape(search->pattern, temp, 128);
435 pattern.setTo(temp);
474 UChar temp[128]; local
767 UChar temp[128]; local
900 UChar temp[128]; local
944 UChar temp[128]; local
1018 UChar temp[512]; local
1114 UChar temp[128]; local
1203 UChar temp[128]; local
1324 UChar temp[128]; local
1388 UChar temp[128]; local
1502 UChar temp[128]; local
1540 UChar temp[128]; local
1581 UChar temp[128]; local
1661 UChar temp[128]; local
1766 UChar temp[128]; local
1809 UChar temp[128]; local
1871 UChar temp[128]; local
1938 UChar temp[128]; local
2030 UChar temp[128]; local
2106 UChar temp[128]; local
    [all...]
  /external/icu4c/test/intltest/
srchtest.cpp 467 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...]
  /external/qemu/android/avd/
info.c 97 IMAGE_STATE_TEMPORARY, /* copied to temp file (no lock needed) */
216 char temp[PATH_MAX], *p = temp, *end= p+sizeof temp; local
222 p = bufprint(temp, end, "%s%d", SEARCH_PREFIX, nn+1 );
226 path = iniFile_getString(configIni, temp, NULL);
230 p = bufprint(temp, end, "%s/%s", sdkRootPath, path);
232 path = ASTRDUP(temp);
265 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp) local
281 char temp[MAX_PATH], *p=temp, *end=p+sizeof(temp); local
301 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
356 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
451 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
555 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
621 char temp[MAX_PATH], *p = temp, *end = p + sizeof(temp); local
785 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
888 char temp[PATH_MAX], *p = temp, *end = p + sizeof(temp); local
1077 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
    [all...]
  /external/chromium/base/
atomicops_internals_x86_gcc.h 51 Atomic32 temp = increment; local
53 : "+r" (temp), "+m" (*ptr)
55 // temp now holds the old value of *ptr
56 return temp + increment;
61 Atomic32 temp = increment; local
63 : "+r" (temp), "+m" (*ptr)
65 // temp now holds the old value of *ptr
69 return temp + increment;
175 Atomic64 temp = increment; local
177 : "+r" (temp), "+m" (*ptr
185 Atomic64 temp = increment; local
    [all...]
  /external/chromium_org/base/
atomicops_internals_x86_gcc.h 54 Atomic32 temp = increment; local
56 : "+r" (temp), "+m" (*ptr)
58 // temp now holds the old value of *ptr
59 return temp + increment;
64 Atomic32 temp = increment; local
66 : "+r" (temp), "+m" (*ptr)
68 // temp now holds the old value of *ptr
72 return temp + increment;
178 Atomic64 temp = increment; local
180 : "+r" (temp), "+m" (*ptr
188 Atomic64 temp = increment; local
    [all...]

Completed in 738 milliseconds

1 2 3 4 5 6 78 91011>>