Lines Matching refs:page
53 wchar_t *page[PL]; variable
124 page[ll] = 0; in main()
291 if (page[(mustwr+i)%PL] != 0) in main()
292 emit(page[(mustwr+i) % PL], mustwr+i-PL); in main()
468 if (page[lno] != 0) in store()
469 free((char *)page[lno]); in store()
470 page[lno] = (wchar_t *)malloc((unsigned)(wcslen(lbuff) + 2) in store()
472 if (page[lno] == 0) { in store()
476 (void) wcscpy(page[lno], lbuff); in store()
490 if (page[lno]) in fetch()
491 (void) wcscpy(line, page[lno]); in fetch()
585 if (ll >= mustwr && page[ll%PL]) { in incr()
586 emit(page[ll%PL], ll - PL); in incr()
588 free((char *)page[ll%PL]); in incr()
589 page[ll%PL] = 0; in incr()