Searched refs:lo (Results 1 - 25 of 353) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/openbsm/etc/
H A Daudit_user5 root:lo:no
H A Daudit_control7 flags:lo,aa
9 naflags:lo,aa
/freebsd-9.3-release/gnu/lib/libodialog/
H A Dui_objects.c369 DrawNames(ListObj *lo) argument
377 x = lo->x + 1;
378 y = lo->y + 2;
379 h = lo->h - 2;
380 for (i=lo->scroll; i<lo->n && i<lo->scroll+h; i++) {
381 wmove(lo->win, y+i-lo->scroll, x);
382 if (lo
407 RefreshListObj(ListObj *lo) argument
440 ListObj *lo; local
485 UpdateListObj(ListObj *lo, char **list, int n) argument
523 SelectListObj(ListObj *lo) argument
686 DelListObj(ListObj *lo) argument
699 MarkCurrentListObj(ListObj *lo) argument
711 MarkAllListObj(ListObj *lo) argument
727 UnMarkAllListObj(ListObj *lo) argument
[all...]
/freebsd-9.3-release/sys/boot/ficl/
H A Dmath64.c151 DPUNS resultLo = ficlLongMul(u.lo, mul);
153 resultLo.hi += resultHi.lo;
154 resultHi.lo = resultLo.lo + add;
156 if (resultHi.lo < resultLo.lo)
159 resultLo.lo = resultHi.lo;
201 x.lo = ~x.lo;
[all...]
/freebsd-9.3-release/sys/sys/
H A Dlock_profile.h48 void lock_profile_obtain_lock_success(struct lock_object *lo, int contested,
50 void lock_profile_release_lock(struct lock_object *lo);
55 lock_profile_obtain_lock_failed(struct lock_object *lo, int *contested, argument
58 if (!lock_prof_enable || (lo->lo_flags & LO_NOPROFILE) || *contested)
66 #define lock_profile_release_lock(lo) (void)0
67 #define lock_profile_obtain_lock_failed(lo, contested, waittime) (void)0
68 #define lock_profile_obtain_lock_success(lo, contested, waittime, file, line) (void)0
/freebsd-9.3-release/lib/msun/src/
H A Ds_cosl.c53 long double hi, lo; local
72 lo = y[1];
76 hi = __kernel_cosl(hi, lo);
79 hi = - __kernel_sinl(hi, lo, 1);
82 hi = - __kernel_cosl(hi, lo);
85 hi = __kernel_sinl(hi, lo, 1);
H A Ds_sinl.c48 long double hi, lo; local
70 lo = y[1];
74 hi = __kernel_sinl(hi, lo, 1);
77 hi = __kernel_cosl(hi, lo);
80 hi = - __kernel_sinl(hi, lo, 1);
83 hi = - __kernel_cosl(hi, lo);
H A Ds_tanl.c54 long double hi, lo; local
76 lo = y[1];
81 hi = __kernel_tanl(hi, lo, 0);
85 hi = __kernel_tanl(hi, lo, 1);
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 Ds_fmal.c43 long double lo; member in struct:dd
59 ret.lo = (a - (ret.hi - s)) + (b - s);
81 if (sum.lo != 0) {
84 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
107 * bits in sum.lo. With the sticky bit adjusted, the hardware will
113 if (sum.lo != 0) {
117 sum.hi = nextafterl(sum.hi, INFINITY * sum.lo);
152 ret.lo = p - ret.hi + q + la * lb;
233 * (xy.hi, xy.lo) = x * y (exact)
234 * (r.hi, r.lo)
[all...]
/freebsd-9.3-release/lib/libstand/
H A Drandom.c54 long x, hi, lo, t; local
64 lo = x % 127773;
65 t = 16807 * lo - 2836 * hi;
/freebsd-9.3-release/contrib/ntp/tests/libntp/
H A Dvi64ops.c20 printf("%x", expected.D_s.lo);
23 printf("%x\n", actual.D_s.lo);
28 printf("%d", expected.D_s.lo);
30 printf("%d", actual.D_s.lo);
31 printf("%d", actual.D_s.lo);
46 exp.D_s.lo = 1234;
62 exp.D_s.lo = -1234;
76 exp.D_s.lo = 0x89ABCDEF;
/freebsd-9.3-release/contrib/gcc/config/
H A Dfixdfdi.c15 USItype hi, lo; local
18 lo = a - ((DFtype) hi) * (((UDItype) 1) << (sizeof (USItype) * 8));
19 return ((UDItype) hi << (sizeof (USItype) * 8)) | lo;
H A Dfixsfdi.c17 USItype hi, lo; local
20 lo = a - ((DFtype) hi) * (((UDItype) 1) << (sizeof (USItype) * 8));
21 return ((UDItype) hi << (sizeof (USItype) * 8)) | lo;
/freebsd-9.3-release/sys/libkern/
H A Drandom.c60 register long x, hi, lo, t; local
72 lo = x % 127773;
73 t = 16807 * lo - 2836 * hi;
/freebsd-9.3-release/contrib/compiler-rt/lib/
H A Dfp_lib.h42 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { argument
45 *lo = product;
73 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { argument
79 // Sum terms that contribute to lo in a way that allows us to get the carry
82 *lo = r0 + (r1 << 32);
83 // Sum terms contributing to hi with the carry from lo
122 static inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { argument
123 *hi = *hi << count | *lo >> (typeWidth - count);
124 *lo = *lo << coun
127 wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int count) argument
[all...]
/freebsd-9.3-release/usr.sbin/pc-sysinstall/backend-query/
H A Ddetect-nics.sh30 lo|fwe|fwip|plip|pfsync|pflog|tun)
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_doorbell.h59 static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest, argument
62 __raw_writeq((__force u64) cpu_to_be64((u64) hi << 32 | lo), dest);
88 static inline void mthca_write64(u32 hi, u32 lo, void __iomem *dest, argument
94 lo = (__force u32) cpu_to_be32(lo);
98 __raw_writel(lo, dest + 4);
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A DMakefile.am40 rm -f pth/*.o pth/*.lo
42 pth/mf-runtime.lo: mf-runtime.c mf-runtime.h mf-impl.h
44 pth/mf-heuristics.lo: mf-heuristics.c mf-runtime.h mf-impl.h
46 pth/mf-hooks1.lo: mf-hooks1.c mf-runtime.h mf-impl.h
48 pth/mf-hooks2.lo: mf-hooks2.c mf-runtime.h mf-impl.h
50 pth/mf-hooks3.lo: mf-hooks3.c mf-runtime.h mf-impl.h
56 pth/mf-runtime.lo \
57 pth/mf-heuristics.lo \
58 pth/mf-hooks1.lo \
59 pth/mf-hooks2.lo \
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dmemattr.c44 create_mem_region (CORE_ADDR lo, CORE_ADDR hi, argument
49 /* lo == hi is a useless empty region */
50 if (lo >= hi && hi != 0)
60 if ((lo >= n->lo && (lo < n->hi || n->hi == 0))
61 || (hi > n->lo && (hi <= n->hi || n->hi == 0))
62 || (lo <= n->lo && (hi >= n->hi || hi == 0)))
71 new->lo
98 CORE_ADDR lo; local
138 CORE_ADDR lo, hi; local
[all...]
/freebsd-9.3-release/contrib/compiler-rt/lib/ppc/
H A Dgcc_qdiv.c17 register double x = dst.s.hi, x1 = dst.s.lo,
18 y = src.s.hi, y1 = src.s.lo;
28 dst.s.lo = 0.0;
35 dst.s.lo = 0.0;
51 dst.s.lo = (q - x) + tmp;
H A Dgcc_qmul.c17 register double A = dst.s.hi, a = dst.s.lo,
18 B = src.s.hi, b = src.s.lo;
28 dst.s.lo = 0.0;
35 dst.s.lo = 0.0;
49 dst.s.lo = (ab - tau) + tmp;
H A Dgcc_qadd.c18 register double A = dst.s.hi, a = dst.s.lo,
19 B = src.s.hi, b = src.s.lo;
24 dst.s.lo = 0.0;
34 dst.s.lo = 0.0;
44 dst.s.lo = 0.0;
73 dst.s.lo = (W - Y) + w;
H A Dgcc_qsub.c18 register double A = dst.s.hi, a = dst.s.lo,
19 B = -src.s.hi, b = -src.s.lo;
24 dst.s.lo = 0.0;
34 dst.s.lo = 0.0;
44 dst.s.lo = 0.0;
73 dst.s.lo = (W - Y) + w;
/freebsd-9.3-release/contrib/binutils/bfd/
H A DMakefile.am40 archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
41 cache.lo coffgen.lo corefile.lo \
42 format.lo init.lo libbf
[all...]

Completed in 221 milliseconds

1234567891011>>