common/lib/libc/stdlib/_strtol.h
149
for (acc = 0, any = 0;; c = *s++) {
common/lib/libc/stdlib/_strtol.h
163
if (acc < cutoff || (acc == cutoff && i > cutlim)) {
common/lib/libc/stdlib/_strtol.h
164
acc = __INT_MIN;
common/lib/libc/stdlib/_strtol.h
174
acc *= base;
common/lib/libc/stdlib/_strtol.h
175
acc -= i;
common/lib/libc/stdlib/_strtol.h
178
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
common/lib/libc/stdlib/_strtol.h
179
acc = __INT_MAX;
common/lib/libc/stdlib/_strtol.h
189
acc *= base;
common/lib/libc/stdlib/_strtol.h
190
acc += i;
common/lib/libc/stdlib/_strtol.h
197
return(acc);
common/lib/libc/stdlib/_strtol.h
59
__INT acc, cutoff;
common/lib/libc/stdlib/_strtoul.h
127
for (acc = 0, any = 0;; c = *s++) {
common/lib/libc/stdlib/_strtoul.h
140
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
common/lib/libc/stdlib/_strtoul.h
141
acc = __UINT_MAX;
common/lib/libc/stdlib/_strtoul.h
151
acc *= (__UINT)base;
common/lib/libc/stdlib/_strtoul.h
152
acc += i;
common/lib/libc/stdlib/_strtoul.h
156
acc = -acc;
common/lib/libc/stdlib/_strtoul.h
160
return(acc);
common/lib/libc/stdlib/_strtoul.h
59
__UINT acc, cutoff;
games/mille/move.c
124
acc:
games/mille/move.c
137
goto acc;
include/vis_proto.h
752
vis_pdist(vis_d64 pixels1, vis_d64 pixels2, vis_d64 acc)
include/vis_proto.h
755
: "+f"(acc)
include/vis_proto.h
758
return acc;
lib/libc/citrus/citrus_prop.c
101
if (acc > cutoff || (acc == cutoff && n > cutlim)) \
lib/libc/citrus/citrus_prop.c
103
acc *= base; \
lib/libc/citrus/citrus_prop.c
104
acc += n; \
lib/libc/citrus/citrus_prop.c
107
*result = acc; \
lib/libc/citrus/citrus_prop.c
86
_type_ acc, cutoff; \
lib/libc/citrus/citrus_prop.c
93
acc = (_type_)0; \
lib/libc/locale/_wcstol.h
114
for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
lib/libc/locale/_wcstol.h
123
if (acc < cutoff || (acc == cutoff && i > cutlim)) {
lib/libc/locale/_wcstol.h
125
acc = __INT_MIN;
lib/libc/locale/_wcstol.h
129
acc *= base;
lib/libc/locale/_wcstol.h
130
acc -= i;
lib/libc/locale/_wcstol.h
133
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
lib/libc/locale/_wcstol.h
135
acc = __INT_MAX;
lib/libc/locale/_wcstol.h
139
acc *= base;
lib/libc/locale/_wcstol.h
140
acc += i;
lib/libc/locale/_wcstol.h
146
return (acc);
lib/libc/locale/_wcstol.h
57
__INT acc, cutoff;
lib/libc/locale/_wcstol.h
66
(void)&acc; (void)&cutoff;
lib/libc/locale/_wcstoul.h
100
for (acc = 0, any = 0;; wc = (wchar_t) *s++) {
lib/libc/locale/_wcstoul.h
108
if (acc > cutoff || (acc == cutoff && i > cutlim)) {
lib/libc/locale/_wcstoul.h
110
acc = __UINT_MAX;
lib/libc/locale/_wcstoul.h
114
acc *= (__UINT)base;
lib/libc/locale/_wcstoul.h
115
acc += i;
lib/libc/locale/_wcstoul.h
119
acc = -acc;
lib/libc/locale/_wcstoul.h
122
return (acc);
lib/libc/locale/_wcstoul.h
56
__UINT acc, cutoff;
lib/libcrypt/crypt-argon2.c
106
unsigned acc, acc_len;
lib/libcrypt/crypt-argon2.c
110
acc = 0;
lib/libcrypt/crypt-argon2.c
120
acc = (acc << 6) + d;
lib/libcrypt/crypt-argon2.c
127
*buf++ = (acc >> acc_len) & 0xFF;
lib/libcrypt/crypt-argon2.c
137
if (acc_len > 4 || (acc & (((unsigned)1 << acc_len) - 1)) != 0) {
sbin/fdisk/fdisk.c
2844
int64_t acc = 0;
sbin/fdisk/fdisk.c
2870
acc = strtoll(lbuf, &cp, 10);
sbin/fdisk/fdisk.c
2875
acc *= 1024;
sbin/fdisk/fdisk.c
2879
acc *= SEC_IN_1M;
sbin/fdisk/fdisk.c
2881
acc += ptn_alignment / 2;
sbin/fdisk/fdisk.c
2882
acc /= ptn_alignment;
sbin/fdisk/fdisk.c
2886
acc *= ptn_alignment;
sbin/fdisk/fdisk.c
2888
if (acc == 0 && flags & DEC_RND_0)
sbin/fdisk/fdisk.c
2889
acc += ptn_0_offset;
sbin/fdisk/fdisk.c
2891
acc += ptn_0_offset;
sbin/fdisk/fdisk.c
2893
acc -= ptn_0_offset;
sbin/fdisk/fdisk.c
2895
acc -= ptn_0_offset;
sbin/fdisk/fdisk.c
2909
if (acc >= minval && acc <= maxval)
sbin/fdisk/fdisk.c
2910
return acc;
sbin/fdisk/fdisk.c
2911
printf("%" PRId64 " is not between %" PRId64 " and %" PRId64 ".\n", acc, minval, maxval);
sbin/fdisk/fdisk.c
2918
unsigned int acc = 0;
sbin/fdisk/fdisk.c
2939
acc = strtoul(cp, &cp, 10);
sbin/fdisk/fdisk.c
2945
if (*extended || acc < MBR_PART_COUNT)
sbin/fdisk/fdisk.c
2946
return acc;
share/examples/refuse/fanoutfs/fanoutfs.c
362
fanoutfs_access(const char *path, int acc)
share/examples/refuse/fanoutfs/fanoutfs.c
369
if (access(name, acc) < 0) {
share/examples/refuse/icfs/icfs.c
248
icfs_access(const char *path, int acc)
share/examples/refuse/icfs/icfs.c
257
if (access(name, acc) < 0) {
sys/arch/acorn32/podulebus/if_ie.c
1049
int acc=0;
sys/arch/acorn32/podulebus/if_ie.c
1063
acc += ie_buflen(sc, head);
sys/arch/acorn32/podulebus/if_ie.c
1067
return acc;
sys/arch/ia64/stand/common/strtol.c
112
for (acc = 0, any = 0;; c = *s++) {
sys/arch/ia64/stand/common/strtol.c
123
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
sys/arch/ia64/stand/common/strtol.c
127
acc *= base;
sys/arch/ia64/stand/common/strtol.c
128
acc += c;
sys/arch/ia64/stand/common/strtol.c
132
acc = neg ? LONG_MIN : LONG_MAX;
sys/arch/ia64/stand/common/strtol.c
135
acc = -acc;
sys/arch/ia64/stand/common/strtol.c
138
return (acc);
sys/arch/ia64/stand/common/strtol.c
60
unsigned long acc;
sys/arch/sparc64/dev/sab.c
442
const char *acc;
sys/arch/sparc64/dev/sab.c
449
acc = "input";
sys/arch/sparc64/dev/sab.c
452
acc = "output";
sys/arch/sparc64/dev/sab.c
456
acc = "i/o";
sys/arch/sparc64/dev/sab.c
487
aprint_normal(": console %s", acc);
sys/arch/sun3/dev/if_ie.c
683
int acc = 0;
sys/arch/sun3/dev/if_ie.c
700
acc += ie_buflen(sc, head);
sys/arch/sun3/dev/if_ie.c
704
return acc;
sys/dev/acpi/acpi_pmtr.c
120
uint32_t acc;
sys/dev/acpi/acpi_pmtr.c
141
if ((acc = sc->sc_cap[ACPIPMTR_CAP_ACCURACY]) == 0)
sys/dev/acpi/acpi_pmtr.c
142
acc = 100000;
sys/dev/acpi/acpi_pmtr.c
147
acc / 1000, acc % 1000, sc->sc_cap[ACPIPMTR_CAP_SAMPLING]);
sys/dev/ic/lan9118.c
796
uint32_t acc;
sys/dev/ic/lan9118.c
800
acc = LAN9118_MII_ACC_PHYA(phy) | LAN9118_MII_ACC_MIIRINDA(reg);
sys/dev/ic/lan9118.c
801
lan9118_mac_writereg(sc, LAN9118_MII_ACC, acc);
sys/dev/ic/lan9118.c
811
uint32_t acc;
sys/dev/ic/lan9118.c
815
acc = LAN9118_MII_ACC_PHYA(phy) | LAN9118_MII_ACC_MIIRINDA(reg) |
sys/dev/ic/lan9118.c
818
lan9118_mac_writereg(sc, LAN9118_MII_ACC, acc);
sys/dev/mm.c
384
mm_mmap(dev_t dev, off_t off, int acc)
sys/dev/mm.c
400
return mm_md_mmap(dev, off, acc);
sys/dev/mm.c
412
if (acc & PROT_EXEC)
sys/dev/mm.c
414
if (acc & PROT_READ)
sys/dev/mm.c
416
if (acc & PROT_WRITE)
sys/dev/pci/voyager/pwmclock.c
126
uint32_t reg, last, curr, diff, acc;
sys/dev/pci/voyager/pwmclock.c
161
acc = 0;
sys/dev/pci/voyager/pwmclock.c
166
acc += diff;
sys/dev/pci/voyager/pwmclock.c
169
sc->sc_scale[clk] = (acc >> 4) / 5000;
sys/dev/raidframe/rf_acctrace.c
102
acc->bigvals++;
sys/dev/raidframe/rf_acctrace.c
103
acc->total_us += rec->total_us;
sys/dev/raidframe/rf_acctrace.c
104
acc->suspend_ovhd_us += rec->specific.user.suspend_ovhd_us;
sys/dev/raidframe/rf_acctrace.c
105
acc->map_us += rec->specific.user.map_us;
sys/dev/raidframe/rf_acctrace.c
106
acc->lock_us += rec->specific.user.lock_us;
sys/dev/raidframe/rf_acctrace.c
107
acc->dag_create_us += rec->specific.user.dag_create_us;
sys/dev/raidframe/rf_acctrace.c
108
acc->dag_retry_us += rec->specific.user.dag_retry_us;
sys/dev/raidframe/rf_acctrace.c
109
acc->exec_us += rec->specific.user.exec_us;
sys/dev/raidframe/rf_acctrace.c
110
acc->cleanup_us += rec->specific.user.cleanup_us;
sys/dev/raidframe/rf_acctrace.c
111
acc->exec_engine_us += rec->specific.user.exec_engine_us;
sys/dev/raidframe/rf_acctrace.c
112
acc->xor_us += rec->xor_us;
sys/dev/raidframe/rf_acctrace.c
113
acc->q_us += rec->q_us;
sys/dev/raidframe/rf_acctrace.c
114
acc->plog_us += rec->plog_us;
sys/dev/raidframe/rf_acctrace.c
115
acc->diskqueue_us += rec->diskqueue_us;
sys/dev/raidframe/rf_acctrace.c
116
acc->diskwait_us += rec->diskwait_us;
sys/dev/raidframe/rf_acctrace.c
117
acc->num_phys_ios += rec->num_phys_ios;
sys/dev/raidframe/rf_acctrace.c
118
acc->phys_io_us = rec->phys_io_us;
sys/dev/raidframe/rf_acctrace.c
119
acc->user_reccount++;
sys/dev/raidframe/rf_acctrace.c
78
RF_AccTotals_t *acc = &raid->acc_totals;
sys/dev/raidframe/rf_acctrace.c
86
acc->num_log_ents++;
sys/dev/raidframe/rf_acctrace.c
88
acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us;
sys/dev/raidframe/rf_acctrace.c
89
acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us;
sys/dev/raidframe/rf_acctrace.c
90
acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us;
sys/dev/raidframe/rf_acctrace.c
91
acc->recon_num_phys_ios += rec->num_phys_ios;
sys/dev/raidframe/rf_acctrace.c
92
acc->recon_phys_io_us += rec->phys_io_us;
sys/dev/raidframe/rf_acctrace.c
93
acc->recon_diskwait_us += rec->diskwait_us;
sys/dev/raidframe/rf_acctrace.c
94
acc->recon_reccount++;
sys/dev/raidframe/rf_acctrace.c
96
RF_HIST_ADD(acc->tot_hist, rec->total_us);
sys/dev/raidframe/rf_acctrace.c
97
RF_HIST_ADD(acc->dw_hist, rec->diskwait_us);
sys/dev/usb/uatp.c
1781
interpret_dimension(struct uatp_softc *sc, const int *acc,
sys/dev/usb/uatp.c
1841
CHECK_(0 <= acc[i]);
sys/dev/usb/uatp.c
1842
v = acc[i];
sys/dev/usb/uatp.c
1866
CHECK_(0 <= acc[i - 1]);
sys/dev/usb/uatp.c
1873
((unsigned int)acc[i - 1] > v)) {
sys/dev/usb/uatp.c
1876
((unsigned int)acc[i - 1] < v)) {
sys/fs/msdosfs/denode.h
261
#define DETIMES(dep, acc, mod, cre, gmtoff) \
sys/fs/msdosfs/denode.h
263
msdosfs_detimes(dep, acc, mod, cre, gmtoff)
sys/fs/msdosfs/msdosfs_vnops.c
1429
msdosfs_detimes(struct denode *dep, const struct timespec *acc,
sys/fs/msdosfs/msdosfs_vnops.c
1448
if (acc == NULL)
sys/fs/msdosfs/msdosfs_vnops.c
1449
acc = ts == NULL ?
sys/fs/msdosfs/msdosfs_vnops.c
1451
msdosfs_unix2dostime(acc, gmtoff, &dep->de_ADate,
sys/fs/msdosfs/msdosfs_vnops.c
679
msdosfs_update(struct vnode *vp, const struct timespec *acc,
sys/fs/msdosfs/msdosfs_vnops.c
690
DETIMES(dep, acc, mod, NULL, dep->de_pmp->pm_gmtoff);
sys/fs/nilfs/nilfs_subr.c
728
nilfs_itimes(struct nilfs_node *node, struct timespec *acc,
sys/fs/nilfs/nilfs_subr.c
735
nilfs_update(struct vnode *node, struct timespec *acc,
sys/fs/nilfs/nilfs_subr.h
65
void nilfs_itimes(struct nilfs_node *nilfs_node, struct timespec *acc,
sys/fs/nilfs/nilfs_subr.h
67
int nilfs_update(struct vnode *node, struct timespec *acc,
sys/fs/ptyfs/ptyfs.h
150
#define PTYFS_ITIMES(ptyfs, acc, mod, cre) \
sys/fs/ptyfs/ptyfs.h
152
ptyfs_itimes(ptyfs, acc, mod, cre)
sys/fs/ptyfs/ptyfs_vnops.c
917
ptyfs_update(struct vnode *vp, const struct timespec *acc,
sys/fs/ptyfs/ptyfs_vnops.c
925
PTYFS_ITIMES(ptyfs, acc, mod, NULL);
sys/fs/ptyfs/ptyfs_vnops.c
930
ptyfs_itimes(struct ptyfsnode *ptyfs, const struct timespec *acc,
sys/fs/ptyfs/ptyfs_vnops.c
939
if (acc == NULL)
sys/fs/ptyfs/ptyfs_vnops.c
940
acc = &now;
sys/fs/ptyfs/ptyfs_vnops.c
941
ptyfs->ptyfs_atime = *acc;
sys/fs/sysvbfs/sysvbfs_vnops.c
884
sysvbfs_update(struct vnode *vp, const struct timespec *acc,
sys/fs/sysvbfs/sysvbfs_vnops.c
896
attr.atime = acc ? acc->tv_sec : time_second;
sys/fs/udf/udf_subr.c
6113
udf_itimes(struct udf_node *udf_node, struct timespec *acc,
sys/fs/udf/udf_subr.c
6169
if (acc == NULL)
sys/fs/udf/udf_subr.c
6170
acc = &now;
sys/fs/udf/udf_subr.c
6171
udf_timespec_to_timestamp(acc, atime);
sys/fs/udf/udf_subr.c
6212
udf_update(struct vnode *vp, struct timespec *acc,
sys/fs/udf/udf_subr.c
6224
DPRINTF(CALL, ("udf_update(node, %p, %p, %p, %d)\n", acc, mod, birth,
sys/fs/udf/udf_subr.c
6232
udf_itimes(udf_node, acc, mod, birth);
sys/fs/udf/udf_subr.h
183
void udf_itimes(struct udf_node *udf_node, struct timespec *acc,
sys/fs/udf/udf_subr.h
185
int udf_update(struct vnode *node, struct timespec *acc,
sys/fs/v7fs/v7fs_vnops.c
1232
v7fs_update(struct vnode *vp, const struct timespec *acc,
sys/fs/v7fs/v7fs_vnops.c
1244
inode->atime = acc ? acc->tv_sec : time_second;
sys/fs/v7fs/v7fs_vnops.c
469
struct timespec *acc, *mod;
sys/fs/v7fs/v7fs_vnops.c
471
acc = mod = NULL;
sys/fs/v7fs/v7fs_vnops.c
557
acc = &vap->va_atime;
sys/fs/v7fs/v7fs_vnops.c
569
v7fs_update(vp, acc, mod, 0);
sys/opencrypto/crypto.c
1509
timespecadd(&ts->acc, &t, &t);
sys/opencrypto/cryptodev.h
384
struct timespec acc; /* total accumulated time */
sys/rump/librump/rumpvfs/rumpfs.c
616
rumpfs_update(int flags, struct vnode *vp, const struct timespec *acc,
sys/rump/librump/rumpvfs/rumpfs.c
628
rn->rn_va.va_atime = *acc;
sys/ufs/chfs/chfs.h
748
#define CHFS_ITIMES(ip, acc, mod, cre) \
sys/ufs/chfs/chfs.h
750
chfs_itimes(ip, acc, mod, cre)
sys/ufs/chfs/chfs_subr.c
306
chfs_itimes(struct chfs_inode *ip, const struct timespec *acc,
sys/ufs/chfs/chfs_subr.c
317
if (acc == NULL)
sys/ufs/chfs/chfs_subr.c
318
acc = &now;
sys/ufs/chfs/chfs_subr.c
319
ip->atime = acc->tv_sec;
sys/ufs/chfs/chfs_subr.c
340
chfs_update(struct vnode *vp, const struct timespec *acc,
sys/ufs/chfs/chfs_subr.c
348
chfs_itimes(ip, acc, mod, NULL);
sys/ufs/ext2fs/ext2fs_extern.h
87
#define EXT2FS_ITIMES(ip, acc, mod, cre) \
sys/ufs/ext2fs/ext2fs_extern.h
89
ext2fs_itimes(ip, acc, mod, cre)
sys/ufs/ext2fs/ext2fs_inode.c
237
ext2fs_update(struct vnode *vp, const struct timespec *acc,
sys/ufs/ext2fs/ext2fs_inode.c
250
EXT2FS_ITIMES(ip, acc, mod, NULL);
sys/ufs/ext2fs/ext2fs_subr.c
105
ext2fs_itimes(struct inode *ip, const struct timespec *acc,
sys/ufs/ext2fs/ext2fs_subr.c
116
if (acc == NULL)
sys/ufs/ext2fs/ext2fs_subr.c
117
acc = &now;
sys/ufs/ext2fs/ext2fs_subr.c
118
EXT2_DINODE_TIME_SET(acc, ip->i_din.e2fs_din, e2di_atime, EXT2_DINODE_SIZE(ip->i_e2fs));
sys/ufs/ffs/ffs_extern.h
71
#define FFS_ITIMES(ip, acc, mod, cre) \
sys/ufs/ffs/ffs_extern.h
73
ffs_itimes(ip, acc, mod, cre)
sys/ufs/ffs/ffs_inode.c
111
ffs_update(struct vnode *vp, const struct timespec *acc,
sys/ufs/ffs/ffs_inode.c
124
FFS_ITIMES(ip, acc, mod, NULL);
sys/ufs/ffs/ffs_inode.c
803
ffs_itimes(struct inode *ip, const struct timespec *acc,
sys/ufs/ffs/ffs_inode.c
814
if (acc == NULL)
sys/ufs/ffs/ffs_inode.c
815
acc = &now;
sys/ufs/ffs/ffs_inode.c
816
DIP_ASSIGN(ip, atime, acc->tv_sec);
sys/ufs/ffs/ffs_inode.c
817
DIP_ASSIGN(ip, atimensec, acc->tv_nsec);
sys/ufs/lfs/lfs_accessors.h
651
#define LFS_ITIMES(ip, acc, mod, cre) \
sys/ufs/lfs/lfs_accessors.h
653
lfs_itimes(ip, acc, mod, cre)
sys/ufs/lfs/lfs_inode.c
130
lfs_update(struct vnode *vp, const struct timespec *acc,
sys/ufs/lfs/lfs_inode.c
158
LFS_ITIMES(ip, acc, mod, NULL);
sys/ufs/lfs/lfs_itimes.c
58
lfs_itimes(struct inode *ip, const struct timespec *acc,
sys/ufs/lfs/lfs_itimes.c
72
if (acc == NULL)
sys/ufs/lfs/lfs_itimes.c
73
acc = &now;
sys/ufs/lfs/lfs_itimes.c
75
lfs_dino_setatime(fs, ip->i_din, acc->tv_sec);
sys/ufs/lfs/lfs_itimes.c
76
lfs_dino_setatimensec(fs, ip->i_din, acc->tv_nsec);
sys/ufs/lfs/lfs_itimes.c
86
lfs_if_setatime_sec(fs, ifp, acc->tv_sec);
sys/ufs/lfs/lfs_itimes.c
87
lfs_if_setatime_nsec(fs, ifp, acc->tv_nsec);
sys/ufs/ufs/ufsmount.h
146
#define UFS_ITIMES(vp, acc, mod, cre) \
sys/ufs/ufs/ufsmount.h
147
(*UFS_OPS(vp)->uo_itimes)(VTOI(vp), (acc), (mod), (cre))
sys/ufs/ufs/ufsmount.h
148
#define UFS_UPDATE(vp, acc, mod, flags) \
sys/ufs/ufs/ufsmount.h
149
(*UFS_OPS(vp)->uo_update)((vp), (acc), (mod), (flags))
tests/net/net/t_unix.c
315
acpt = acc(srvr);
tests/net/net/t_unix.c
456
int listener, conn, acc;
tests/net/net/t_unix.c
486
RL(acc = accept(listener, NULL, NULL));
tests/net/net/t_unix.c
487
RL(close(acc));
tests/net/net/t_unix.c
506
RL(acc = accept(listener, NULL, NULL));
tests/net/net/t_unix.c
520
RL(close(acc));
usr.sbin/acpitools/aml/aml_parse.c
700
u_int8_t acc, attribute;
usr.sbin/acpitools/aml/aml_parse.c
749
acc = env->dp[1];
usr.sbin/acpitools/aml/aml_parse.c
752
AML_DEBUGPRINT("AccessAs(%s, %d)", accessnames[acc], attribute);
usr.sbin/acpitools/aml/aml_parse.c
754
template->flags = (template->flags | 0xf0) | acc;
usr.sbin/dumplfs/dumplfs.c
593
int i, j, acc;
usr.sbin/dumplfs/dumplfs.c
711
acc = 0;
usr.sbin/dumplfs/dumplfs.c
717
memcpy(datap + acc * el_size, buf, el_size);
usr.sbin/dumplfs/dumplfs.c
720
++acc;
usr.sbin/dumplfs/dumplfs.c
724
memcpy(datap + acc * el_size, buf, el_size);
usr.sbin/dumplfs/dumplfs.c
729
++acc;
usr.sbin/dumplfs/dumplfs.c
735
memcpy(datap + acc * el_size, buf, el_size);
usr.sbin/dumplfs/dumplfs.c
738
++acc;
usr.sbin/dumplfs/dumplfs.c
741
if (acc != numblocks)
usr.sbin/dumplfs/dumplfs.c
743
acc, numblocks);