Searched refs:two54 (Results 1 - 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-libm/ |
H A D | log10.c | 64 #define two54 1.80143985094819840000e+16 /* 0x43500000, 0x00000000 */ macro 87 return -two54 / zero; in log10() 95 x *= two54; /* subnormal number, scale up x */ in log10() 113 #undef two54 macro
|
H A D | log1p.c | 96 #define two54 1.80143985094819840000e+16 /* 43500000 00000000 */ macro 125 return -two54 / zero; in log1p() 135 if ((two54 + x > zero) /* raise inexact */ in log1p() 238 #undef two54 macro
|
H A D | log2.c | 41 #define two54 1.80143985094819840000e+16 /* 0x43500000, 0x00000000 */ macro 68 return -two54 / zero; /* log(+-0)=-inf */ in log2() 75 x *= two54; /* subnormal number, scale up x */ in log2() 151 #undef two54 macro
|
H A D | log.c | 84 #define two54 1.80143985094819840000e+16 /* 43500000 00000000 */ macro 108 return -two54 / zero; in log() 115 x *= two54; /* subnormal number, scale up x */ in log() 195 #undef two54 macro
|
H A D | scalbn.c | 35 #define two54 1.80143985094819840000e+16 /* 0x43500000, 0x00000000 */ macro 54 x *= two54; in scalbn() 96 #undef two54 macro
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.cc | 1638 two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */ in log() local 1664 x *= two54; /* subnormal number, scale up x */ in log() 1783 two54 = 1.80143985094819840000e+16, /* 43500000 00000000 */ in log1p() local 1809 if (two54 + x > zero /* raise inexact */ in log1p() 1971 two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */ in log2() local 1990 x *= two54; /* subnormal number, scale up x */ in log2() 2077 two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */ in log10() local 2097 x *= two54; /* subnormal number, scale up x */ in log10()
|
Completed in 6 milliseconds