Home
last modified time | relevance | path

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

/freebsd/sys/i386/i386/
H A Dminidump_machdep_base.c143 static pt_entry_t fakept[NPTEPG]; variable
254 bzero(&fakept, sizeof(fakept)); in cpu_minidumpsys()
255 bcopy(&mdhdr, &fakept, sizeof(mdhdr)); in cpu_minidumpsys()
256 error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE); in cpu_minidumpsys()
267 _Static_assert(sizeof(dump_avail) <= sizeof(fakept), in cpu_minidumpsys()
269 bzero(fakept, sizeof(fakept)); in cpu_minidumpsys()
270 memcpy(fakept, dump_avail, sizeof(dump_avail)); in cpu_minidumpsys()
271 error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE); in cpu_minidumpsys()
290 fakept[k] = (pa + (k * PAGE_SIZE)) | PG_V | PG_RW | PG_A | PG_M; in cpu_minidumpsys()
292 error = blk_write(di, (char *)&fakept, 0, PAGE_SIZE); in cpu_minidumpsys()
[all …]
/freebsd/usr.bin/mkstr/
H A Dmkstr.c264 hashit(char *str, int really, unsigned fakept) in hashit() argument
296 hp->hpt = really ? ftell(mesgwrite) : fakept; in hashit()