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

123456789

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_log10.c44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
72 hi = f - hfsq;
73 SET_LOW_WORD(hi,0);
74 lo = (f - hi) - hfsq + r;
75 val_hi = hi*ivln10hi;
77 val_lo = y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi;
H A De_exp.c26 * Here r will be represented as r = hi-lo for better
107 double y,hi=0.0,lo=0.0,c,t,twopk; local
131 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
135 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
138 STRICT_ASSIGN(double, x, hi - lo);
153 else y = one-((lo-(x*c)/(2.0-c))-hi);
H A De_expf.c48 float y,hi=0.0,lo=0.0,c,t,twopk; local
69 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
73 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
76 STRICT_ASSIGN(float, x, hi - lo);
91 else y = one-((lo-(x*c)/((float)2.0-c))-hi);
H A Ds_expm1f.c44 float y,hi,lo,c,t,e,hxs,hfx,r1,twopk; local
71 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
73 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
77 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
80 STRICT_ASSIGN(float, x, hi - lo);
81 c = (hi-x)-lo;
H A Ds_expm1.c135 double y,hi,lo,c,t,e,hxs,hfx,r1,twopk; local
165 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
167 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
171 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
174 STRICT_ASSIGN(double, x, hi - lo);
175 c = (hi-x)-lo;
H A Dmath_private.h563 #define DOPRINT_END2(hi, lo) \
565 (long double)(hi), (long double)(lo))
579 #define DOPRINT_END2(hi, lo) \
581 (long double)(hi), (long double)(lo))
595 #define DOPRINT_END2(hi, lo) \
597 (long double)(hi), (long double)(lo))
617 #define DOPRINT_END2(hi, lo) \
619 (long double)(hi), (long double)(lo))
626 #define DOPRINT_END2(hi, lo)
648 RETURNP((rp)->hi); \
[all...]
/bionic/libc/arch-arm64/bionic/
H A D__bionic_clone.S46 cneg x0, x0, hi
47 b.hi __set_errno_internal
H A Dvfork.S44 cneg x0, x0, hi
45 b.hi __set_errno_internal
/bionic/libc/kernel/uapi/asm-mips/asm/
H A Dptrace.h39 unsigned long hi; member in struct:pt_regs
H A Dkvm.h25 __u64 hi; member in struct:kvm_regs
/bionic/libc/upstream-netbsd/common/lib/libc/stdlib/
H A Drandom.c277 int x1, hi, lo, t; local
287 hi = x1 / 127773;
289 t = 16807 * lo - 2836 * hi;
513 long x, hi, lo, t; local
522 hi = x / 127773;
524 t = 16807 * lo - 2836 * hi;
/bionic/libm/upstream-freebsd/lib/msun/ld128/
H A Ds_logl.c425 (rp)->hi = (v); \
431 (rp)->hi = (h); \
438 long double hi; member in struct:ld
619 * Since x+x_lo is a hi+lo decomposition and subtracting 1
687 * of the hi terms are exact in double precision. The types are chosen so
688 * that the products of the hi terms are done in at least double precision,
704 float hi; local
710 RETURNPI(r.hi);
711 _2sumF(r.hi, r.lo);
712 hi
723 float hi; local
[all...]
H A Ds_expl.c61 * ln2/INTERVALS = L1+L2 (hi+lo decomposition for multiplication). L1 must
91 * hi must be rounded to at most 106 bits so that multiplication
95 long double hi; member in struct:__anon937
288 t = tbl[n2].lo + tbl[n2].hi;
289 t = tbl[n2].lo + t * (q + r1) + tbl[n2].hi;
463 t = tbl[n2].lo + tbl[n2].hi;
466 t = tbl[n2].lo * (r1 + 1) + t * q + tbl[n2].hi * r1 +
467 (tbl[n2].hi - 1);
471 t = tbl[n2].lo * (r1 + 1) + t * q + tbl[n2].hi * r1 +
472 (tbl[n2].hi
[all...]
/bionic/libc/bionic/
H A Dpthread_attr.cpp137 uintptr_t lo, hi; local
138 if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR, &lo, &hi) == 2) {
140 *stack_base = reinterpret_cast<void*>(hi - *stack_size);
/bionic/libc/tzcode/
H A Dlocaltime.c1336 register int hi = sp->timecnt; local
1338 while (lo < hi) {
1339 register int mid = (lo + hi) >> 1;
1342 hi = mid;
1724 register time_t hi; local
1802 hi = lo - 1;
1807 hi = -(lo + 1);
1810 t = lo / 2 + hi / 2;
1813 else if (t > hi)
1814 t = hi;
[all...]
/bionic/libc/arch-arm64/generic/bionic/
H A Dmemchr.S136 b.hi .Ltail
/bionic/tests/
H A Dpthread_test.cpp851 uintptr_t lo, hi; local
853 sscanf(line, "%" PRIxPTR "-%" PRIxPTR " %*4s %*x %*x:%*x %*d %10s", &lo, &hi, name);
855 maps_stack_hi = reinterpret_cast<void*>(hi);

Completed in 491 milliseconds

123456789