HomeSort by: relevance | last modified time | path
    Searched refs:bp2 (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/fs/cd9660/
cd9660_node.c 150 struct buf *bp2 = NULL; local
170 NULL, &bp2);
171 bp = bp2;
200 if (bp2)
201 brelse(bp2, 0);
211 struct buf *bp2 = NULL; local
220 NULL, &bp2);
221 bp = bp2;
241 if (bp2)
242 brelse(bp2, 0)
    [all...]
cd9660_vfsops.c 842 struct buf *bp2; local
846 NULL, &bp2);
848 bp2 = NULL;
849 cd9660_defattr(isodir, ip, bp2);
850 cd9660_deftstamp(isodir, ip, bp2);
851 if (bp2)
852 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
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
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 1477 lfs_blocks_eq(STRUCT_LFS *fs, union lfs_blocks *bp1, union lfs_blocks *bp2)
1480 return bp1->b64 == bp2->b64;
1482 return bp1->b32 == bp2->b32;
1487 lfs_blocks_sub(STRUCT_LFS *fs, union lfs_blocks *bp1, union lfs_blocks *bp2)
1491 return bp1->b64 - bp2->b64;
1493 return bp1->b32 - bp2->b32;

Completed in 21 milliseconds