Searched refs:tmp (Results 1 - 25 of 3029) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/uuid/
H A Dpack.c41 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
[all...]
H A Dunpack.c42 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
[all...]
/external/ltp/testcases/kernel/security/cap_bound/
H A Drun_capbounds.sh32 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/valgrind/none/tests/scripts/
H A Dbug231357.stdout.exp0 /tmp/bruhaha/test.sh
/external/clang/test/CodeGen/
H A Duint128_t.c10 __uint128_t tmp; local
12 tmp = val;
13 tmp *= numer;
14 tmp /= denom;
16 return tmp;
H A D2007-08-01-LoadStoreAlign.c14 int tmp = t.b; local
15 u.b = tmp;
16 return tmp;
H A Dvla-3.c8 char __attribute__((aligned(16))) tmp[size+32]; local
11 adr(tmp);
/external/ltp/testcases/kernel/security/filecaps/
H A Dfilecapstest.sh26 TMP=${TMP:=/tmp}
34 tmp=$?
35 if [ $tmp -ne 0 ]; then
36 exit_code=$tmp
41 tmp=$?
42 if [ $tmp -ne 0 ]; then
43 exit_code=$tmp
48 tmp=$?
49 if [ $tmp -ne 0 ]; then
50 exit_code=$tmp
[all...]
/external/ltp/lib/newlib_tests/
H A Dtst_res_hexd.c23 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/
H A Dsched_stress.sh33 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/
H A Dtest-fakesyscalls.sh8 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/foo
[all...]
/external/libhevc/common/
H A Dihevc_trans_macros.h39 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 * sig
[all...]
/external/e2fsprogs/lib/e2p/
H A Duuid.c40 __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
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java111 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
[all...]
/external/python/cpython2/PC/os2emx/
H A Ddlfcn.c61 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; tm
163 DLLchain tmp = find_id(handle); local
195 DLLchain tmp = find_id(handle); local
[all...]
/external/elfutils/tests/
H A Drun-addr2line-i-demangle-test.sh31 /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/
[all...]
H A Drun-ecp-test.sh22 tempfiles testfile10.tmp
24 testrun ${abs_builddir}/ecp testfile10 testfile10.tmp
26 cmp testfile10 testfile10.tmp
/external/libvpx/libvpx/test/
H A Dlpf_test.cc165 uint8_t tmp = static_cast<uint8_t>(rnd(3 * MAX_LOOP_FILTER + 4)); local
167 blimit[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp,
168 tmp, tm
224 uint8_t tmp = static_cast<uint8_t>(rnd(3 * MAX_LOOP_FILTER + 4)); local
274 uint8_t tmp = static_cast<uint8_t>(rnd(3 * MAX_LOOP_FILTER + 4)); local
[all...]
/external/testng/src/test/java/testhelper/
H A DOutputDirectoryPatch.java37 String tmp = System.getProperty(OUTPUT_DIRECTORY_PROPERTY_NAME);
38 if (tmp != null) {
39 return tmp;
/external/e2fsprogs/contrib/
H A Ddconf12 AWKFILE=/tmp/${SELF}.awk
13 TEMPFILE=/tmp/${SELF}.tmp
/external/autotest/client/site_tests/security_Minijail0/src/
H A Dtest-chroot5 # setup: mkdir -p "%T/c/bin" "%T/c/lib64" "%T/c/lib" "%T/c/usr/lib" "%T/c/usr/local" "%T/c/tmp-rw" "%T/c/tmp-ro" "%T/tmp"
6 # args: -b /bin,/bin -b /lib,/lib -b /usr/lib,/usr/lib -b /usr/local,/usr/local -b %T/tmp,/tmp-rw,1 -b %T/tmp,/tmp-ro -C "%T/c" -v
18 [ ! -d /tmp-rw ] && die "no /tmp-rw"
19 [ ! -d /tmp
[all...]
H A Dtest-pivotroot5 # setup: mkdir -p "%T/c/bin" "%T/c/lib64" "%T/c/lib" "%T/c/usr/lib" "%T/c/usr/local" "%T/c/tmp-rw" "%T/c/tmp-ro" "%T/tmp"
6 # args: -b /bin,/bin -b /lib,/lib -b /usr/lib,/usr/lib -b /usr/local,/usr/local -b %T/tmp,/tmp-rw,1 -b %T/tmp,/tmp-ro -P "%T/c" -v
18 [ ! -d /tmp-rw ] && die "no /tmp-rw"
19 [ ! -d /tmp
[all...]
/external/clang/test/Sema/
H A Dstruct-cast.c12 struct S tmp; variable in typeref:struct:S
15 tmp = (struct S)foo();
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
H A D7-1-buildonly.c16 int tmp; variable
20 tmp = pthread_equal(a, b);
/external/valgrind/auxprogs/
H A Dchange-copyright-year22 perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2015/Copyright (C) 20$1$2-2017/' < $i > tmp.$$
23 mv tmp.$$ $i
27 perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2015/Copyright IBM Corp. 20$1$2-2017/' < $i > tmp.$$
28 mv tmp.$$ $i

Completed in 5627 milliseconds

1234567891011>>