Home
last modified time | relevance | path

Searched refs:bap (Results 1 – 13 of 13) sorted by relevance

/freebsd/usr.sbin/makefs/ffs/
H A Dffs_balloc.c85 int32_t *bap; in ffs_balloc_ufs1() local
254 bap = (int32_t *)bp->b_data; in ffs_balloc_ufs1()
255 nb = ufs_rw32(bap[indirs[i].in_off], needswap); in ffs_balloc_ufs1()
285 bap[indirs[i - 1].in_off] = ufs_rw32(nb, needswap); in ffs_balloc_ufs1()
295 pref = ffs_blkpref_ufs1(ip, lbn, indirs[num].in_off, &bap[0]); in ffs_balloc_ufs1()
310 bap[indirs[num].in_off] = ufs_rw32(nb, needswap); in ffs_balloc_ufs1()
342 int64_t *bap; in ffs_balloc_ufs2() local
511 bap = (int64_t *)bp->b_data; in ffs_balloc_ufs2()
512 nb = ufs_rw64(bap[indirs[i].in_off], needswap); in ffs_balloc_ufs2()
542 bap[indirs[i - 1].in_off] = ufs_rw64(nb, needswap); in ffs_balloc_ufs2()
[all …]
H A Dffs_alloc.c149 ffs_blkpref_ufs1(struct inode *ip, daddr_t lbn, int indx, int32_t *bap) in ffs_blkpref_ufs1() argument
156 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs_blkpref_ufs1()
165 if (indx == 0 || bap[indx - 1] == 0) in ffs_blkpref_ufs1()
170 ufs_rw32(bap[indx - 1], UFS_FSNEEDSWAP(fs)) + 1); in ffs_blkpref_ufs1()
184 return ufs_rw32(bap[indx - 1], UFS_FSNEEDSWAP(fs)) + fs->fs_frag; in ffs_blkpref_ufs1()
188 ffs_blkpref_ufs2(struct inode *ip, daddr_t lbn, int indx, int64_t *bap) in ffs_blkpref_ufs2() argument
195 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs_blkpref_ufs2()
204 if (indx == 0 || bap[indx - 1] == 0) in ffs_blkpref_ufs2()
209 ufs_rw64(bap[indx - 1], UFS_FSNEEDSWAP(fs)) + 1); in ffs_blkpref_ufs2()
225 return ufs_rw64(bap[indx - 1], UFS_FSNEEDSWAP(fs)) + fs->fs_frag; in ffs_blkpref_ufs2()
/freebsd/sys/fs/ext2fs/
H A Dext2_balloc.c107 e2fs_daddr_t *bap, pref; in ext2_balloc() local
219 bap = (e2fs_daddr_t *)bp->b_data; in ext2_balloc()
220 nb = le32toh(bap[indirs[i].in_off]); in ext2_balloc()
230 pref = ext2_blkpref(ip, lbn, indirs[i].in_off, bap, in ext2_balloc()
252 bap[indirs[i - 1].in_off] = htole32(nb); in ext2_balloc()
270 pref = ext2_blkpref(ip, lbn, indirs[i].in_off, &bap[0], in ext2_balloc()
284 bap[indirs[i].in_off] = htole32(nb); in ext2_balloc()
H A Dext2_inode.c126 e2fs_daddr_t *bap, *copy; in ext2_indirtrunc() local
168 bap = (e2fs_daddr_t *)bp->b_data; in ext2_indirtrunc()
170 bcopy((caddr_t)bap, (caddr_t)copy, (u_int)fs->e2fs_bsize); in ext2_indirtrunc()
171 bzero((caddr_t)&bap[last + 1], in ext2_indirtrunc()
182 bap = copy; in ext2_indirtrunc()
189 nb = le32toh(bap[i]); in ext2_indirtrunc()
207 nb = le32toh(bap[i]); in ext2_indirtrunc()
H A Dext2_alloc.c206 uint32_t *bap, *sbap, *ebap; in ext2_reallocblks() local
312 for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->e2fs_fpb) { in ext2_reallocblks()
314 bap = ebap; in ext2_reallocblks()
318 if (buflist->bs_children[i]->b_blkno != fsbtodb(fs, *bap)) in ext2_reallocblks()
321 SDT_PROBE1(ext2fs, , alloc, ext2_reallocblks_bap, *bap); in ext2_reallocblks()
322 *bap++ = blkno; in ext2_reallocblks()
705 ext2_blkpref(struct inode *ip, e2fs_lbn_t lbn, int indx, e2fs_daddr_t *bap, in ext2_blkpref() argument
726 if (bap) in ext2_blkpref()
728 if (bap[tmp]) in ext2_blkpref()
729 return (le32toh(bap[tmp])); in ext2_blkpref()
/freebsd/sys/ufs/ffs/
H A Dffs_balloc.c103 ufs1_daddr_t *bap, pref; in ffs_balloc_ufs1() local
303 bap = (ufs1_daddr_t *)bp->b_data; in ffs_balloc_ufs1()
304 nb = bap[indirs[i].in_off]; in ffs_balloc_ufs1()
370 bap[indirs[i - 1].in_off] = nb; in ffs_balloc_ufs1()
408 &bap[0]); in ffs_balloc_ufs1()
444 bap[indirs[i].in_off] = nb; in ffs_balloc_ufs1()
539 bap = (ufs1_daddr_t *)bp->b_data; in ffs_balloc_ufs1()
540 bap[indirs[unwindidx].in_off] = 0; in ffs_balloc_ufs1()
605 ufs2_daddr_t nb, newb, *bap, pref; in ffs_balloc_ufs2() local
924 bap = (ufs2_daddr_t *)bp->b_data; in ffs_balloc_ufs2()
[all …]
H A Dffs_alloc.c572 ufs1_daddr_t *bap, *sbap, *ebap; in ffs_reallocblks_ufs1() local
715 for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->fs_frag) { in ffs_reallocblks_ufs1()
717 bap = ebap; in ffs_reallocblks_ufs1()
724 if (dbtofsb(fs, buflist->bs_children[i]->b_blkno) != *bap) in ffs_reallocblks_ufs1()
729 printf(" %d,", *bap); in ffs_reallocblks_ufs1()
734 blkno, *bap, fs->fs_bsize, fs->fs_bsize, in ffs_reallocblks_ufs1()
739 *bap, buflist->bs_children[i]); in ffs_reallocblks_ufs1()
741 *bap++ = blkno; in ffs_reallocblks_ufs1()
840 ufs2_daddr_t *bap, *sbap, *ebap; in ffs_reallocblks_ufs2() local
981 for (bap = &sbap[soff], i = 0; i < len; i++, blkno += fs->fs_frag) { in ffs_reallocblks_ufs2()
[all …]
H A Dffs_snapshot.c1147 ufs1_daddr_t last, *bap; in indiracct_ufs1() local
1176 bap = malloc(fs->fs_bsize, M_DEVBUF, M_WAITOK); in indiracct_ufs1()
1177 bcopy(bp->b_data, (caddr_t)bap, fs->fs_bsize); in indiracct_ufs1()
1179 error = (*acctfunc)(snapvp, &bap[0], &bap[last], fs, in indiracct_ufs1()
1189 error = indiracct_ufs1(snapvp, cancelvp, level, bap[i], lbn, in indiracct_ufs1()
1198 free(bap, M_DEVBUF); in indiracct_ufs1()
1431 ufs2_daddr_t last, *bap; in indiracct_ufs2() local
1460 bap = malloc(fs->fs_bsize, M_DEVBUF, M_WAITOK); in indiracct_ufs2()
1461 bcopy(bp->b_data, (caddr_t)bap, f in indiracct_ufs2()
[all...]
/freebsd/share/examples/indent/
H A Dindent.pro18 -bap
/freebsd/crypto/openssl/util/
H A Dindent.pro1 -bap
/freebsd/contrib/arm-optimized-routines/math/test/traces/
H A Dsincosf.txt3448 -0x1.9767bap-9
3570 0x1.4906bap-5
3788 0x1.4906bap-5
3792 0x1.4906bap-5
3803 0x1.4906bap-5
4184 0x1.4906bap-5
4898 -0x1.0914bap-10
5121 -0x1.0914bap-10
5122 -0x1.0914bap-10
5124 -0x1.0914bap-10
[all …]
H A Dexp.txt11732 0x1.29972894691bap-7
/freebsd/share/dict/
H A Dweb218411 bap