HomeSort by: relevance | last modified time | path
    Searched refs:acc (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /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/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/common/lib/libc/stdlib/
_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...]
_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...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/alphascale/
alphascale-asm9260.dtsi 26 clocks = <&acc CLKID_SYS_CPU>;
43 acc: clock-controller@80040000 {
60 clocks = <&acc CLKID_AHB_TIMER0>;
  /src/sys/ufs/lfs/
lfs_itimes.c 58 lfs_itimes(struct inode *ip, const struct timespec *acc,
72 if (acc == NULL)
73 acc = &now;
75 lfs_dino_setatime(fs, ip->i_din, acc->tv_sec);
76 lfs_dino_setatimensec(fs, ip->i_din, acc->tv_nsec);
86 lfs_if_setatime_sec(fs, ifp, acc->tv_sec);
87 lfs_if_setatime_nsec(fs, ifp, acc->tv_nsec);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.h 68 constexpr size_t next_pow2_helper(size_t num, size_t acc) {
69 return (1u << acc) >= num ? (1u << acc) : next_pow2_helper(num, acc + 1);
  /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...]
  /src/sys/ufs/ext2fs/
ext2fs_subr.c 105 ext2fs_itimes(struct inode *ip, const struct timespec *acc,
116 if (acc == NULL)
117 acc = &now;
118 EXT2_DINODE_TIME_SET(acc, ip->i_din.e2fs_din, e2di_atime, EXT2_DINODE_SIZE(ip->i_e2fs));
ext2fs_extern.h 87 #define EXT2FS_ITIMES(ip, acc, mod, cre) \
89 ext2fs_itimes(ip, acc, mod, cre)
  /src/lib/libc/citrus/
citrus_prop.c 86 _type_ acc, cutoff; \
93 acc = (_type_)0; \
101 if (acc > cutoff || (acc == cutoff && n > cutlim)) \
103 acc *= base; \
104 acc += n; \
107 *result = acc; \
  /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/share/man/man4/man4.vax/
Makefile 4 MAN= acc.4 ad.4 asc.4 autoconf.4 \
  /src/sys/ufs/ufs/
ufsmount.h 146 #define UFS_ITIMES(vp, acc, mod, cre) \
147 (*UFS_OPS(vp)->uo_itimes)(VTOI(vp), (acc), (mod), (cre))
148 #define UFS_UPDATE(vp, acc, mod, flags) \
149 (*UFS_OPS(vp)->uo_update)((vp), (acc), (mod), (flags))
  /src/sys/fs/ptyfs/
ptyfs.h 150 #define PTYFS_ITIMES(ptyfs, acc, mod, cre) \
152 ptyfs_itimes(ptyfs, acc, mod, cre)
  /src/sys/ufs/chfs/
chfs_subr.c 306 chfs_itimes(struct chfs_inode *ip, const struct timespec *acc,
317 if (acc == NULL)
318 acc = &now;
319 ip->atime = acc->tv_sec;
340 chfs_update(struct vnode *vp, const struct timespec *acc,
348 chfs_itimes(ip, acc, mod, NULL);
  /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/fs/nilfs/
nilfs_subr.h 65 void nilfs_itimes(struct nilfs_node *nilfs_node, struct timespec *acc,
67 int nilfs_update(struct vnode *node, struct timespec *acc,
  /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/
mm.c 381 mm_mmap(dev_t dev, off_t off, int acc)
397 return mm_md_mmap(dev, off, acc);
409 if (acc & PROT_EXEC)
411 if (acc & PROT_READ)
413 if (acc & PROT_WRITE)
  /src/sys/ufs/ffs/
ffs_extern.h 71 #define FFS_ITIMES(ip, acc, mod, cre) \
73 ffs_itimes(ip, acc, mod, cre)
  /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/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]);

Completed in 33 milliseconds

1 2 3