| /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/lib/libc/locale/ |
| _wcstol.h | 57 __INT acc, cutoff; local 66 (void)&acc; (void)&cutoff; 114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { 123 if (acc < cutoff || (acc == cutoff && i > cutlim)) { 125 acc = __INT_MIN; 129 acc *= base; 130 acc -= i; 133 if (acc > cutoff || (acc == cutoff && i > cutlim)) [all...] |
| _wcstoul.h | 56 __UINT acc, cutoff; local 100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { 108 if (acc > cutoff || (acc == cutoff && i > cutlim)) { 110 acc = __UINT_MAX; 114 acc *= (__UINT)base; 115 acc += i; 119 acc = -acc; 122 return (acc); [all...] |
| /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/ |
| argon2-encoding.c | 42 unsigned long acc; local 44 acc = 0; 53 if (acc > (ULONG_MAX / 10)) { 56 acc *= 10; 57 if ((unsigned long) c > (ULONG_MAX - acc)) { 60 acc += (unsigned long) c; 65 *v = acc;
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/ |
| codecs.c | 189 unsigned int acc = 0U; local 207 acc = (acc << 8) + bin[bin_pos++]; 211 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F); 215 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F); 219 acc = (acc << 8) + bin[bin_pos++]; 223 b64[b64_pos++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F); 227 b64[b64_pos++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F); 276 unsigned int acc = 0U local [all...] |
| utils.c | 714 unsigned char acc = 0U; local 729 (( (acc - 1U) & (pad_len - 1U) & ((c ^ 0x80) - 1U) ) >> 8) & 1U; 730 acc |= c;
|
| /src/lib/libcrypt/ |
| crypt-argon2.c | 106 unsigned acc, acc_len; local 110 acc = 0; 120 acc = (acc << 6) + d; 127 *buf++ = (acc >> acc_len) & 0xFF; 137 if (acc_len > 4 || (acc & (((unsigned)1 << acc_len) - 1)) != 0) {
|
| /src/sys/dev/acpi/ |
| acpi_pmtr.c | 120 uint32_t acc; local 141 if ((acc = sc->sc_cap[ACPIPMTR_CAP_ACCURACY]) == 0) 142 acc = 100000; 147 acc / 1000, acc % 1000, sc->sc_cap[ACPIPMTR_CAP_SAMPLING]);
|
| /src/sys/dev/pci/voyager/ |
| pwmclock.c | 126 uint32_t reg, last, curr, diff, acc; local 161 acc = 0; 166 acc += diff; 169 sc->sc_scale[clk] = (acc >> 4) / 5000;
|
| /src/tests/net/net/ |
| t_unix.c | 103 acc(int s) function 315 acpt = acc(srvr); 456 int listener, conn, acc; local 486 RL(acc = accept(listener, NULL, NULL)); 487 RL(close(acc)); 506 RL(acc = accept(listener, NULL, NULL)); 520 RL(close(acc));
|
| /src/sys/dev/ic/ |
| lan9118.c | 796 uint32_t acc; local 800 acc = LAN9118_MII_ACC_PHYA(phy) | LAN9118_MII_ACC_MIIRINDA(reg); 801 lan9118_mac_writereg(sc, LAN9118_MII_ACC, acc); 811 uint32_t acc; local 815 acc = LAN9118_MII_ACC_PHYA(phy) | LAN9118_MII_ACC_MIIRINDA(reg) | 818 lan9118_mac_writereg(sc, LAN9118_MII_ACC, acc);
|
| /src/sys/arch/sun3/dev/ |
| if_ie.c | 683 int acc = 0; local 700 acc += ie_buflen(sc, head); 704 return acc;
|
| /src/sys/fs/v7fs/ |
| v7fs_vnops.c | 469 struct timespec *acc, *mod; local 471 acc = mod = NULL; 557 acc = &vap->va_atime; 569 v7fs_update(vp, acc, mod, 0); 1232 v7fs_update(struct vnode *vp, const struct timespec *acc, 1244 inode->atime = acc ? acc->tv_sec : time_second;
|
| /src/usr.sbin/dumplfs/ |
| dumplfs.c | 593 int i, j, acc; local 711 acc = 0; 717 memcpy(datap + acc * el_size, buf, el_size); 720 ++acc; 724 memcpy(datap + acc * el_size, buf, el_size); 729 ++acc; 735 memcpy(datap + acc * el_size, buf, el_size); 738 ++acc; 741 if (acc != numblocks) 743 acc, numblocks) [all...] |
| /src/common/dist/zlib/contrib/minizip/ |
| unzip.c | 901 uLong acc = 0; local 914 while(acc < file_info.size_file_extra) 961 acc += 2 + 2 + dataSize;
|
| /src/sys/arch/acorn32/podulebus/ |
| if_ie.c | 1049 int acc=0; local 1063 acc += ie_buflen(sc, head); 1067 return acc;
|
| /src/sys/arch/sparc64/dev/ |
| sab.c | 442 const char *acc; local 449 acc = "input"; 452 acc = "output"; 456 acc = "i/o"; 487 aprint_normal(": console %s", acc);
|
| /src/usr.sbin/acpitools/aml/ |
| aml_parse.c | 700 u_int8_t acc, attribute; local 749 acc = env->dp[1]; 752 AML_DEBUGPRINT("AccessAs(%s, %d)", accessnames[acc], attribute); 754 template->flags = (template->flags | 0xf0) | acc;
|
| /src/sbin/fdisk/ |
| fdisk.c | 2844 int64_t acc = 0; local 2870 acc = strtoll(lbuf, &cp, 10); 2875 acc *= 1024; 2879 acc *= SEC_IN_1M; 2881 acc += ptn_alignment / 2; 2882 acc /= ptn_alignment; 2886 acc *= ptn_alignment; 2888 if (acc == 0 && flags & DEC_RND_0) 2889 acc += ptn_0_offset; 2891 acc += ptn_0_offset 2918 unsigned int acc = 0; local [all...] |
| /src/sys/opencrypto/ |
| cryptodev.h | 385 struct timespec acc; /* total accumulated time */ member in struct:cryptotstat
|