Searched refs:hi (Results 176 - 200 of 217) sorted by relevance

123456789

/bionic/libc/arch-arm64/syscalls/
H A Dsync.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dsysinfo.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtee.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtgkill.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtimerfd_create.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtimerfd_gettime.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtimerfd_settime.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtimes.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dtruncate.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dumask.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dumount2.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Duname.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dunlinkat.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dunshare.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dutimensat.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dvmsplice.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dwait4.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dwrite.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
H A Dwritev.S10 cneg x0, x0, hi
11 b.hi __set_errno_internal
/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_log10f.c36 float f,hfsq,hi,lo,r,y; local
66 hi = f - hfsq;
67 GET_FLOAT_WORD(hx,hi);
68 SET_FLOAT_WORD(hi,hx&0xfffff000);
69 lo = (f - hi) - hfsq + r;
70 return y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi + hi*ivln10hi +
H A De_log2f.c34 float f,hfsq,hi,lo,r,y; local
77 hi = f - hfsq;
78 GET_FLOAT_WORD(hx,hi);
79 SET_FLOAT_WORD(hi,hx&0xfffff000);
80 lo = (f - hi) - hfsq + r;
81 return (lo+hi)*ivln2lo + lo*ivln2hi + hi*ivln2hi + y;
H A De_log2.c44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y; local
80 * theorem for spitting f-hfsq as hi+lo, unless double_t was used
101 hi = f - hfsq;
102 SET_LOW_WORD(hi,0);
103 lo = (f - hi) - hfsq + r;
104 val_hi = hi*ivln2hi;
105 val_lo = (lo+hi)*ivln2lo + lo*ivln2hi;
H A Ds_fma.c38 * of a double. We maintain the invariant that "hi" stores the 53 high-order
42 double hi; member in struct:dd
57 ret.hi = a + b;
58 s = ret.hi - a;
59 ret.lo = (a - (ret.hi - s)) + (b - s);
82 EXTRACT_WORD64(hibits, sum.hi);
84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
87 INSERT_WORD64(sum.hi, hibits);
90 return (sum.hi);
110 * lowest bit of sum.hi t
[all...]
/bionic/libc/arch-arm64/bionic/
H A Dsyscall.S45 cneg x0, x0, hi
46 b.hi __set_errno_internal
/bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
H A Db_exp.c92 double z,hi,lo,c;
105 /* express x-k*ln2 as hi-lo and let x=hi-lo rounded */
107 hi=x-k*ln2hi;
108 x=hi-(lo=k*ln2lo);
113 return scalb(1.0+(hi-(lo-(x*c)/(2.0-c))),k);
138 double z,hi,lo; local
150 /* express (x+c)-k*ln2 as hi-lo and let x=hi-lo rounded */
152 hi
[all...]

Completed in 237 milliseconds

123456789