HomeSort by relevance Sort by last modified time
    Searched refs:tmp (Results 1 - 25 of 6538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_huff_cw.cpp 152 uint32 tmp; local
155 tmp = getUpTo9bits(pMainData, 3); /* hufftable1 */
157 cw = *(huffTable_1 + tmp);
169 uint32 tmp; local
172 tmp = getUpTo9bits(pMainData, 6); /* huffTable_2,3 */
174 if (tmp >> 3)
176 tmp = (tmp >> 3) - 1;
180 tmp = tmp + 7
195 uint32 tmp; local
221 uint32 tmp; local
250 uint32 tmp; local
279 uint32 tmp; local
312 uint32 tmp; local
345 uint32 tmp; local
378 uint32 tmp; local
423 uint32 tmp; local
463 uint32 tmp; local
504 uint32 tmp; local
569 uint32 tmp; local
614 uint32 tmp; local
682 uint32 tmp; local
734 uint32 tmp = getUpTo9bits(pMainData, 6); \/* huffTable_32 *\/ local
754 uint16 tmp = getUpTo9bits(pMainData, 4); \/* huffTable_33 *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
doboth 6 rm tmp.0 > /dev/null 2>&1
7 ln -s $x tmp.0
8 $* tmp.0 > tmp.1
10 rm tmp.0
11 ln -s $y tmp.0
12 $* tmp.0 > tmp.2
14 rm tmp.0
16 diff -c tmp.1 tmp.
    [all...]
  /external/e2fsprogs/lib/uuid/
pack.c 41 uint32_t tmp; local
44 tmp = uu->time_low;
45 out[3] = (unsigned char) tmp;
46 tmp >>= 8;
47 out[2] = (unsigned char) tmp;
48 tmp >>= 8;
49 out[1] = (unsigned char) tmp;
50 tmp >>= 8;
51 out[0] = (unsigned char) tmp;
53 tmp = uu->time_mid
    [all...]
unpack.c 42 uint32_t tmp; local
44 tmp = *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 tmp = (tmp << 8) | *ptr++;
47 tmp = (tmp << 8) | *ptr++;
48 uu->time_low = tmp;
50 tmp = *ptr++
    [all...]
  /external/ltp/testcases/kernel/security/cap_bound/
run_capbounds.sh 32 tmp=$?
33 if [ $tmp -ne 0 ]; then
34 exit_code=$tmp
39 tmp=$?
40 if [ $tmp -ne 0 ]; then
41 exit_code=$tmp
46 tmp=$?
47 if [ $tmp -ne 0 ]; then
48 exit_code=$tmp
52 tmp=$
    [all...]
  /external/capstone/suite/
test_c.sh 6 ../tests/test > /tmp/$1
7 ../tests/test_detail >> /tmp/$1
8 ../tests/test_skipdata >> /tmp/$1
9 ../tests/test_iter >> /tmp/$1
10 ../tests/test_arm >> /tmp/$1
11 ../tests/test_arm64 >> /tmp/$1
12 ../tests/test_mips >> /tmp/$1
13 ../tests/test_ppc >> /tmp/$1
14 ../tests/test_sparc >> /tmp/$1
15 ../tests/test_x86 >> /tmp/$
    [all...]
test_python.sh 6 ../bindings/python/test.py > /tmp/$1
7 ../bindings/python/test_detail.py >> /tmp/$1
8 ../bindings/python/test_arm.py >> /tmp/$1
9 ../bindings/python/test_arm64.py >> /tmp/$1
10 ../bindings/python/test_mips.py >> /tmp/$1
11 ../bindings/python/test_ppc.py >> /tmp/$1
12 ../bindings/python/test_sparc.py >> /tmp/$1
13 ../bindings/python/test_x86.py >> /tmp/$1
  /external/valgrind/none/tests/scripts/
bug231357.stdout.exp 0 /tmp/bruhaha/test.sh
  /external/clang/test/CodeGen/
uint128_t.c 10 __uint128_t tmp; local
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;
2007-08-01-LoadStoreAlign.c 14 int tmp = t.b; local
15 u.b = tmp;
16 return tmp;
  /external/ltp/testcases/kernel/security/filecaps/
filecapstest.sh 26 TMP=${TMP:=/tmp}
27 FIFOFILE="$TMP/caps_fifo"
34 tmp=$?
35 if [ $tmp -ne 0 ]; then
36 exit_code=$tmp
41 tmp=$?
42 if [ $tmp -ne 0 ]; then
43 exit_code=$tmp
    [all...]
  /system/vold/tests/
Utils_test.cpp 28 std::string tmp; local
30 ASSERT_FALSE(FindValue("", "KEY", &tmp));
31 ASSERT_FALSE(FindValue("BADKEY=\"VALUE\"", "KEY", &tmp));
33 ASSERT_TRUE(FindValue("KEY=\"VALUE\"", "KEY", &tmp));
34 ASSERT_EQ("VALUE", tmp);
36 ASSERT_TRUE(FindValue("FOO=\"BAR\" KEY=\"VALUE VALUE\" BAR=\"BAZ\"", "KEY", &tmp));
37 ASSERT_EQ("VALUE VALUE", tmp);
39 ASSERT_TRUE(FindValue("BADKEY=\"VALUE\" KEY=\"BAZ\"", "KEY", &tmp));
40 ASSERT_EQ("BAZ", tmp);
  /external/ltp/lib/newlib_tests/
tst_res_hexd.c 23 char tmp[] = "Hello from tst_res_hexd"; local
25 tst_res_hexd(TPASS, tmp, sizeof(tmp), "%s%d", "dump", 1);
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_stress.sh 33 sched_driver -s 0.9 -t 0.02 -p 2 > /tmp/tmp$$
34 tail -n 5 /tmp/tmp$$
35 rm -rf /tmp/tmp$$ ./sched_datafile sch.measure
  /external/autotest/client/deps/fakegudev/src/
test-fakesyscalls.sh 8 FAKE_SYSCALLS_DBG=/tmp/fake_syscalls.dbg
13 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo1=/tmp/foo2
14 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo3
15 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo4=.
16 FILE_REDIRECTIONS_PRELOAD=${FILE_REDIRECTIONS_PRELOAD}:/tmp/foo5=/tmp/foo6
19 rm -f /tmp/foo1 /tmp/foo2 /tmp/foo3 /tmp/foo4 /tmp/foo5 /tmp/foo6 /tmp/foo9
    [all...]
  /external/libhevc/common/
ihevc_trans_macros.h 39 LWORD64 tmp; \
53 tmp = (LWORD64)(abs(inp)); \
54 tmp = tmp * (quant_coeff); \
55 tmp = tmp + (((LWORD64)q_add) << (q_bits - QUANT_ROUND_FACTOR_Q)); \
56 tmp = tmp >> q_bits; \
58 tmp = tmp * sign; (…)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
GenericListVisitorAdapter.java 50 List<R> tmp; local
52 tmp = n.getMembers().accept(this, arg);
53 if (tmp != null)
54 result.addAll(tmp);
57 tmp = n.getName().accept(this, arg);
58 if (tmp != null)
59 result.addAll(tmp);
62 tmp = n.getAnnotations().accept(this, arg);
63 if (tmp != null)
64 result.addAll(tmp);
77 List<R> tmp; local
109 List<R> tmp; local
131 List<R> tmp; local
158 List<R> tmp; local
180 List<R> tmp; local
197 List<R> tmp; local
219 List<R> tmp; local
241 List<R> tmp; local
263 List<R> tmp; local
285 List<R> tmp; local
297 List<R> tmp; local
314 List<R> tmp; local
326 List<R> tmp; local
343 List<R> tmp; local
365 List<R> tmp; local
387 List<R> tmp; local
399 List<R> tmp; local
416 List<R> tmp; local
458 List<R> tmp; local
490 List<R> tmp; local
522 List<R> tmp; local
549 List<R> tmp; local
596 List<R> tmp; local
613 List<R> tmp; local
635 List<R> tmp; local
647 List<R> tmp; local
659 List<R> tmp; local
676 List<R> tmp; local
708 List<R> tmp; local
745 List<R> tmp; local
772 List<R> tmp; local
789 List<R> tmp; local
816 List<R> tmp; local
838 List<R> tmp; local
870 List<R> tmp; local
897 List<R> tmp; local
924 List<R> tmp; local
941 List<R> tmp; local
963 List<R> tmp; local
985 List<R> tmp; local
997 List<R> tmp; local
1019 List<R> tmp; local
1031 List<R> tmp; local
1053 List<R> tmp; local
1075 List<R> tmp; local
1087 List<R> tmp; local
1104 List<R> tmp; local
1116 List<R> tmp; local
1133 List<R> tmp; local
1155 List<R> tmp; local
1187 List<R> tmp; local
1239 List<R> tmp; local
1261 List<R> tmp; local
1278 List<R> tmp; local
1300 List<R> tmp; local
1322 List<R> tmp; local
1334 List<R> tmp; local
1371 List<R> tmp; local
1393 List<R> tmp; local
1425 List<R> tmp; local
1442 List<R> tmp; local
1459 List<R> tmp; local
1471 List<R> tmp; local
1493 List<R> tmp; local
1505 List<R> tmp; local
1522 List<R> tmp; local
1544 List<R> tmp; local
1566 List<R> tmp; local
1588 List<R> tmp; local
1605 List<R> tmp; local
1622 List<R> tmp; local
1654 List<R> tmp; local
1671 List<R> tmp; local
1698 List<R> tmp; local
1715 List<R> tmp; local
1737 List<R> tmp; local
1754 List<R> tmp; local
1776 List<R> tmp; local
1803 List<R> tmp; local
1820 List<R> tmp; local
1842 List<R> tmp; local
1875 List<R> tmp; local
1903 List<R> tmp; local
1926 List<R> tmp; local
1949 List<R> tmp; local
1972 List<R> tmp; local
1990 List<R> tmp; local
2008 List<R> tmp; local
2021 List<R> tmp; local
2048 List<R> tmp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_halfpel_inline.h 34 __inline int32 INTERP1_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
36 tmp = (tmp2 >> 1) - tmp;
37 if (tmp > 0) sad += tmp;
38 else sad -= tmp;
43 __inline int32 INTERP2_SUB_SAD(int32 sad, int32 tmp, int32 tmp2)
45 tmp = (tmp >> 2) - tmp2;
46 if (tmp > 0) sad += tmp
58 rsbs tmp, tmp, tmp2, asr #1 ; local
59 rsbmi tmp, tmp, #0 ; local
60 add sad, sad, tmp ; local
70 rsbs tmp, tmp2, tmp, asr #2 ; local
71 rsbmi tmp, tmp, #0 ; local
72 add sad, sad, tmp ; local
    [all...]
  /external/e2fsprogs/lib/e2p/
uuid.c 40 __u32 tmp; local
42 tmp = *ptr++;
43 tmp = (tmp << 8) | *ptr++;
44 tmp = (tmp << 8) | *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 uu->time_low = tmp;
48 tmp = *ptr++
    [all...]
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 111 byte tmp;
113 case '0': tmp = 0; break;
114 case '1': tmp = 1; break;
115 case '2': tmp = 2; break;
116 case '3': tmp = 3; break;
117 case '4': tmp = 4; break;
118 case '5': tmp = 5; break;
119 case '6': tmp = 6; break;
120 case '7': tmp = 7; break;
121 case '8': tmp = 8; break
    [all...]
  /external/adhd/cras/src/common/
cras_metrics.c 26 char tmp[4][16]; local
27 snprintf(tmp[0], 16, "%d", sample);
28 snprintf(tmp[1], 16, "%d", min);
29 snprintf(tmp[2], 16, "%d", max);
30 snprintf(tmp[3], 16, "%d", nbuckets);
31 const char *argv[] = {METRICS_CLIENT, name, tmp[0], tmp[1],
32 tmp[2], tmp[3], NULL};
  /external/python/cpython2/PC/os2emx/
dlfcn.c 61 DLLchain tmp; local
63 for (tmp = dlload; tmp; tmp = tmp->next)
64 if (id == tmp->id)
65 return tmp;
74 DLLchain tmp; local
79 for (tmp = dlload; tmp; tmp = tmp->next
163 DLLchain tmp = find_id(handle); local
195 DLLchain tmp = find_id(handle); local
    [all...]
  /external/elfutils/tests/
run-addr2line-i-demangle-test.sh 31 /tmp/x.cpp:5
33 /tmp/x.cpp:6
35 /tmp/x.cpp:10
37 /tmp/x.cpp:11
38 foobar inlined at /tmp/x.cpp:15 in bar()
39 /tmp/x.cpp:5
41 /tmp/x.cpp:15
42 fubar inlined at /tmp/x.cpp:20 in baz()
43 /tmp/x.cpp:10
45 /tmp/x.cpp:2
    [all...]
  /external/libvpx/libvpx/test/
lpf_test.cc 177 uint8_t tmp = GetOuterThresh(&rnd); local
179 blimit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp,
180 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp }
236 uint8_t tmp = GetOuterThresh(&rnd); local
286 uint8_t tmp = GetOuterThresh(&rnd); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_lut.rs 25 uchar4 tmp;
26 tmp.r = red[in.r];
27 tmp.g = green[in.g];
28 tmp.b = blue[in.b];
29 tmp.a = alpha[in.a];
30 return tmp;

Completed in 1507 milliseconds

1 2 3 4 5 6 7 8 91011>>