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

123

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D950612-1.c20 long long stack[16], *sp = &stack[16], acc = 0; local
27 *--sp = acc;
28 acc = ((long long)*pc++) << 32;
31 return (acc >> 32) + (((((unsigned long long) acc) & 0xffffffff) & (1 << 31)) != 0);
34 acc += ((long long)*pc++) << 32;
37 acc = *sp++ + acc;
40 acc -= ((long long)*pc++) << 32;
43 acc
[all...]
H A D920529-1.c6 unsigned long acc; local
12 acc = a[m - 1];
16 acc = (acc << 16) | a[j];
17 acc = acc % *b;
/openbsd-current/gnu/llvm/llvm/lib/Frontend/OpenACC/
H A DACC.cpp16 using namespace acc;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dd.c5 long long unsigned acc; local
8 acc = *str++ - '0';
15 acc = acc * 10 + d;
18 return acc;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D961122-1.c1 long long acc; variable
5 acc += (long long) a << 32;
10 acc -= (long long) a << 32;
15 acc = 0xffff00000000ll;
17 if (acc != 0x1000000000000ll)
20 if (acc != 0xffff00000000ll)
H A D920501-6.c10 long long unsigned acc; local
12 acc = *str++ - '0';
19 acc = acc * 10 + d;
22 return acc;
/openbsd-current/lib/libc/locale/
H A D_wcstol.h52 int_type acc, cutoff; local
102 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
113 acc = MIN_VALUE;
117 acc *= base;
118 acc -= i;
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
123 acc
[all...]
H A D_wcstoul.h51 uint_type acc, cutoff; local
92 for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
102 acc = MAX_VALUE;
106 acc *= (uint_type)base;
107 acc += i;
111 acc = -acc;
114 return (acc);
[all...]
/openbsd-current/lib/libc/stdlib/
H A Dstrtoimax.c45 intmax_t acc, cutoff; local
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 acc = INTMAX_MIN;
132 acc *= base;
133 acc -= c;
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
138 acc
[all...]
H A Dstrtol.c46 long acc, cutoff; local
114 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 acc = LONG_MIN;
132 acc *= base;
133 acc -= c;
136 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
138 acc
[all...]
H A Dstrtoul.c46 unsigned long acc, cutoff; local
83 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
96 acc = ULONG_MAX;
100 acc *= (unsigned long)base;
101 acc += c;
105 acc = -acc;
108 return (acc);
[all...]
H A Dstrtoull.c48 unsigned long long acc, cutoff; local
85 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
98 acc = ULLONG_MAX;
102 acc *= (unsigned long long)base;
103 acc += c;
107 acc = -acc;
110 return (acc);
[all...]
H A Dstrtoumax.c45 uintmax_t acc, cutoff; local
82 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
95 acc = UINTMAX_MAX;
99 acc *= (uintmax_t)base;
100 acc += c;
104 acc = -acc;
107 return (acc);
[all...]
H A Dstrtoll.c48 long long acc, cutoff; local
117 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
131 acc = LLONG_MIN;
135 acc *= base;
136 acc -= c;
139 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
141 acc
[all...]
/openbsd-current/sys/lib/libsa/
H A Dstrtol.c45 long acc, cutoff; local
102 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
118 acc = LONG_MIN;
121 acc *= base;
122 acc -= c;
125 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
127 acc
[all...]
H A Dstrtoll.c45 long long acc, cutoff; local
103 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
115 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
117 acc = LLONG_MIN;
120 acc *= base;
121 acc -= c;
124 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
126 acc
[all...]
/openbsd-current/libexec/ld.so/
H A Dstrtol.c47 long acc, cutoff; local
105 for (acc = 0, any = 0;; c = (unsigned char) *s++) {
119 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
121 acc = LONG_MIN;
124 acc *= base;
125 acc -= c;
128 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
130 acc
[all...]
/openbsd-current/gnu/lib/libiberty/src/
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...]
/openbsd-current/gnu/gcc/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...]
/openbsd-current/sys/arch/i386/stand/libsa/
H A Dmdrandom.c36 uint32_t hi, lo, acc; local
40 acc = hi ^ lo;
41 acc ^= acc >> 16;
42 acc ^= acc >> 8;
43 buf[i] ^= acc;
/openbsd-current/sys/arch/amd64/stand/libsa/
H A Dmdrandom.c32 uint32_t hi, lo, acc; local
35 acc = hi ^ lo;
36 acc ^= acc >> 16;
37 acc ^= acc >> 8;
38 buf[i] ^= acc;
/openbsd-current/lib/libcrypto/aes/asm/
H A Daes-586.pl202 $acc="esi";
245 my $v0 = $acc, $v1 = $key;
302 { my $v0 = $key, $v1 = $acc;
360 &movz ($acc,&LB("eax")); # 0
361 &mov ("ecx",&DWP(0,$tbl,$acc,8)); # 0
367 &movz ($acc,&LB("ebx")); # 10
368 &xor ("ecx",&DWP(2,$tbl,$acc,8)); # 10
370 &movz ($acc,&HB("ebx")); # 11
371 &xor ("edx",&DWP(1,$tbl,$acc,8)); # 11
374 &movz ($acc,
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/xray/
H A Dxray_utils.h67 constexpr size_t next_pow2_helper(size_t num, size_t acc) { argument
68 return (1u << acc) >= num ? (1u << acc) : next_pow2_helper(num, acc + 1);
/openbsd-current/usr.sbin/npppd/npppd/
H A Dnpppd_subr.c455 * The following macro is used to update an internet checksum. "acc" is a
460 #define ADJUST_CHECKSUM(acc, cksum) { \
461 acc += cksum; \
462 if (acc < 0) { \
463 acc = -acc; \
464 acc = (acc >> 16) + (acc & 0xffff); \
465 acc
484 int opt, optlen, acc, ip_off, mss, maxmss; local
[all...]

Completed in 219 milliseconds

123