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

1234567891011>>

/external/v8/test/mjsunit/
H A Ddelete-in-with.js31 var tmp = { x: 12 };
32 with (tmp) { assertTrue(delete x); }
33 assertFalse("x" in tmp);
H A Dnumops-fuzz-part4.js30 var tmp = 0;
31 assertEquals(-890607324, x ^= ((tmp = -890607324, tmp)>>((((-2876826295)>>x)<<((tmp = 2351495148.117994, tmp)>>(tmp = 1368611893.274765, tmp)))*(tmp = 1531795251, tmp))));
32 assertEquals(-729075363, x += (x+(tmp
[all...]
H A Dnumops-fuzz-part2.js30 var tmp = 0;
31 assertEquals(-114583755, x -= (((-2806715240)&(((1961136061.0329285)>>>((2087162059)*x))+((tmp = -1890084022.7631018, tmp)%(tmp = 2137514142.358262, tmp))))+(x<<(tmp = 2991240918, tmp))));
34 assertEquals(3778560, x %= (tmp = -2592585378.9592104, tmp));
35 assertEquals(624640, x &= (tmp
[all...]
H A Dnumops-fuzz-part1.js30 var tmp = 0;
31 assertEquals(0, x /= (tmp = 798469700.4090232, tmp));
34 assertEquals(139516372, x -= (tmp = -139516372, tmp));
37 assertEquals(-2772151192.8633175, x -= (tmp = 2772151192.8633175, tmp));
39 assertEquals(1509750523, x |= ((1073767916)-(tmp = 919311632.2789925, tmp)));
41 assertEquals(-270926893, x |= (tmp
[all...]
H A Dnumops-fuzz-part3.js30 var tmp = 0;
34 assertEquals(-1599945863, x ^= (tmp = 2695021432.453696, tmp));
35 assertEquals(940543782, x ^= (tmp = 2561494111, tmp));
36 assertEquals(891400321673221800, x *= (tmp = 947749949.2662871, tmp));
37 assertEquals(-1509927296, x >>= ((tmp = 1113290009, tmp)-x));
38 assertEquals(-23, x >>= (tmp
[all...]
/external/e2fsprogs/lib/uuid/
H A Dpack.c40 uint32_t tmp; local
43 tmp = uu->time_low;
44 out[3] = (unsigned char) tmp;
45 tmp >>= 8;
46 out[2] = (unsigned char) tmp;
47 tmp >>= 8;
48 out[1] = (unsigned char) tmp;
49 tmp >>= 8;
50 out[0] = (unsigned char) tmp;
52 tmp
[all...]
H A Dunpack.c41 uint32_t tmp; local
43 tmp = *ptr++;
44 tmp = (tmp << 8) | *ptr++;
45 tmp = (tmp << 8) | *ptr++;
46 tmp = (tmp << 8) | *ptr++;
47 uu->time_low = tmp;
49 tmp
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-580.js33 var tmp = 0;
34 x = (tmp = 1578221999, tmp)+(tmp = 572285336, tmp);
39 x = (tmp = -1500000000, tmp)+(tmp = -2000000000, tmp);
44 x = (tmp
[all...]
/external/srtp/
H A Dundos.sh8 cat $1 | tr -d "\r" > $1.tmp
9 mv $1.tmp $1
/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;
/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/opencv3/3rdparty/openexr/Iex/
H A DIexThrowErrnoExc.cpp55 std::string tmp (text);
58 while (std::string::npos != (pos = tmp.find ("%T")))
59 tmp.replace (pos, 2, entext, strlen (entext));
65 throw EpermExc (tmp);
70 throw EnoentExc (tmp);
75 throw EsrchExc (tmp);
80 throw EintrExc (tmp);
85 throw EioExc (tmp);
90 throw EnxioExc (tmp);
95 throw E2bigExc (tmp);
[all...]
/external/e2fsprogs/lib/e2p/
H A Duuid.c39 __u32 tmp; local
41 tmp = *ptr++;
42 tmp = (tmp << 8) | *ptr++;
43 tmp = (tmp << 8) | *ptr++;
44 tmp = (tmp << 8) | *ptr++;
45 uu->time_low = tmp;
47 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/opencv3/3rdparty/openexr/IlmImf/
H A DImfCompressionAttribute.cpp61 unsigned char tmp = _value; local
62 Xdr::write <StreamIO> (os, tmp);
70 unsigned char tmp; local
71 Xdr::read <StreamIO> (is, tmp);
72 _value = Compression (tmp);
H A DImfEnvmapAttribute.cpp60 unsigned char tmp = _value; local
61 Xdr::write <StreamIO> (os, tmp);
69 unsigned char tmp; local
70 Xdr::read <StreamIO> (is, tmp);
71 _value = Envmap (tmp);
H A DImfLineOrderAttribute.cpp62 unsigned char tmp = _value; local
63 Xdr::write <StreamIO> (os, tmp);
71 unsigned char tmp; local
72 Xdr::read <StreamIO> (is, tmp);
73 _value = LineOrder (tmp);
/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_8_test.cc209 uint8_t tmp = static_cast<uint8_t>(rnd(3 * MAX_LOOP_FILTER + 4)); local
211 tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp,
212 tmp, tm
307 uint8_t tmp = static_cast<uint8_t>(rnd(3 * MAX_LOOP_FILTER + 4)); local
365 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

Completed in 5453 milliseconds

1234567891011>>