Home
last modified time | relevance | path

Searched refs:neg (Results 1 – 25 of 112) sorted by relevance

12345

/titanic_41/usr/src/cmd/sendmail/libsm/
H A Dstrto.c51 register bool neg; variable
70 neg = true;
75 neg = false;
108 cutoff = neg ? LLONG_MIN : LLONG_MAX;
111 if (neg)
132 if (neg)
195 register bool neg; local
204 neg = (c == '-');
205 if (neg)
251 if (neg && any > 0)
/titanic_41/usr/src/lib/libnsl/rpc/
H A Dxdr_float.c138 int neg = 0; in xdr_float() local
151 neg = 1; in xdr_float()
165 val = neg; in xdr_float()
185 neg = val & 0x80000000; in xdr_float()
202 if (neg) in xdr_float()
226 int neg = 0; in xdr_double() local
242 neg = 1; in xdr_double()
256 val[0] = (neg << 11); /* for the exponent */ in xdr_double()
280 neg = val[0] & 0x80000000; in xdr_double()
297 if (neg) in xdr_double()
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dlcp.c878 #define LENCIVOID(neg) ((neg) ? CILEN_VOID : 0) argument
879 #define LENCICHAP(neg) ((neg) ? CILEN_CHAP : 0) argument
880 #define LENCICHAR(neg) ((neg) ? CILEN_CHAR : 0) argument
881 #define LENCISHORT(neg) ((neg) ? CILEN_SHORT : 0) argument
882 #define LENCILONG(neg) ((neg) ? CILEN_LONG : 0) argument
883 #define LENCILQR(neg) ((neg) ? CILEN_LQR: 0) argument
884 #define LENCICBCP(neg) ((neg) ? CILEN_CBCP: 0) argument
922 #define ADDCIVOID(opt, neg) \ argument
923 if (neg) { \
927 #define ADDCISHORT(opt, neg, val) \ argument
[all …]
H A Dipv6cp.c481 #define LENCIVJ(neg) (neg ? CILEN_COMPRESS : 0) argument
482 #define LENCIIFACEID(neg) (neg ? CILEN_IFACEID : 0) argument
501 #define ADDCIVJ(opt, neg, val) \ argument
502 if (neg) { \
510 neg = 0; \
513 #define ADDCIIFACEID(opt, neg, val1) \ argument
514 if (neg) { \
522 neg = 0; \
556 #define ACKCIVJ(opt, neg, val) \ argument
557 if (neg) { \
[all …]
H A Dipcp.c510 #define LENCIADDRS(neg) (neg ? CILEN_ADDRS : 0) argument
511 #define LENCIVJ(neg, old) (neg ? (old? CILEN_COMPRESS : CILEN_VJ) : 0) argument
512 #define LENCIADDR(neg) (neg ? (CILEN_ADDR) : 0) argument
552 #define ADDCIADDRS(opt, neg, val1, val2) \ argument
553 if (neg) { \
564 #define ADDCIVJ(opt, neg, val, old, maxslotindex, cflag) \ argument
565 if (neg) { \
577 neg = 0; \
580 #define ADDCIADDR(opt, neg, val) \ argument
581 if (neg) { \
[all …]
/titanic_41/usr/src/lib/libc/port/fp/
H A Ddivdi3.c52 int neg; in ___divdi3() local
55 ua = -(u_longlong_t)a, neg = 1; in ___divdi3()
57 ua = a, neg = 0; in ___divdi3()
59 ub = -(u_longlong_t)b, neg ^= 1; in ___divdi3()
63 return (neg ? -uq : uq); in ___divdi3()
H A Dmoddi3.c54 int neg; in ___moddi3() local
57 ua = -(u_longlong_t)a, neg = 1; in ___moddi3()
59 ua = a, neg = 0; in ___moddi3()
65 return (neg ? -ur : ur); in ___moddi3()
H A Dmuldi3.c193 int neg; in __lmulq() local
207 udiff = u1 - u0, neg = 0; in __lmulq()
209 udiff = u0 - u1, neg = 1; in __lmulq()
213 vdiff = v1 - v0, neg ^= 1; in __lmulq()
223 if (neg) { in __lmulq()
/titanic_41/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.aggpack.d27 @neg = lquantize(-10, -10, 20, 1, -1);
28 @neg = lquantize(-5, -10, 20, 1, 1);
29 @neg = lquantize(0, -10, 20, 1, 1);
50 printa(@neg);
52 printa(@neg);
/titanic_41/usr/src/head/
H A Dregexp.h85 int neg; in compile() local
160 neg = 0; in compile()
162 neg = 1; in compile()
205 if (neg) { in compile()
344 register char neg; in advance() local
348 neg = 0; in advance()
384 neg = 1; in advance()
389 if (((c & 0200) == 0 && ISTHERE(c)) ^ neg) { in advance()
457 neg = 1; in advance()
464 if (((c & 0200) || !ISTHERE(c)) ^ neg) in advance()
[all …]
/titanic_41/usr/src/common/util/
H A Dstrtol.c59 int neg = 0; in ddi_strtol() local
81 neg++; in ddi_strtol()
112 if (neg) in ddi_strtol()
131 *result = neg ? val : -val; in ddi_strtol()
134 return (neg ? val : -val); in ddi_strtol()
146 return (neg ? LONG_MIN : LONG_MAX); in ddi_strtol()
H A Dstrtoll.c55 int neg = 0; in ddi_strtoll() local
77 neg++; in ddi_strtoll()
107 if (neg) in ddi_strtoll()
126 *result = neg ? val : -val; in ddi_strtoll()
129 return (neg ? val : -val); in ddi_strtoll()
141 return (neg ? LLONG_MIN : LLONG_MAX); in ddi_strtoll()
H A Dstrtoul.c55 int neg = 0; in ddi_strtoul() local
76 neg++; in ddi_strtoul()
119 *result = neg ? -val : val; in ddi_strtoul()
122 return (neg ? -val : val); in ddi_strtoul()
H A Dstrtoull.c55 int neg = 0; in ddi_strtoull() local
76 neg++; in ddi_strtoull()
119 *result = neg ? -val : val; in ddi_strtoull()
122 return (neg ? -val : val); in ddi_strtoull()
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dfrexp.c37 int neg, j; local
40 neg = 0;
43 neg = 1;
56 if(neg)
H A Datoi.c45 register int c, neg = 0; local
52 neg++;
63 return (neg ? n : -n);
H A Datol.c45 register int c, neg = 0; local
52 neg++;
63 return (neg ? n : -n);
H A Dstrtol.c41 int xx, neg = 0; local
52 neg++;
78 return (neg ? val : -val);
/titanic_41/usr/src/lib/libgen/common/
H A Dreg_step.c236 int neg; in _advance() local
241 neg = 0; in _advance()
288 neg = 1; in _advance()
293 if (cclass(ep, &rp, neg) != 1) in _advance()
377 neg = 1; in _advance()
384 if (cclass(ep, &rp, neg) != 1) in _advance()
388 while (size-- && (c = (cclass(ep, &rp, neg))) == 1) in _advance()
482 neg = 1; in _advance()
487 while ((d = cclass(ep, &rp, neg)) == 1) in _advance()
606 cclass(char *ep, char **rp, int neg) in cclass() argument
[all …]
/titanic_41/usr/src/lib/libc/port/i18n/
H A Dwcstol.c65 int xx, neg = 0; in wcstoll() local
81 neg++; in wcstoll()
109 if (neg) { in wcstoll()
128 return (neg ? val : -val); in wcstoll()
137 return (neg ? _WLONG_MIN : _WLONG_MAX); in wcstoll()
/titanic_41/usr/src/lib/libresolv2/common/bsd/
H A Dstrtoul.c65 int neg, c, any, cutlim; in strtoul() local
67 neg = 0; in strtoul()
76 neg = 1; in strtoul()
110 } else if (neg) in strtoul()
/titanic_41/usr/src/lib/libc/sparcv9/gen/
H A Dabs.s37 neg %o0
48 neg %o0
59 neg %o0
/titanic_41/usr/src/lib/libc/port/gen/
H A Datoi.c51 int c, neg = 0; in NAME() local
59 neg++; in NAME()
71 return (neg ? n : -n); in NAME()
H A Datol.c51 int c, neg = 0; in NAME() local
59 neg++; in NAME()
71 return (neg ? n : -n); in NAME()
H A Datoll.c54 int c, neg = 0; in NAME() local
62 neg++; in NAME()
74 return (neg ? n : -n); in NAME()

12345