/external/v8/test/mjsunit/ |
H A D | delete-in-with.js | 31 var tmp = { x: 12 }; 32 with (tmp) { assertTrue(delete x); } 33 assertFalse("x" in tmp);
|
H A D | numops-fuzz-part4.js | 30 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 D | numops-fuzz-part2.js | 30 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 D | numops-fuzz-part1.js | 30 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 D | numops-fuzz-part3.js | 30 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 D | pack.c | 40 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 D | unpack.c | 41 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 D | regress-580.js | 33 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 D | undos.sh | 8 cat $1 | tr -d "\r" > $1.tmp 9 mv $1.tmp $1
|
/external/valgrind/none/tests/scripts/ |
H A D | bug231357.stdout.exp | 0 /tmp/bruhaha/test.sh
|
/external/clang/test/CodeGen/ |
H A D | uint128_t.c | 10 __uint128_t tmp; local 12 tmp = val; 13 tmp *= numer; 14 tmp /= denom; 16 return tmp;
|
H A D | 2007-08-01-LoadStoreAlign.c | 14 int tmp = t.b; local 15 u.b = tmp; 16 return tmp;
|
/external/autotest/client/deps/fakegudev/src/ |
H A D | 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/foo [all...] |
/external/libhevc/common/ |
H A D | 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 * sig [all...] |
/external/opencv3/3rdparty/openexr/Iex/ |
H A D | IexThrowErrnoExc.cpp | 55 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 D | uuid.c | 39 __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 D | 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 [all...] |
/external/opencv3/3rdparty/openexr/IlmImf/ |
H A D | ImfCompressionAttribute.cpp | 61 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 D | ImfEnvmapAttribute.cpp | 60 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 D | ImfLineOrderAttribute.cpp | 62 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 D | 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/ [all...] |
H A D | run-ecp-test.sh | 22 tempfiles testfile10.tmp 24 testrun ${abs_builddir}/ecp testfile10 testfile10.tmp 26 cmp testfile10 testfile10.tmp
|
/external/libvpx/libvpx/test/ |
H A D | lpf_8_test.cc | 209 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 D | OutputDirectoryPatch.java | 37 String tmp = System.getProperty(OUTPUT_DIRECTORY_PROPERTY_NAME); 38 if (tmp != null) { 39 return tmp;
|
/external/e2fsprogs/contrib/ |
H A D | dconf | 12 AWKFILE=/tmp/${SELF}.awk 13 TEMPFILE=/tmp/${SELF}.tmp
|