| /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...] |
| lisp.c | 69 lbp = lbuf; 73 switch(*lbp | ' ') { 82 for (; !isspace((unsigned char)*lbp); ++lbp) 84 for (; isspace((unsigned char)*lbp); ++lbp) 86 for (cp = lbp; *cp && *cp != '\n'; ++cp) 90 if (!(cp = strchr(lbp, ')'))) 92 for (; cp >= lbp && *cp != ':'; --cp) 94 if (cp < lbp) [all...] |
| ctags.h | 79 extern char *lbp;
|
| /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/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...] |
| /src/sbin/sysctl/ |
| sysctl.c | 573 appendprintf(char **bp, size_t *lbp, const char *fmt, ...) 579 r = vsnprintf(*bp, *lbp, fmt, ap); 581 if (r < 0 || (size_t)r > *lbp) 582 r = *lbp; 584 *lbp -= r;
|