HomeSort by: relevance | last modified time | path
    Searched defs:v1p (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/alpha/stand/standtest/
test.c 462 const struct bootinfo_v1 *v1p; local in function:show_bootinfo
465 v1p = (const struct bootinfo_v1 *)bip;
466 printf(" ssym: 0x%lx\n", v1p->ssym);
467 printf(" esym: 0x%lx\n", v1p->esym);
469 print_stringarray(v1p->boot_flags, sizeof v1p->boot_flags);
471 printf(" booted kernel: \"", v1p->esym);
472 print_stringarray(v1p->booted_kernel,
473 sizeof v1p->booted_kernel);
475 printf(" hwrpb: %p\n", v1p->hwrpb)
    [all...]
  /src/sys/arch/alpha/alpha/
machdep.c 353 struct bootinfo_v1 *v1p = (struct bootinfo_v1 *)bip; local in function:alpha_init
355 bootinfo.ssym = v1p->ssym;
356 bootinfo.esym = v1p->esym;
358 if (v1p->hwrpb != NULL) {
360 ((struct rpb *)v1p->hwrpb)->rpb_phys;
361 bootinfo.hwrpb_size = v1p->hwrpbsize;
368 memcpy(bootinfo.boot_flags, v1p->boot_flags,
369 uimin(sizeof v1p->boot_flags,
371 memcpy(bootinfo.booted_kernel, v1p->booted_kernel,
372 uimin(sizeof v1p->booted_kernel
    [all...]

Completed in 13 milliseconds