/src/usr.bin/ctags/ |
fortran.c | 54 char *lbp; /* line buffer pointer */ variable in typeref:typename:char * 68 lbp = lbuf; 69 if (*lbp == '%') /* Ratfor escape to fortran */ 70 ++lbp; 71 for (; isspace((unsigned char)*lbp); ++lbp) 73 if (!*lbp) 75 switch (*lbp | ' ') { /* convert to lower-case */ 82 for (; isspace((unsigned char)*lbp); ++lbp) [all...] |
/src/sys/ufs/lfs/ |
lfs_balloc.c | 627 struct lbnentry *lbp; local in function:lfs_register_block 642 lbp = (struct lbnentry *)pool_get(&lfs_lbnentry_pool, PR_WAITOK); 643 lbp->lbn = lbn; 645 if (SPLAY_INSERT(lfs_splay, &ip->i_lfs_lbtree, lbp) != NULL) { 648 pool_put(&lfs_lbnentry_pool, lbp); 661 lfs_do_deregister(struct lfs *fs, struct inode *ip, struct lbnentry *lbp) 668 SPLAY_REMOVE(lfs_splay, &ip->i_lfs_lbtree, lbp); 677 pool_put(&lfs_lbnentry_pool, lbp); 688 struct lbnentry *lbp; local in function:lfs_deregister_block 700 if ((lbp = SPLAY_FIND(lfs_splay, &ip->i_lfs_lbtree, &tmp)) != NULL 708 struct lbnentry *lbp; local in function:lfs_deregister_all [all...] |
/src/bin/csh/ |
dol.c | 822 Char *Dv[2], *lbp, *obp, *mbp, **vp; local in function:heredoc 855 lbp = lbuf; 862 *lbp++ = (Char)c; 869 *lbp = 0; 884 *lbp++ = '\n'; 885 *lbp = 0; 886 for (lbp = lbuf; (c = *lbp++) != '\0';) {
|
/src/sys/dev/scsipi/ |
cd.c | 118 struct buf *lbp; /* first buffer */ member in struct:cdbounce 575 if (bp == bounce->lbp) { 578 bounce->lbp = NULL; 590 if (bounce->lbp != NULL || bounce->rbp != NULL) 651 struct buf *lbp, *rbp; local in function:cd_make_bounce 673 error = cd_make_bounce_buffer(cd, bp, blkno, count, &lbp, bounce); 683 free(lbp->b_data, M_DEVBUF); 684 putiobuf(lbp); 691 bounce->lbp = lbp; [all...] |