Searched defs:neg (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/locale/
H A D_wcstol.h55 int neg, any, cutlim; local
73 neg = 1;
76 neg = 0;
92 cutoff = neg ? MIN_VALUE : MAX_VALUE;
95 if (neg) {
110 if (neg) {
H A D_wcstoul.h54 int neg, any, cutlim; local
71 neg = 1;
74 neg = 0;
110 if (neg && any > 0)
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dstrtoimax.c48 int neg, any, cutlim; local
60 neg = 1;
63 neg = 0;
86 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
94 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
97 if (neg) {
115 if (neg) {
H A Dstrtol.c49 int neg, any, cutlim; local
72 neg = 1;
75 neg = 0;
98 * 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
105 cutoff = neg ? LONG_MIN : LONG_MAX;
108 if (neg) {
126 if (neg) {
H A Dstrtoll.c50 int neg, any, cutlim; local
62 neg = 1;
65 neg = 0;
88 * either 7 (neg==0) or 8 (neg==1), meaning that if we have
96 cutoff = neg ? LLONG_MIN : LLONG_MAX;
99 if (neg) {
117 if (neg) {
H A Dstrtoul.c48 int neg, any, cutlim; local
58 neg = 1;
61 neg = 0;
97 if (neg && any > 0)
H A Dstrtoull.c50 int neg, any, cutlim; local
60 neg = 1;
63 neg = 0;
99 if (neg && any > 0)
H A Dstrtoumax.c48 int neg, any, cutlim; local
58 neg = 1;
61 neg = 0;
97 if (neg && any > 0)
/bionic/libc/tzcode/
H A Dlocaltime.c770 register int neg = 0; local
773 neg = 1;
780 if (neg)

Completed in 3371 milliseconds