Lines Matching refs:beg

538 			printf("%s", p->beg);  in commnds()
1300 if (((int)*(inbas->beg)) != 10) { in readin()
1626 while ((sfbeg(p) == 0) && ((p->rd-p->beg-1)*2 >= sc)) { in tenot()
1677 if ((p->rd - p->beg) * 2 > sc) { in tenot()
1699 if (sc > (p->rd - p->beg) * 2) { in tenot()
1700 while (sc > (p->rd - p->beg) * 2) { in tenot()
2136 hdr->rd = hdr->wt = hdr->beg = ptr; in salloc()
2179 ptr = nalloc(hptr->beg, (unsigned)size); in copy()
2182 if ((ptr = nalloc(hptr->beg, (unsigned)size)) == NULL) { in copy()
2190 hdr->rd = hdr->beg = ptr; in copy()
2206 hptr->rd, hptr->wt, hptr->beg, hptr->last); in sdump()
2207 p = hptr->beg; in sdump()
2220 nn = hptr->beg + n; in seekc()
2228 p = realloc(hptr->beg, (unsigned)n); in seekc()
2230 hptr->beg = realloc(hptr->beg, in seekc()
2231 (unsigned)(hptr->last - hptr->beg)); in seekc()
2233 if ((p = realloc(hptr->beg, (unsigned)n)) == 0) in seekc()
2236 hptr->beg = p; in seekc()
2261 if ((size = (hptr->last - hptr->beg) * 2) == 0) in more()
2270 p = realloc(hptr->beg, (unsigned)size); in more()
2272 hptr->beg = realloc(hptr->beg, in more()
2273 (unsigned)(hptr->last - hptr->beg)); in more()
2275 if ((p = realloc(hptr->beg, size)) == 0) in more()
2278 hptr->rd = hptr->rd - hptr->beg + p; in more()
2279 hptr->wt = hptr->wt - hptr->beg + p; in more()
2280 hptr->beg = p; in more()
2311 if (((int)p->beg & 01) != 0) { in garbage()
2328 if (((int)q->beg & 01) in garbage()
2354 if ((int)p->beg & 01) { in redef()
2355 printf(gettext("odd ptr %o hdr %o\n"), p->beg, p); in redef()
2362 newp = realloc(p->beg, (unsigned)(p->last - p->beg)); in redef()
2365 offset = newp - p->beg; in redef()
2366 p->beg = newp; in redef()
2377 nbytes -= p->last - p->beg; in release()
2380 free(p->beg); in release()
2381 p->beg = NULL; in release()