Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 25 of 94) sorted by relevance

1234

/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_nist.c525 acc >>= 32; in BN_nist_mod_192()
531 acc >>= 32; in BN_nist_mod_192()
538 acc >>= 32; in BN_nist_mod_192()
545 acc >>= 32; in BN_nist_mod_192()
551 acc >>= 32; in BN_nist_mod_192()
686 acc >>= 32; in BN_nist_mod_224()
692 acc >>= 32; in BN_nist_mod_224()
698 acc >>= 32; in BN_nist_mod_224()
705 acc >>= 32; in BN_nist_mod_224()
712 acc >>= 32; in BN_nist_mod_224()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgenextract.c96 struct accum_extract acc; in gen_insn() local
113 VEC_pop (char, acc.pathstr); in gen_insn()
178 VEC_free (locstr,heap, acc.oplocs); in gen_insn()
179 VEC_free (locstr,heap, acc.duplocs); in gen_insn()
255 walk_rtx (XVECEXP (x, 2, i), acc); in walk_rtx()
256 VEC_pop (char, acc->pathstr); in walk_rtx()
274 walk_rtx (XVECEXP (x, 1, i), acc); in walk_rtx()
275 VEC_pop (char, acc->pathstr); in walk_rtx()
290 walk_rtx (XEXP (x, i), acc); in walk_rtx()
291 VEC_pop (char, acc->pathstr); in walk_rtx()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgenextract.c91 struct accum_extract *acc) in push_pathstr_operand() argument
108 struct accum_extract acc; in gen_insn() local
121 acc.pathstr.pop (); in gen_insn()
129 op_count = acc.oplocs.length (); in gen_insn()
130 dup_count = acc.duplocs.length (); in gen_insn()
141 char *b = acc.oplocs[j]; in gen_insn()
259 acc->pathstr.pop (); in walk_rtx()
266 acc->duplocs.safe_push (VEC_char_to_string (acc->pathstr)); in walk_rtx()
276 acc->pathstr.pop (); in walk_rtx()
292 acc->pathstr.pop (); in walk_rtx()
[all …]
/dragonfly/usr.sbin/ppp/
H A Dtcpmss.c85 #define ADJUST_CHECKSUM(acc, cksum) { \ argument
86 acc += cksum; \
87 if (acc < 0) { \
88 acc = -acc; \
89 acc = (acc >> 16) + (acc & 0xffff); \
90 acc += acc >> 16; \
91 cksum = (u_short) ~acc; \
93 acc = (acc >> 16) + (acc & 0xffff); \
94 acc += acc >> 16; \
95 cksum = (u_short) acc; \
/dragonfly/lib/libc/citrus/
H A D_strtol.h50 __INT acc, cutoff; in _FUNCNAME() local
123 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME()
135 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
136 acc = INT_MIN; in _FUNCNAME()
146 acc *= base; in _FUNCNAME()
147 acc -= i; in _FUNCNAME()
150 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
151 acc = INT_MAX; in _FUNCNAME()
161 acc *= base; in _FUNCNAME()
162 acc += i; in _FUNCNAME()
[all …]
H A D_strtoul.h49 __UINT acc, cutoff; in _FUNCNAME() local
97 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME()
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
109 acc = UINT_MAX; in _FUNCNAME()
119 acc *= (__UINT)base; in _FUNCNAME()
120 acc += i; in _FUNCNAME()
124 acc = -acc; in _FUNCNAME()
128 return (acc); in _FUNCNAME()
/dragonfly/lib/libc/stdlib/
H A D_strtol.h51 __INT acc, cutoff; in _FUNCNAME_L() local
122 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME_L()
136 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
138 acc = __INT_MIN; in _FUNCNAME_L()
142 acc *= base; in _FUNCNAME_L()
143 acc -= i; in _FUNCNAME_L()
146 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
148 acc = __INT_MAX; in _FUNCNAME_L()
152 acc *= base; in _FUNCNAME_L()
153 acc += i; in _FUNCNAME_L()
[all …]
H A D_strtoul.h51 __UINT acc, cutoff; in _FUNCNAME_L() local
100 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME_L()
113 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME_L()
115 acc = __UINT_MAX; in _FUNCNAME_L()
119 acc *= (__UINT)base; in _FUNCNAME_L()
120 acc += i; in _FUNCNAME_L()
124 acc = -acc; in _FUNCNAME_L()
128 return(acc); in _FUNCNAME_L()
/dragonfly/sys/libkern/
H A Dstrtoul.c52 unsigned long acc; in strtoul() local
78 for (acc = 0, any = 0;; c = *s++) { in strtoul()
89 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
93 acc *= base; in strtoul()
94 acc += c; in strtoul()
98 acc = ULONG_MAX; in strtoul()
100 acc = -acc; in strtoul()
103 return (acc); in strtoul()
H A Dstrtol.c52 unsigned long acc; in strtol() local
99 for (acc = 0, any = 0;; c = *s++) { in strtol()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
114 acc *= base; in strtol()
115 acc += c; in strtol()
119 acc = neg ? LONG_MIN : LONG_MAX; in strtol()
121 acc = -acc; in strtol()
124 return (acc); in strtol()
H A Dstrtouq.c50 u_quad_t acc; in strtouq() local
81 for (acc = 0, any = 0;; c = *s++) { in strtouq()
92 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtouq()
96 acc *= qbase; in strtouq()
97 acc += c; in strtouq()
101 acc = UQUAD_MAX; in strtouq()
103 acc = -acc; in strtouq()
106 return (acc); in strtouq()
H A Dstrtoq.c50 u_quad_t acc; in strtoq() local
103 for (acc = 0, any = 0;; c = *s++) { in strtoq()
114 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoq()
118 acc *= qbase; in strtoq()
119 acc += c; in strtoq()
123 acc = neg ? QUAD_MIN : QUAD_MAX; in strtoq()
125 acc = -acc; in strtoq()
128 return (acc); in strtoq()
/dragonfly/stand/lib/
H A Dstrtol.c45 unsigned long acc; in strtol() local
97 for (acc = 0, any = 0;; c = *s++) { in strtol()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
112 acc *= base; in strtol()
113 acc += c; in strtol()
117 acc = neg ? LONG_MIN : LONG_MAX; in strtol()
120 acc = -acc; in strtol()
123 return (acc); in strtol()
H A Dstrtoul.c51 unsigned long acc; in strtoul() local
82 acc = any = 0; in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
103 acc *= base; in strtoul()
104 acc += c; in strtoul()
108 acc = ULONG_MAX; in strtoul()
114 acc = -acc; in strtoul()
117 return (acc); in strtoul()
/dragonfly/contrib/bmake/
H A D_strtol.h59 __INT acc, cutoff; in _FUNCNAME() local
149 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME()
163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
164 acc = __INT_MIN; in _FUNCNAME()
174 acc *= base; in _FUNCNAME()
175 acc -= i; in _FUNCNAME()
178 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
179 acc = __INT_MAX; in _FUNCNAME()
189 acc *= base; in _FUNCNAME()
190 acc += i; in _FUNCNAME()
[all …]
/dragonfly/contrib/mpfr/src/
H A Dgammaonethird.c29 if (v <= ULONG_MAX / acc) \
30 acc *= v; \
33 mpfr_mul_ui (y, y, acc, mode); acc = v; \
41 if (v <= ULONG_MAX / acc) \
45 mpfr_div_ui (y, y, acc, mode); acc = v; \
56 unsigned long int acc = v1; in mpfr_mul_ui5() local
62 mpfr_mul_ui (y, y, acc, mode); in mpfr_mul_ui5()
69 unsigned long int acc = v1; in mpfr_div_ui2() local
72 mpfr_div_ui (y, y, acc, mode); in mpfr_div_ui2()
82 unsigned long int acc = v1; in mpfr_div_ui8() local
[all …]
/dragonfly/lib/libalias/
H A Dalias_local.h60 #define ADJUST_CHECKSUM(acc, cksum) \ argument
62 acc += cksum; \
63 if (acc < 0) { \
64 acc = -acc; \
65 acc = (acc >> 16) + (acc & 0xffff); \
66 acc += acc >> 16; \
67 cksum = (u_short) ~acc; \
69 acc = (acc >> 16) + (acc & 0xffff); \
70 acc += acc >> 16; \
71 cksum = (u_short) acc; \
/dragonfly/lib/libc/locale/
H A Dwcstoumax.c54 uintmax_t acc; in wcstoumax_l() local
86 acc = any = 0; in wcstoumax_l()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoumax_l()
112 acc *= base; in wcstoumax_l()
113 acc += c; in wcstoumax_l()
117 acc = UINTMAX_MAX; in wcstoumax_l()
123 acc = -acc; in wcstoumax_l()
126 return (acc); in wcstoumax_l()
H A Dwcstoll.c54 unsigned long long acc; in wcstoll_l() local
86 acc = any = 0; in wcstoll_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoll_l()
114 acc *= base; in wcstoll_l()
115 acc += c; in wcstoll_l()
119 acc = neg ? LLONG_MIN : LLONG_MAX; in wcstoll_l()
125 acc = -acc; in wcstoll_l()
128 return (acc); in wcstoll_l()
H A Dwcstoul.c53 unsigned long acc; in wcstoul_l() local
85 acc = any = 0; in wcstoul_l()
107 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoul_l()
111 acc *= base; in wcstoul_l()
112 acc += c; in wcstoul_l()
116 acc = ULONG_MAX; in wcstoul_l()
122 acc = -acc; in wcstoul_l()
125 return (acc); in wcstoul_l()
H A Dwcstol.c53 unsigned long acc; in wcstol_l() local
85 acc = any = 0; in wcstol_l()
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol_l()
113 acc *= base; in wcstol_l()
114 acc += c; in wcstol_l()
118 acc = neg ? LONG_MIN : LONG_MAX; in wcstol_l()
124 acc = -acc; in wcstol_l()
127 return (acc); in wcstol_l()
H A Dwcstoull.c54 unsigned long long acc; in wcstoull_l() local
86 acc = any = 0; in wcstoull_l()
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoull_l()
112 acc *= base; in wcstoull_l()
113 acc += c; in wcstoull_l()
117 acc = ULLONG_MAX; in wcstoull_l()
123 acc = -acc; in wcstoull_l()
126 return (acc); in wcstoull_l()
H A Dwcstoimax.c54 uintmax_t acc; in wcstoimax_l() local
86 acc = any = 0; in wcstoimax_l()
110 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoimax_l()
114 acc *= base; in wcstoimax_l()
115 acc += c; in wcstoimax_l()
119 acc = neg ? INTMAX_MIN : INTMAX_MAX; in wcstoimax_l()
125 acc = -acc; in wcstoimax_l()
128 return (acc); in wcstoimax_l()
/dragonfly/share/syscons/keymaps/
H A DMakefile5 KEYMAPS+= be.iso.kbd be.iso.acc.kbd
7 KEYMAPS+= br275.iso.kbd br275.iso.acc.kbd br275.cp850.kbd
10 KEYMAPS+= colemak.iso15.acc.kbd
17 KEYMAPS+= fr.iso.kbd fr.iso.acc.kbd fr.dvorak.kbd
18 KEYMAPS+= fr_CA.iso.acc.kbd
20 KEYMAPS+= gr.elot.acc.kbd gr.us101.acc.kbd
23 KEYMAPS+= icelandic.iso.kbd icelandic.iso.acc.kbd
31 KEYMAPS+= pt.iso.kbd pt.iso.acc.kbd
35 KEYMAPS+= spanish.iso.kbd spanish.iso.acc.kbd spanish.iso15.acc.kbd
37 KEYMAPS+= swissfrench.iso.kbd swissfrench.iso.acc.kbd swissfrench.cp850.kbd
[all …]
/dragonfly/sys/netgraph7/tcpmss/
H A Dng_tcpmss.c396 #define TCPMSS_ADJUST_CHECKSUM(acc, cksum) do { \ argument
397 acc += cksum; \
398 if (acc < 0) { \
399 acc = -acc; \
400 acc = (acc >> 16) + (acc & 0xffff); \
401 acc += acc >> 16; \
402 cksum = (u_short) ~acc; \
404 acc = (acc >> 16) + (acc & 0xffff); \
405 acc += acc >> 16; \
406 cksum = (u_short) acc; \

1234