Searched refs:lo (Results 51 - 75 of 602) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/binutils/opcodes/
H A DMakefile.am213 alpha-dis.lo \
214 alpha-opc.lo \
215 arc-dis.lo \
216 arc-opc.lo \
217 arc-ext.lo \
218 arm-dis.lo \
219 avr-dis.lo \
220 bfin-dis.lo \
221 cgen-asm.lo \
222 cgen-bitset.lo \
[all...]
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-ia64.pl111 { .mii; $ADDP Htbl=8,in1 // &Htbl[0].lo
131 { .mii; add Hi[1]=Htbl,Hi[1] // &Htbl[nlo].lo
166 ld8 r`16+2*$i`=[r9],16 } // Htable[$i].lo
168 ldf8 f`32+2*$i`=[r11],16 // Htable[`8+$i`].lo
215 { .mmi; st8 [r8]=$rlo,16 // Htable[$i].lo
218 { .mmi; stf8 [r10]=f`32+2*$i`,16 // Htable[`8+$i`].lo
221 { .mmi; st8 [r14]=$rlo,16 // Htable[$i].lo>>4
226 { .mmi; ld8 r16=[r8],16 // Htable[8].lo
228 { .mmi; ld8 r18=[r8],16 // Htable[9].lo
235 { .mmi; ld8 r`20+2*$i`=[r8],16 // Htable[`10+$i`].lo
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h52 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { argument
55 *lo = product;
84 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { argument
90 // Sum terms that contribute to lo in a way that allows us to get the carry
93 *lo = r0 + (r1 << 32);
94 // Sum terms contributing to hi with the carry from lo
151 static __inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { argument
185 *lo = r0 + (r1 << 64);
240 static __inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { argument
241 *hi = *hi << count | *lo >> (typeWidt
245 wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int count) argument
[all...]
/freebsd-11-stable/sys/mips/nlm/hal/
H A Dcpucontrol.h124 uint32_t hi, lo; local
135 : "=r"(hi), "=r"(lo)
138 return (((uint64_t)hi) << 32) | lo;
144 uint32_t hi, lo; local
147 lo = val & 0xffffffff;
161 : :"r"(hi), "r"(lo), "r"(reg)
/freebsd-11-stable/lib/msun/src/
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;}
78 lo = t*ln2_lo;
80 STRICT_ASSIGN(float, x, hi - lo);
81 c = (hi-x)-lo;
H A De_log10.c44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
74 lo = (f - hi) - hfsq + r;
77 val_lo = y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi;
H A Ds_fma.c43 double lo; member in struct:dd
59 ret.lo = (a - (ret.hi - s)) + (b - s);
81 if (sum.lo != 0) {
84 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
85 EXTRACT_WORD64(lobits, sum.lo);
111 * bits in sum.lo. With the sticky bit adjusted, the hardware will
117 if (sum.lo != 0) {
121 /* hibits += (int)copysign(1.0, sum.hi * sum.lo) */
122 EXTRACT_WORD64(lobits, sum.lo);
156 ret.lo
[all...]
H A De_sqrtl.c80 long double lo, xn; local
128 lo = u.e;
130 lo = (lo - u.e) / xn; /* Low bits divided by xn. */
132 u.e = xn + lo; /* Combine everything. */
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;
136 lo = t*ln2LO[0];
138 STRICT_ASSIGN(double, x, hi - lo);
153 else y = one-((lo-(x*c)/(2.0-c))-hi);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dntp_calendar.c203 res.D_s.lo = (uint32_t)-tt;
204 M_NEG(res.D_s.hi, res.D_s.lo);
206 res.D_s.lo = (uint32_t)tt;
221 res.D_s.lo = (uint32_t)tt;
223 M_NEG(res.D_s.hi, res.D_s.lo);
225 res.D_s.lo = (uint32_t)tt;
244 res = (time_t)tv->D_s.lo;
252 res = ((time_t)tv->d_s.hi << 32) | tv->D_s.lo;
589 ntp -= res.D_s.lo; /* cycle difference */
600 M_SUB(res.D_s.hi, res.D_s.lo,
[all...]
H A Dprettydate.c98 u_int32 hi, lo; local
101 lo = stamp->D_s.lo;
103 while ((hi && ~hi) || ((hi ^ lo) & 0x80000000u)) {
104 if (M_ISNEG(hi, lo)) {
107 M_ADD(hi, lo, 0, SOLAR_CYCLE_SECS);
111 M_SUB(hi, lo, 0, SOLAR_CYCLE_SECS);
114 ts = (int32)lo;
/freebsd-11-stable/contrib/lua/src/
H A Dltablib.c305 ** precondition: a[lo] <= P == a[up-1] <= a[up],
306 ** so it only needs to do the partition from lo + 1 to up - 2.
307 ** Pos-condition: a[lo .. i - 1] <= a[i] == P <= a[i + 1 .. up]
310 static IdxT partition (lua_State *L, IdxT lo, IdxT up) { argument
311 IdxT i = lo; /* will be incremented before first use */
313 /* loop invariant: a[lo .. i] <= P <= a[j .. up] */
321 /* after the loop, a[i] >= P and a[lo .. i - 1] < P */
330 /* a[lo .. i - 1] <= P <= a[j + 1 .. i .. up] */
343 ** Choose an element in the middle (2nd-3th quarters) of [lo,up]
346 static IdxT choosePivot (IdxT lo, Idx argument
357 auxsort(lua_State *L, IdxT lo, IdxT up, unsigned int rnd) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfixunstfdi.c26 if (0.0 != x.s.lo) {
27 const doublebits lobits = {.d = x.s.lo};
H A Dfixtfdi.c31 if (0.0 != x.s.lo) {
32 const doublebits lobits = {.d = x.s.lo};
72 if (0.0 < x.s.lo) {
76 const doublebits lobits = {.d = x.s.lo};
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DAVR.cpp64 uint16_t lo = val >> 1; local
66 write16le(loc + 2, lo);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmemattr.h76 CORE_ADDR lo; member in struct:mem_region
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dswitch16.S37 ite lo
H A Dswitch32.S37 ite lo
/freebsd-11-stable/lib/libc/stdlib/
H A Drand.c59 long hi, lo, x; local
64 lo = x % 127773;
65 x = 16807 * lo - 2836 * hi;
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.in129 dist_libhx509_la_OBJECTS = libhx509_la-ca.lo libhx509_la-cert.lo \
130 libhx509_la-cms.lo libhx509_la-collector.lo \
131 libhx509_la-crypto.lo libhx509_la-doxygen.lo \
132 libhx509_la-error.lo libhx509_la-env.lo libhx509_la-file.lo \
133 libhx509_la-sel.lo libhx509_l
[all...]
/freebsd-11-stable/contrib/libstdc++/src/
H A DMakefile.in79 am__objects_1 = atomicity.lo codecvt_members.lo collate_members.lo \
80 ctype_members.lo messages_members.lo monetary_members.lo \
81 numeric_members.lo time_members.lo
82 am__objects_2 = basic_file.lo c++locale.lo
[all...]
/freebsd-11-stable/contrib/byacc/test/yacc/
H A Dcalc1.tab.c111 double lo, hi; member in struct:interval
443 v.lo = b;
448 v.lo = a;
455 if (d < v.lo)
456 v.lo = d;
462 if (c < v.lo)
463 v.lo = c;
471 return (hilo(a * v.hi, a * v.lo, b * v.hi, b * v.lo));
477 if (v.hi >= 0. && v.lo <
[all...]
H A Dvarsyntax_calc1.tab.c112 double lo, hi; member in struct:interval
444 v.lo = b;
449 v.lo = a;
456 if (d < v.lo)
457 v.lo = d;
463 if (c < v.lo)
464 v.lo = c;
472 return (hilo(a * v.hi, a * v.lo, b * v.hi, b * v.lo));
478 if (v.hi >= 0. && v.lo <
[all...]
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dfde-glibc.c61 size_t lo, hi; local
98 lo = 0;
101 while (lo < hi)
103 size_t mid = (lo + hi) / 2;
109 lo = mid + 1;
/freebsd-11-stable/contrib/bzip2/
H A Dblocksort.c34 Int32 lo,
40 if (lo == hi) return;
42 if (hi - lo > 3) {
43 for ( i = hi-4; i >= lo; i-- ) {
52 for ( i = hi-1; i >= lo; i-- ) {
99 Int32 sp, lo, hi; local
113 fpop ( lo, hi );
114 if (hi - lo < FALLBACK_QSORT_SMALL_THRESH) {
115 fallbackSimpleSort ( fmap, eclass, lo, hi );
128 if (r3 == 0) med = eclass[fmap[lo]]; els
32 fallbackSimpleSort( UInt32* fmap, UInt32* eclass, Int32 lo, Int32 hi ) argument
485 mainSimpleSort( UInt32* ptr, UChar* block, UInt16* quadrant, Int32 nblock, Int32 lo, Int32 hi, Int32 d, Int32* budget ) argument
631 Int32 sp, lo, hi, d; local
890 Int32 lo = ftab[sb] & CLEARMASK; local
[all...]

Completed in 229 milliseconds

1234567891011>>