Searched refs:acc (Results 1 - 25 of 110) sorted by relevance

12345

/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrtoll.c53 long long acc, cutoff; local
111 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
125 acc = LLONG_MIN;
129 acc *= base;
130 acc -= c;
133 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
135 acc
[all...]
H A Dstrtoul.c51 unsigned long acc, cutoff; local
81 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
94 acc = ULONG_MAX;
98 acc *= (unsigned long)base;
99 acc += c;
103 acc = -acc;
106 return (acc);
[all...]
H A Dstrtoull.c53 unsigned long long acc, cutoff; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
96 acc = ULLONG_MAX;
100 acc *= (unsigned long long)base;
101 acc += c;
105 acc = -acc;
108 return (acc);
[all...]
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_nist.c412 NIST_INT64 acc; /* accumulator */ local
416 acc = rp[0];
417 acc += bp[3 * 2 - 6];
418 acc += bp[5 * 2 - 6];
419 rp[0] = (unsigned int)acc;
420 acc >>= 32;
422 acc += rp[1];
423 acc += bp[3 * 2 - 5];
424 acc += bp[5 * 2 - 5];
425 rp[1] = (unsigned int)acc;
567 NIST_INT64 acc; /* accumulator */ local
738 NIST_INT64 acc; /* accumulator */ local
984 NIST_INT64 acc; /* accumulator */ local
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dstrtoul.c76 unsigned long acc; local
102 for (acc = 0, any = 0;; c = *s++) {
113 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
117 acc *= base;
118 acc += c;
122 acc = ULONG_MAX;
125 acc = -acc;
128 return (acc);
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrtol.c91 register unsigned long acc; local
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
151 acc *= base;
152 acc += c;
156 acc = neg ? LONG_MIN : LONG_MAX;
159 acc = -acc;
162 return (acc);
[all...]
H A Dstrtoul.c64 register unsigned long acc; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrtol.c91 register unsigned long acc; local
138 for (acc = 0, any = 0;; c = *s++) {
147 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
151 acc *= base;
152 acc += c;
156 acc = neg ? LONG_MIN : LONG_MAX;
159 acc = -acc;
162 return (acc);
[all...]
H A Dstrtoul.c64 register unsigned long acc; local
90 for (acc = 0, any = 0;; c = *s++) {
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
103 acc *= base;
104 acc += c;
108 acc = ULONG_MAX;
111 acc = -acc;
114 return (acc);
[all...]
/freebsd-11-stable/lib/libc/iconv/
H A D_strtoul.h49 __UINT acc, cutoff; local
94 for (acc = 0, any = 0;; c = *s++) {
105 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
106 acc = __UINT_MAX;
116 acc *= (__UINT)base;
117 acc += i;
121 acc = -acc;
125 return (acc);
[all...]
H A D_strtol.h50 __INT acc, cutoff; local
120 for (acc = 0, any = 0;; c = *s++) {
132 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
133 acc = __INT_MIN;
143 acc *= base;
144 acc -= i;
147 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
148 acc
[all...]
/freebsd-11-stable/sys/libkern/
H A Dstrtol.c56 unsigned long acc; local
103 for (acc = 0, any = 0;; c = *s++) {
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
118 acc *= base;
119 acc += c;
123 acc = neg ? LONG_MIN : LONG_MAX;
125 acc = -acc;
128 return (acc);
[all...]
H A Dstrtoq.c51 u_quad_t acc; local
104 for (acc = 0, any = 0;; c = *s++) {
115 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
119 acc *= qbase;
120 acc += c;
124 acc = neg ? QUAD_MIN : QUAD_MAX;
126 acc = -acc;
129 return (acc);
[all...]
H A Dstrtoul.c56 unsigned long acc; local
82 for (acc = 0, any = 0;; c = *s++) {
93 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
97 acc *= base;
98 acc += c;
102 acc = ULONG_MAX;
104 acc = -acc;
107 return (acc);
[all...]
H A Dstrtouq.c51 u_quad_t acc; local
81 for (acc = 0, any = 0;; c = *s++) {
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
96 acc *= qbase;
97 acc += c;
101 acc = UQUAD_MAX;
103 acc = -acc;
106 return (acc);
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dtcpmss.c80 * internet checksum. "acc" is a 32-bit
86 #define ADJUST_CHECKSUM(acc, cksum) { \
87 acc += cksum; \
88 if (acc < 0) { \
89 acc = -acc; \
90 acc = (acc >> 16) + (acc & 0xffff); \
91 acc
[all...]
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dstrto.c51 register LONGLONG_T acc, cutoff; local
118 for (acc = 0, any = 0;; c = (unsigned char) *s++)
132 if (acc < cutoff || (acc == cutoff && c > cutlim))
135 acc = LLONG_MIN;
141 acc *= base;
142 acc -= c;
147 if (acc > cutoff || (acc == cutoff && c > cutlim))
150 acc
191 register ULONGLONG_T acc, cutoff; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgenextract.c94 struct accum_extract acc; local
96 acc.oplocs = VEC_alloc (locstr,heap, 10);
97 acc.duplocs = VEC_alloc (locstr,heap, 10);
98 acc.dupnums = VEC_alloc (int,heap, 10);
99 acc.pathstr = VEC_alloc (char,heap, 20);
105 walk_rtx (XVECEXP (insn, 1, 0), &acc);
109 VEC_safe_push (char,heap, acc.pathstr, 'a' + i);
110 walk_rtx (XVECEXP (insn, 1, i), &acc);
111 VEC_pop (char, acc.pathstr);
119 op_count = VEC_length (locstr, acc
215 walk_rtx(rtx x, struct accum_extract *acc) argument
283 walk_rtx (XEXP (x, i), acc); local
292 walk_rtx (XVECEXP (x, i, j), acc); local
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dsyscons75 be.iso.acc) echo be.acc;;
79 br275.iso.acc) echo br;;
82 fr_CA.iso.acc) echo ca-fr;;
83 swissgerman.macbook.acc) echo ch.macbook.acc;;
84 swissgerman.iso.acc) echo ch.acc;;
86 swissfrench.iso.acc) echo ch-fr.acc;;
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Dstrtoimax.c58 uintmax_t acc; local
92 acc = any = 0;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
133 acc *= base;
134 acc += c;
138 acc = neg ? INTMAX_MIN : INTMAX_MAX;
144 acc = -acc;
147 return (acc);
[all...]
H A Dstrtoll.c58 unsigned long long acc; local
92 acc = any = 0;
129 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
133 acc *= base;
134 acc += c;
138 acc = neg ? LLONG_MIN : LLONG_MAX;
144 acc = -acc;
147 return (acc);
[all...]
H A Dstrtoul.c57 unsigned long acc; local
89 acc = any = 0;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
110 acc *= base;
111 acc += c;
115 acc = ULONG_MAX;
121 acc = -acc;
124 return (acc);
[all...]
H A Dstrtoull.c58 unsigned long long acc; local
90 acc = any = 0;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 acc *= base;
112 acc += c;
116 acc = ULLONG_MAX;
122 acc = -acc;
125 return (acc);
[all...]
H A Dstrtoumax.c58 uintmax_t acc; local
90 acc = any = 0;
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
111 acc *= base;
112 acc += c;
116 acc = UINTMAX_MAX;
122 acc = -acc;
125 return (acc);
[all...]
/freebsd-11-stable/lib/libc/locale/
H A Dwcstol.c53 unsigned long acc; local
82 acc = any = 0;
106 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
110 acc *= base;
111 acc += c;
115 acc = neg ? LONG_MIN : LONG_MAX;
121 acc = -acc;
124 return (acc);
[all...]

Completed in 226 milliseconds

12345