Home
last modified time | relevance | path

Searched refs:u2 (Results 1 – 8 of 8) sorted by relevance

/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-separate/
Dduk_selftest.c103 duk__test_double_union u2; in duk__selftest_byte_order() local
120 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d; in duk__selftest_byte_order()
121 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42; in duk__selftest_byte_order()
123 u2.c[0] = 0x7c; u2.c[1] = 0xc1; u2.c[2] = 0x37; u2.c[3] = 0x42; in duk__selftest_byte_order()
124 u2.c[4] = 0x00; u2.c[5] = 0x00; u2.c[6] = 0xc4; u2.c[7] = 0x6d; in duk__selftest_byte_order()
126 u2.c[0] = 0x42; u2.c[1] = 0x37; u2.c[2] = 0xc1; u2.c[3] = 0x7c; in duk__selftest_byte_order()
127 u2.c[4] = 0x6d; u2.c[5] = 0xc4; u2.c[6] = 0x00; u2.c[7] = 0x00; in duk__selftest_byte_order()
136 if (u2.d != (double) 102030405060.0) { in duk__selftest_byte_order()
Dduk_js_executor.c303 duk_uint32_t u1, u2, u3; in duk__vm_bitwise_binary_op() local
351 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
352 i3 = (duk_int32_t) (((duk_uint32_t) i1) << (u2 & 0x1fUL)); /* E5 Section 11.7.1, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
359 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
360 i3 = i1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
367 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
370 u3 = u1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-separate/
Dduk_selftest.c103 duk__test_double_union u2; in duk__selftest_byte_order() local
120 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d; in duk__selftest_byte_order()
121 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42; in duk__selftest_byte_order()
123 u2.c[0] = 0x7c; u2.c[1] = 0xc1; u2.c[2] = 0x37; u2.c[3] = 0x42; in duk__selftest_byte_order()
124 u2.c[4] = 0x00; u2.c[5] = 0x00; u2.c[6] = 0xc4; u2.c[7] = 0x6d; in duk__selftest_byte_order()
126 u2.c[0] = 0x42; u2.c[1] = 0x37; u2.c[2] = 0xc1; u2.c[3] = 0x7c; in duk__selftest_byte_order()
127 u2.c[4] = 0x6d; u2.c[5] = 0xc4; u2.c[6] = 0x00; u2.c[7] = 0x00; in duk__selftest_byte_order()
136 if (u2.d != (double) 102030405060.0) { in duk__selftest_byte_order()
Dduk_js_executor.c303 duk_uint32_t u1, u2, u3; in duk__vm_bitwise_binary_op() local
351 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
352 i3 = i1 << (u2 & 0x1f); /* E5 Section 11.7.1, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
359 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
360 i3 = i1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
367 u2 = ((duk_uint32_t) i2) & 0xffffffffUL; in duk__vm_bitwise_binary_op()
370 u3 = u1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */ in duk__vm_bitwise_binary_op()
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src-noline/
Dduktape.c65539 duk_uint32_t u1, u2, u3; local
65587 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65588 i3 = i1 << (u2 & 0x1f); /* E5 Section 11.7.1, steps 7 and 8 */
65595 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65596 i3 = i1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */
65603 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65606 u3 = u1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */
79450 duk__test_double_union u2; local
79467 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d;
79468 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42;
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src/
Dduktape.c65901 duk_uint32_t u1, u2, u3; local
65949 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65950 i3 = (duk_int32_t) (((duk_uint32_t) i1) << (u2 & 0x1fUL)); /* E5 Section 11.7.1, steps 7 and 8 */
65957 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65958 i3 = i1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */
65965 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65968 u3 = u1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */
79855 duk__test_double_union u2; local
79872 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d;
79873 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42;
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.5.2/src/
Dduktape.c65650 duk_uint32_t u1, u2, u3; local
65698 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65699 i3 = i1 << (u2 & 0x1f); /* E5 Section 11.7.1, steps 7 and 8 */
65706 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65707 i3 = i1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */
65714 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65717 u3 = u1 >> (u2 & 0x1f); /* E5 Section 11.7.2, steps 7 and 8 */
79568 duk__test_double_union u2; local
79585 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d;
79586 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42;
[all …]
/civetweb-2.7.6/src/third_party/duktape-1.8.0/src-noline/
Dduktape.c65790 duk_uint32_t u1, u2, u3; local
65838 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65839 i3 = (duk_int32_t) (((duk_uint32_t) i1) << (u2 & 0x1fUL)); /* E5 Section 11.7.1, steps 7 and 8 */
65846 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65847 i3 = i1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */
65854 u2 = ((duk_uint32_t) i2) & 0xffffffffUL;
65857 u3 = u1 >> (u2 & 0x1fUL); /* E5 Section 11.7.2, steps 7 and 8 */
79737 duk__test_double_union u2; local
79754 u2.c[0] = 0x00; u2.c[1] = 0x00; u2.c[2] = 0xc4; u2.c[3] = 0x6d;
79755 u2.c[4] = 0x7c; u2.c[5] = 0xc1; u2.c[6] = 0x37; u2.c[7] = 0x42;
[all …]