/openbsd/sys/ufs/ext2fs/ |
H A D | ext2fs_balloc.c | 62 u_int32_t nb, newb, *bap; in ext2fs_buf_alloc() local 155 bap = (u_int32_t *)bp->b_data; in ext2fs_buf_alloc() 156 nb = letoh32(bap[indirs[i].in_off]); in ext2fs_buf_alloc() 186 bap[indirs[i - 1].in_off] = htole32(nb); in ext2fs_buf_alloc() 201 pref = ext2fs_blkpref(ip, lbn, indirs[num].in_off, bap); in ext2fs_buf_alloc() 211 bap[indirs[num].in_off] = htole32(nb); in ext2fs_buf_alloc() 262 bap = (u_int32_t *)bp->b_data; in ext2fs_buf_alloc() 263 bap[indirs[unwindidx].in_off] = 0; in ext2fs_buf_alloc()
|
H A D | ext2fs_inode.c | 427 int32_t *bap; in ext2fs_indirtrunc() local 473 bap = (int32_t *)bp->b_data; in ext2fs_indirtrunc() 476 memcpy(copy, bap, fs->e2fs_bsize); in ext2fs_indirtrunc() 477 memset(&bap[last + 1], 0, in ext2fs_indirtrunc() 482 bap = copy; in ext2fs_indirtrunc() 491 nb = letoh32(bap[i]); in ext2fs_indirtrunc() 511 nb = letoh32(bap[i]); in ext2fs_indirtrunc()
|
H A D | ext2fs_alloc.c | 220 ext2fs_blkpref(struct inode *ip, u_int32_t lbn, int baps, u_int32_t *bap) in ext2fs_blkpref() argument 240 if (bap) { in ext2fs_blkpref() 242 if (bap[i]) { in ext2fs_blkpref() 243 return letoh32(bap[i]) + 1; in ext2fs_blkpref()
|
/openbsd/usr.sbin/makefs/ffs/ |
H A D | ffs_balloc.c | 78 int32_t *bap; in ffs_balloc_ufs1() local 243 bap = (int32_t *)bp->b_data; in ffs_balloc_ufs1() 244 nb = bap[indirs[i].in_off]; in ffs_balloc_ufs1() 273 bap[indirs[i - 1].in_off] = nb; in ffs_balloc_ufs1() 283 pref = ffs_blkpref_ufs1(ip, lbn, indirs[num].in_off, &bap[0]); in ffs_balloc_ufs1() 297 bap[indirs[num].in_off] = nb; in ffs_balloc_ufs1() 327 int64_t *bap; in ffs_balloc_ufs2() local 492 bap = (int64_t *)bp->b_data; in ffs_balloc_ufs2() 493 nb = bap[indirs[i].in_off]; in ffs_balloc_ufs2() 522 bap[indirs[i - 1].in_off] = nb; in ffs_balloc_ufs2() [all …]
|
H A D | ffs_alloc.c | 143 ffs_blkpref_ufs1(struct inode *ip, daddr_t lbn, int indx, int32_t *bap) in ffs_blkpref_ufs1() argument 150 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs_blkpref_ufs1() 159 if (indx == 0 || bap[indx - 1] == 0) in ffs_blkpref_ufs1() 163 startcg = dtog(fs, bap[indx - 1] + 1); in ffs_blkpref_ufs1() 177 return bap[indx - 1] + fs->fs_frag; in ffs_blkpref_ufs1() 181 ffs_blkpref_ufs2(struct inode *ip, daddr_t lbn, int indx, int64_t *bap) in ffs_blkpref_ufs2() argument 188 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs_blkpref_ufs2() 197 if (indx == 0 || bap[indx - 1] == 0) in ffs_blkpref_ufs2() 201 startcg = dtog(fs, bap[indx - 1] + 1); in ffs_blkpref_ufs2() 217 return bap[indx - 1] + fs->fs_frag; in ffs_blkpref_ufs2()
|
/openbsd/sys/ufs/ffs/ |
H A D | ffs_balloc.c | 79 int32_t *bap; in ffs1_balloc() local 259 bap = (int32_t *)bp->b_data; in ffs1_balloc() 260 nb = bap[indirs[i].in_off]; in ffs1_balloc() 290 bap[indirs[i - 1].in_off] = nb; in ffs1_balloc() 323 bap[indirs[i].in_off] = nb; in ffs1_balloc() 381 bap = (int32_t *)bp->b_data; in ffs1_balloc() 409 daddr_t *bap, *allocib; in ffs2_balloc() local 613 bap = (int64_t *) bp->b_data; in ffs2_balloc() 614 nb = bap[indirs[i].in_off]; in ffs2_balloc() 691 bap[indirs[num].in_off] = nb; in ffs2_balloc() [all …]
|
H A D | ffs_alloc.c | 594 ffs1_blkpref(struct inode *ip, daddr_t lbn, int indx, int32_t *bap) in ffs1_blkpref() argument 601 KASSERT(indx <= 0 || bap != NULL); in ffs1_blkpref() 648 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs1_blkpref() 666 if (indx == 0 || bap[indx - 1] == 0) in ffs1_blkpref() 669 startcg = dtog(fs, bap[indx - 1]) + 1; in ffs1_blkpref() 687 return (bap[indx - 1] + fs->fs_frag); in ffs1_blkpref() 702 KASSERT(indx <= 0 || bap != NULL); in ffs2_blkpref() 750 if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { in ffs2_blkpref() 768 if (indx == 0 || bap[indx - 1] == 0) in ffs2_blkpref() 771 startcg = dtog(fs, bap[indx - 1] + 1); in ffs2_blkpref() [all …]
|
/openbsd/regress/lib/libcrypto/x509/bettertls/certificates/ |
H A D | 1350.key | 24 bap/2QKBgCTRphyNjKPMgmEgo9zJiCPYL2UlYazCe0Vhqa9ZdGFY4ROOQtBklNQ8
|
/openbsd/gnu/usr.bin/cvs/ |
H A D | ChangeLog.zoo | 413 The basic options to indent were: "-bad -bbb -bap -cdb -d0 -bl -bli0
|
H A D | NEWS | 872 The basic options to indent were: "-bad -bbb -bap -cdb -d0 -bl -bli0
|
/openbsd/gnu/usr.bin/binutils/etc/ |
H A D | standards.texi | 2169 -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2
|
/openbsd/gnu/usr.bin/binutils-2.17/etc/ |
H A D | standards.texi | 2169 -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2
|
/openbsd/share/dict/ |
H A D | web2 | 18410 bap
|