| /src/sys/fs/cd9660/ |
| cd9660_node.c | 150 struct buf *bp2 = NULL; local in function:cd9660_defattr 170 NULL, &bp2); 171 bp = bp2; 200 if (bp2) 201 brelse(bp2, 0); 211 struct buf *bp2 = NULL; local in function:cd9660_deftstamp 220 NULL, &bp2); 221 bp = bp2; 241 if (bp2) 242 brelse(bp2, 0) [all...] |
| cd9660_vfsops.c | 841 struct buf *bp2; local in function:cd9660_loadvnode 845 NULL, &bp2); 847 bp2 = NULL; 848 cd9660_defattr(isodir, ip, bp2); 849 cd9660_deftstamp(isodir, ip, bp2); 850 if (bp2) 851 brelse(bp2, 0);
|
| /src/sbin/efi/ |
| devpath.h | 74 aconcat(char *bp1, const char *sep, char *bp2) 78 easprintf(&bp, "%s%s%s", bp1, sep, bp2); 80 free(bp2);
|
| /src/sys/sys/ |
| buf.h | 252 #define BIO_COPYPRIO(bp1, bp2) BIO_SETPRIO(bp1, BIO_GETPRIO(bp2))
|
| /src/bin/csh/ |
| func.c | 78 struct biltins *bp, *bp1, *bp2; local in function:isbfunc 97 * Binary search Bp1 is the beginning of the current search range. Bp2 is 100 for (bp1 = bfunc, bp2 = bfunc + nbfunc; bp1 < bp2;) { 103 bp = bp1 + ((bp2 - bp1) >> 1); 108 bp2 = bp;
|
| /src/sbin/brconfig/ |
| brconfig.c | 350 struct ifbrparam bp1, bp2; local in function:status 370 if (do_cmd(sock, bridge, BRDGGTO, &bp2, sizeof(bp2), 0) < 0) 374 bp1.ifbrp_csize, bp2.ifbrp_ctime);
|
| /src/sys/ufs/lfs/ |
| lfs_accessors.h | 1463 lfs_blocks_eq(STRUCT_LFS *fs, union lfs_blocks *bp1, union lfs_blocks *bp2) 1466 return bp1->b64 == bp2->b64; 1468 return bp1->b32 == bp2->b32; 1473 lfs_blocks_sub(STRUCT_LFS *fs, union lfs_blocks *bp1, union lfs_blocks *bp2) 1477 return bp1->b64 - bp2->b64; 1479 return bp1->b32 - bp2->b32;
|