HomeSort by: relevance | last modified time | path
    Searched defs:neg (Results 1 - 25 of 74) sorted by relevancy

1 2 3

  /src/lib/libc/quad/
floatdidf.c 59 int neg; local in function:__floatdidf
65 u.q = -x, neg = 1;
67 u.q = x, neg = 0;
79 return (neg ? -d : d);
floatdisf.c 59 int neg; local in function:__floatdisf
65 u.q = -x, neg = 1;
67 u.q = x, neg = 0;
81 return (neg ? -f : f);
floatdidf.c 59 int neg; local in function:__floatdidf
65 u.q = -x, neg = 1;
67 u.q = x, neg = 0;
79 return (neg ? -d : d);
floatdisf.c 59 int neg; local in function:__floatdisf
65 u.q = -x, neg = 1;
67 u.q = x, neg = 0;
81 return (neg ? -f : f);
fixdfdi_ieee754.c 60 const bool neg = ux.dblu_sign; local in function:__fixdfdi
64 return neg ? QUAD_MIN : QUAD_MAX;
81 return neg ? -r : r;
fixsfdi_ieee754.c 58 const bool neg = ux.sngu_sign; local in function:__fixsfdi
64 return neg ? QUAD_MIN : QUAD_MAX;
74 return neg ? -r : r;
fixdfdi_ieee754.c 60 const bool neg = ux.dblu_sign; local in function:__fixdfdi
64 return neg ? QUAD_MIN : QUAD_MAX;
81 return neg ? -r : r;
fixsfdi_ieee754.c 58 const bool neg = ux.sngu_sign; local in function:__fixsfdi
64 return neg ? QUAD_MIN : QUAD_MAX;
74 return neg ? -r : r;
  /src/sys/lib/libkern/arch/i386/
random.S 86 js neg
91 neg: label
random.S 86 js neg
91 neg: label
  /src/common/lib/libc/quad/
divdi3.c 55 int neg = 0; local in function:__divdi3
61 ua = -ua, neg ^= 1;
63 ub = -ub, neg ^= 1;
66 if (neg)
moddi3.c 56 int neg = 0; local in function:__moddi3
62 ua = -ua, neg ^= 1;
66 if (neg)
divdi3.c 55 int neg = 0; local in function:__divdi3
61 ua = -ua, neg ^= 1;
63 ub = -ub, neg ^= 1;
66 if (neg)
moddi3.c 56 int neg = 0; local in function:__moddi3
62 ua = -ua, neg ^= 1;
66 if (neg)
  /src/common/lib/libc/stdlib/
_strtol.h 61 int i, neg, any, cutlim; local in function:_FUNCNAME
96 neg = 1;
99 neg = 0;
132 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX);
142 if (neg) {
162 if (neg) {
_strtoul.h 61 int i, neg, any, cutlim; local in function:_FUNCNAME
96 neg = 1;
99 neg = 0;
155 if (neg && any > 0)
_strtol.h 61 int i, neg, any, cutlim; local in function:_FUNCNAME
96 neg = 1;
99 neg = 0;
132 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
139 cutoff = (__INT)(neg ? __INT_MIN : __INT_MAX);
142 if (neg) {
162 if (neg) {
_strtoul.h 61 int i, neg, any, cutlim; local in function:_FUNCNAME
96 neg = 1;
99 neg = 0;
155 if (neg && any > 0)
  /src/sys/arch/arm/arm/
bootconfig.c 66 bool neg; local in function:get_bootconf_option
78 neg = false;
83 neg = true;
108 *((int *)result) = !neg;
bootconfig.c 66 bool neg; local in function:get_bootconf_option
78 neg = false;
83 neg = true;
108 *((int *)result) = !neg;
  /src/sys/arch/ia64/stand/common/
strtol.c 63 int neg = 0, any, cutlim; local in function:strtol
79 neg = 1;
102 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
109 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
132 acc = neg ? LONG_MIN : LONG_MAX;
134 } else if (neg)
strtol.c 63 int neg = 0, any, cutlim; local in function:strtol
79 neg = 1;
102 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
109 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
132 acc = neg ? LONG_MIN : LONG_MAX;
134 } else if (neg)
  /src/lib/libc/locale/
_wcstol.h 60 int neg, any, cutlim; local in function:INT_FUNCNAME
85 neg = 1;
88 neg = 0;
104 cutoff = neg ? __INT_MIN : __INT_MAX;
107 if (neg) {
122 if (neg) {
_wcstoul.h 59 int neg, any, cutlim; local in function:INT_FUNCNAME
79 neg = 1;
82 neg = 0;
118 if (neg && any > 0)
_wcstol.h 60 int neg, any, cutlim; local in function:INT_FUNCNAME
85 neg = 1;
88 neg = 0;
104 cutoff = neg ? __INT_MIN : __INT_MAX;
107 if (neg) {
122 if (neg) {

Completed in 25 milliseconds

1 2 3