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

1 2

  /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);
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
  /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)
muldi3.c 198 int neg; local in function:__lmulq
212 udiff = u1 - u0, neg = 0;
214 udiff = u0 - u1, neg = 1;
218 vdiff = v1 - v0, neg ^= 1;
227 /* if (neg) prod -= mid << N; else prod += mid << N; */
228 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)
  /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;
  /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)
  /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)
  /src/bin/stty/
modes.c 179 bool neg; local in function:modeset
188 if ((neg = (*name == '-')))
193 if (neg)
  /src/sys/arch/sparc64/include/
elf_support.h 52 const unsigned int NEG = 0x82200001U; /* neg %g1 */
141 * neg %g1
145 unsigned long neg = (-value)>>12; local in function:sparc_write_branch
146 where[1] = OR | (LOVAL(neg, 0)+1);
147 where[2] = NEG;
154 where[0] = SETHI | HIVAL(neg, 10);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe51_pack.S 76 neg %r12 label
ladder.S 128 neg %r10 label
129 neg %r11 label
130 neg %r12 label
131 neg %r13 label
ladder_base.S 79 neg %r10 label
80 neg %r11 label
81 neg %r12 label
82 neg %r13 label
  /src/bin/ksh/
tree.c 418 int neg; local in function:vfptreef
436 neg = c=='d' && n<0;
437 p = ulton((neg) ? -n : n, 10);
438 if (neg)
var.c 442 int base, neg; local in function:getint
460 neg = 0;
462 neg = 1;
492 if (neg)
  /src/usr.bin/make/
str.c 324 bool neg = pat[1] == '^'; local in function:Str_Match
325 pat += neg ? 2 : 1;
331 if (neg)
339 res.matched = neg;
355 if (neg && *pat != ']' && *pat != '\0')
  /src/sys/kern/
subr_userconf.c 260 int neg = 0; local in function:userconf_number
264 neg = 1;
293 if (neg && num > INT_MAX) /* overflow */
295 *val = neg ? - num : num;
  /src/lib/libc/time/
strptime.c 161 int alt_format, i, split_year = 0, neg = 0, state = 0, local in function:strptime_l
508 neg = 0;
511 neg = 1;
642 if (neg)
  /src/sys/dev/isapnp/
isapnp.c 167 u_char neg = isapnp_shift_bit(sc); local in function:isapnp_findcard
170 w |= neg;
171 v = ISAPNP_LFSR_NEXT(v) ^ neg;
178 u_char neg = isapnp_shift_bit(sc); local in function:isapnp_findcard
181 csum |= neg;

Completed in 27 milliseconds

1 2