HomeSort by: relevance | last modified time | path
    Searched defs:acc (Results 1 - 24 of 24) sorted by relevancy

  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
alphascale-asm9260.dtsi 26 clocks = <&acc CLKID_SYS_CPU>;
43 acc: clock-controller@80040000 { label
60 clocks = <&acc CLKID_AHB_TIMER0>;
  /src/sys/dev/raidframe/
rf_acctrace.c 78 RF_AccTotals_t *acc = &raid->acc_totals; local in function:rf_LogTraceRec
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 in function:_FUNCNAME
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 in function:_FUNCNAME
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 in function:strtol
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 in function:INT_FUNCNAME
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 in function:INT_FUNCNAME
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 in function:decode_decimal
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 in function:sodium_bin2base64
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 in function:sodium_base642bin
    [all...]
utils.c 714 unsigned char acc = 0U; local in function:sodium_unpad
729 (( (acc - 1U) & (pad_len - 1U) & ((c ^ 0x80) - 1U) ) >> 8) & 1U;
730 acc |= c;
  /src/sys/dev/acpi/
acpi_pmtr.c 120 uint32_t acc; local in function:acpipmtr_attach
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 in function:pwmclock_attach
161 acc = 0;
166 acc += diff;
169 sc->sc_scale[clk] = (acc >> 4) / 5000;
  /src/lib/libcrypt/
crypt-argon2.c 106 unsigned acc, acc_len; local in function:from_base64
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/tests/net/net/
t_unix.c 103 acc(int s) function in typeref:typename:int
315 acpt = acc(srvr);
456 int listener, conn, acc; local in function:ATF_TC_BODY
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 in function:lan9118_mii_readreg
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 in function:lan9118_mii_writereg
815 acc = LAN9118_MII_ACC_PHYA(phy) | LAN9118_MII_ACC_MIIRINDA(reg) |
818 lan9118_mac_writereg(sc, LAN9118_MII_ACC, acc);
  /src/sys/fs/v7fs/
v7fs_vnops.c 469 struct timespec *acc, *mod; local in function:v7fs_setattr
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/sys/arch/sun3/dev/
if_ie.c 683 int acc = 0; local in function:ie_packet_len
700 acc += ie_buflen(sc, head);
704 return acc;
  /src/usr.sbin/dumplfs/
dumplfs.c 587 int i, j, acc; local in function:dump_sum
705 acc = 0;
711 memcpy(datap + acc * el_size, buf, el_size);
714 ++acc;
718 memcpy(datap + acc * el_size, buf, el_size);
723 ++acc;
729 memcpy(datap + acc * el_size, buf, el_size);
732 ++acc;
735 if (acc != numblocks)
737 acc, numblocks)
    [all...]
  /src/usr.sbin/acpitools/aml/
aml_parse.c 700 u_int8_t acc, attribute; local in function:aml_parse_field
749 acc = env->dp[1];
752 AML_DEBUGPRINT("AccessAs(%s, %d)", accessnames[acc], attribute);
754 template->flags = (template->flags | 0xf0) | acc;
  /src/sys/arch/sparc64/dev/
sab.c 442 const char *acc; local in function:sabtty_attach
449 acc = "input";
452 acc = "output";
456 acc = "i/o";
487 aprint_normal(": console %s", acc);
  /src/common/dist/zlib/contrib/minizip/
unzip.c 901 uLong acc = 0; local in function:unz64local_GetCurrentFileInfoInternal
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 in function:ie_packet_len
1063 acc += ie_buflen(sc, head);
1067 return acc;
  /src/sbin/fdisk/
fdisk.c 2841 int64_t acc = 0; local in function:decimal
2867 acc = strtoll(lbuf, &cp, 10);
2872 acc *= 1024;
2876 acc *= SEC_IN_1M;
2878 acc += ptn_alignment / 2;
2879 acc /= ptn_alignment;
2883 acc *= ptn_alignment;
2885 if (acc == 0 && flags & DEC_RND_0)
2886 acc += ptn_0_offset;
2888 acc += ptn_0_offset
2915 unsigned int acc = 0; local in function:ptn_id
    [all...]
  /src/sys/opencrypto/
cryptodev.h 385 struct timespec acc; /* total accumulated time */ member in struct:cryptotstat

Completed in 32 milliseconds