Home
last modified time | relevance | path

Searched refs:bufx (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/vm/
H A Dswap_pager.c986 struct buf *bufx; in swap_pager_strategy() local
1071 bufx = NULL; in swap_pager_strategy()
1117 bufx->b_dirtyend = bufx->b_bcount; in swap_pager_strategy()
1129 bufx->b_dirtyend = bufx->b_bcount; in swap_pager_strategy()
1131 bufx = NULL; in swap_pager_strategy()
1180 bufx->b_dirtyend = bufx->b_bcount; in swap_pager_strategy()
1184 bufx->b_dirtyend = bufx->b_bcount; in swap_pager_strategy()
1198 if (bufx) { in swap_pager_strategy()
1199 while (bufx) { in swap_pager_strategy()
1201 BUF_KERNPROC(bufx); in swap_pager_strategy()
[all …]
/dragonfly/usr.bin/last/
H A Dlast.c92 static struct utmpx *bufx; variable
329 size_t len = sizeof(*bufx) * MAXUTMP; in wtmpx()
331 if ((bufx = malloc(len)) == NULL) in wtmpx()
340 bufx[1].ut_xtime = time(NULL); in wtmpx()
346 (bytes = read(wfd, bufx, len)) == -1) in wtmpx()
348 for (bp = &bufx[bytes / sizeof(*bufx) - 1]; bp >= bufx; --bp) { in wtmpx()
449 crmsg = fmttime(bufx[1].ut_xtime, FULLTIME); in wtmpx()
504 printf("\ninterrupted %s\n", fmttime(bufx[1].ut_xtime, in onintrx()