Searched refs:linp (Results 1 – 13 of 13) sorted by relevance
/freebsd/contrib/tcsh/ |
H A D | sh.print.c | 106 char *linp = linbuf; variable 206 *linp++ = (char) c; in putpure() 207 if (linp >= &linbuf[sizeof linbuf - 10]) in putpure() 215 linp = linbuf; in drainoline() 226 if (linp == linbuf) in flush() 228 if (GettingInput && !Tty_raw_mode && linp < &linbuf[sizeof linbuf - 10]) in flush() 235 linp = linbuf; /* avoid recursion as stderror calls flush */ in flush() 256 if (xwrite(unit, linbuf, linp - linbuf) == -1) in flush() 309 linp = linbuf; in flush()
|
H A D | sh.proc.c | 1035 if (pcond && linp != linbuf && !(flag & FANCY) && in pprint() 1040 if (pcond && linp != linbuf) in pprint() 1155 if (linp != linbuf) in pprint() 1177 if (linp != linbuf) in pprint()
|
H A D | sh.h | 1215 extern char *linp;
|
/freebsd/lib/libc/db/btree/ |
H A D | bt_split.c | 104 h->linp[skip] = h->upper -= ilen; in __bt_split() 214 memmove(h->linp + skip + 1, h->linp + skip, in __bt_split() 223 h->linp[skip] = h->upper -= nbytes; in __bt_split() 224 dest = (char *)h + h->linp[skip]; in __bt_split() 229 h->linp[skip] = h->upper -= nbytes; in __bt_split() 230 dest = (char *)h + h->linp[skip]; in __bt_split() 247 dest = (char *)h + h->linp[skip - 1]; in __bt_split() 249 dest = (char *)l + l->linp[NEXTINDEX(l) - 1]; in __bt_split() 254 h->linp[skip] = h->upper -= nbytes; in __bt_split() 255 dest = (char *)h + h->linp[skip]; in __bt_split() [all …]
|
H A D | btree.h | 79 indx_t linp[1]; /* indx_t-aligned VAR. LENGTH DATA */ member 127 ((BINTERNAL *)((char *)(pg) + (pg)->linp[indx])) 154 ((RINTERNAL *)((char *)(pg) + (pg)->linp[indx])) 177 ((BLEAF *)((char *)(pg) + (pg)->linp[indx])) 209 ((RLEAF *)((char *)(pg) + (pg)->linp[indx]))
|
H A D | bt_conv.c | 80 M_16_SWAP(h->linp[i]); in __bt_pgin() 95 M_16_SWAP(h->linp[i]); in __bt_pgin() 149 M_16_SWAP(h->linp[i]); in __bt_pgout() 173 M_16_SWAP(h->linp[i]); in __bt_pgout()
|
H A D | bt_put.c | 205 memmove(h->linp + idx + 1, h->linp + idx, in __bt_put() 209 h->linp[idx] = h->upper -= nbytes; in __bt_put()
|
H A D | bt_delete.c | 423 offset = pg->linp[idx]; in __bt_pdelete() 424 for (cnt = idx, ip = &pg->linp[0]; cnt--; ++ip) in __bt_pdelete() 488 offset = h->linp[idx]; in __bt_dleaf() 489 for (cnt = idx, ip = &h->linp[0]; cnt--; ++ip) in __bt_dleaf()
|
H A D | bt_debug.c | 178 (void)fprintf(stderr, "\t[%03d] %4d ", cur, h->linp[cur]); in __bt_dpage()
|
H A D | bt_open.c | 352 root->linp[0] == 0) { in nroot()
|
/freebsd/lib/libc/db/recno/ |
H A D | rec_delete.c | 174 offset = h->linp[idx]; in __rec_dleaf() 175 for (cnt = &h->linp[idx] - (ip = &h->linp[0]); cnt--; ++ip) in __rec_dleaf() 178 for (cnt = &h->linp[NEXTINDEX(h)] - ip; --cnt; ++ip) in __rec_dleaf()
|
H A D | rec_put.c | 257 memmove(h->linp + idx + 1, h->linp + idx, in __rec_iput() 261 h->linp[idx] = h->upper -= nbytes; in __rec_iput()
|
/freebsd/sys/netinet/ |
H A D | sctp_input.c | 4891 struct sctp_inpcb *linp; in sctp_process_control() local 4900 linp = NULL; in sctp_process_control() 4902 linp = inp; in sctp_process_control() 4905 if (linp != NULL) { in sctp_process_control() 4906 SCTP_ASOC_CREATE_LOCK(linp); in sctp_process_control() 4937 if (linp != NULL) { in sctp_process_control() 4938 SCTP_ASOC_CREATE_UNLOCK(linp); in sctp_process_control()
|