Lines Matching refs:u64
481 uint64_t u64; member
10692 e = (u.u64 >> 52) & 0x7ff; in JS_ToInt64Free()
10699 v = (u.u64 & (((uint64_t)1 << 52) - 1)) | ((uint64_t)1 << 52); in JS_ToInt64Free()
10702 if (u.u64 >> 63) in JS_ToInt64Free()
10762 e = (u.u64 >> 52) & 0x7ff; in JS_ToInt32Free()
10769 v = (u.u64 & (((uint64_t)1 << 52) - 1)) | ((uint64_t)1 << 52); in JS_ToInt32Free()
10773 if (u.u64 >> 63) in JS_ToInt32Free()
10976 return (u.u64 >> 63); in JS_NumberIsNegativeOrMinusZero()
14413 res = (u1.u64 == u2.u64); /* +0 != -0 */ in js_strict_eq2()
33947 bc_put_u64(s, u.u64); in JS_WriteObjectRec()
35042 uint64_t u64; in JS_ReadSharedArrayBuffer() local
35046 if (bc_get_u64(s, &u64)) in JS_ReadSharedArrayBuffer()
35048 data_ptr = (uint8_t*)(uintptr_t)u64; in JS_ReadSharedArrayBuffer()
35145 if (bc_get_u64(s, &u.u64)) in JS_ReadObjectRec()
41009 a1.u64 |= b1.u64; in js_fmin()
41023 a1.u64 &= b1.u64; in js_fmax()
41099 e = (u.u64 >> 52) & 0x7ff; in js_math_round()
41102 if (e == (1023 - 1) && u.u64 != 0xbfe0000000000000) { in js_math_round()
41104 u.u64 = (u.u64 & ((uint64_t)1 << 63)) | ((uint64_t)1023 << 52); in js_math_round()
41107 u.u64 &= (uint64_t)1 << 63; in js_math_round()
41110 s = u.u64 >> 63; in js_math_round()
41113 u.u64 += (one >> 1) - s; in js_math_round()
41114 u.u64 &= ~frac_mask; /* truncate to an integer */ in js_math_round()
41206 u.u64 = ((uint64_t)0x3ff << 52) | (v >> 12); in js_math_random()
51261 v64 = u.u64; in js_typed_array_fill()
52675 v64 = u.u64; in js_dataview_setValue()