/freebsd/usr.sbin/makefs/ffs/ |
H A D | ffs_balloc.c | 85 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 D | ffs_alloc.c | 149 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 D | ext2_balloc.c | 107 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 D | ext2_inode.c | 126 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 D | ext2_alloc.c | 206 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 D | ffs_balloc.c | 103 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 D | ffs_alloc.c | 572 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 D | ffs_snapshot.c | 1147 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 D | indent.pro | 18 -bap
|
/freebsd/crypto/openssl/util/ |
H A D | indent.pro | 1 -bap
|
/freebsd/contrib/arm-optimized-routines/math/test/traces/ |
H A D | sincosf.txt | 3448 -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 D | exp.txt | 11732 0x1.29972894691bap-7
|
/freebsd/share/dict/ |
H A D | web2 | 18411 bap
|