| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/ |
| cond-bp.c | 21 int acc = 0, i, j; local 24 acc += i + j; /* STOP */ 25 return acc;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/ |
| cond-bp.c | 21 int acc = 0, i, j; local 24 acc += i + j; /* STOP */ 25 return acc;
|
| /src/sys/dev/raidframe/ |
| rf_acctrace.c | 78 RF_AccTotals_t *acc = &raid->acc_totals; local 86 acc->num_log_ents++; 88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us; 89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us; 90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us; 91 acc->recon_num_phys_ios += rec->num_phys_ios; 92 acc->recon_phys_io_us += rec->phys_io_us; 93 acc->recon_diskwait_us += rec->diskwait_us; 94 acc->recon_reccount++; 96 RF_HIST_ADD(acc->tot_hist, rec->total_us) [all...] |
| /src/common/lib/libc/stdlib/ |
| _strtol.h | 59 __INT acc, cutoff; local 149 for (acc = 0, any = 0;; c = *s++) { 163 if (acc < cutoff || (acc == cutoff && i > cutlim)) { 164 acc = __INT_MIN; 174 acc *= base; 175 acc -= i; 178 if (acc > cutoff || (acc == cutoff && i > cutlim)) { 179 acc = __INT_MAX [all...] |
| _strtoul.h | 59 __UINT acc, cutoff; local 127 for (acc = 0, any = 0;; c = *s++) { 140 if (acc > cutoff || (acc == cutoff && i > cutlim)) { 141 acc = __UINT_MAX; 151 acc *= (__UINT)base; 152 acc += i; 156 acc = -acc; 160 return(acc); [all...] |
| /src/sys/arch/ia64/stand/common/ |
| strtol.c | 60 unsigned long acc; local 112 for (acc = 0, any = 0;; c = *s++) { 123 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 127 acc *= base; 128 acc += c; 132 acc = neg ? LONG_MIN : LONG_MAX; 135 acc = -acc; 138 return (acc); [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| strtoll.c | 63 unsigned long long acc; local 96 acc = any = 0; 133 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 137 acc *= base; 138 acc += c; 142 acc = neg ? LLONG_MIN : LLONG_MAX; 148 acc = -acc; 151 return (acc); [all...] |
| strtoull.c | 63 unsigned long long acc; local 94 acc = any = 0; 111 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 115 acc *= base; 116 acc += c; 120 acc = ULLONG_MAX; 126 acc = -acc; 129 return (acc); [all...] |
| /src/external/bsd/libbind/dist/irs/ |
| dns.c | 62 struct irs_acc *acc; local 67 if (!(acc = memget(sizeof *acc))) { 71 memset(acc, 0x5e, sizeof *acc); 74 memput(acc, sizeof *acc); 88 acc->private = dns; 90 acc->gr_map = irs_dns_gr; 92 acc->gr_map = NULL [all...] |
| lcl.c | 57 struct irs_acc *acc; local 62 if (!(acc = memget(sizeof *acc))) { 66 memset(acc, 0x5e, sizeof *acc); 69 free(acc); 75 acc->private = lcl; 77 acc->gr_map = irs_lcl_gr; 79 acc->gr_map = NULL; 82 acc->pw_map = irs_lcl_pw [all...] |
| nis.c | 68 struct irs_acc *acc; local 80 if (!(acc = memget(sizeof *acc))) { 85 memset(acc, 0x5e, sizeof *acc); 86 acc->private = nis; 89 acc->gr_map = irs_nis_gr; 91 acc->gr_map = NULL; 94 acc->pw_map = irs_nis_pw; 96 acc->pw_map = NULL [all...] |
| /src/external/bsd/nvi/dist/clib/ |
| strtol.c | 62 register unsigned long acc; local 109 for (acc = 0, any = 0;; c = *s++) { 118 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) 122 acc *= base; 123 acc += c; 127 acc = neg ? LONG_MIN : LONG_MAX; 130 acc = -acc; 133 return (acc); [all...] |
| strtoul.c | 62 register unsigned long acc; local 88 for (acc = 0, any = 0;; c = *s++) { 97 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) 101 acc *= base; 102 acc += c; 106 acc = ULONG_MAX; 109 acc = -acc; 112 return (acc); [all...] |
| /src/external/gpl3/binutils/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |
| /src/external/gpl3/gcc/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |
| /src/external/gpl3/gdb/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| strtoul.c | 64 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...] |
| strtoull.c | 69 register ullong_type acc; local 95 for (acc = 0, any = 0;; c = *s++) { 104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) 108 acc *= base; 109 acc += c; 113 acc = ULLONG_MAX; 116 acc = -acc; 119 return (acc); [all...] |