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

  /src/sys/uvm/
uvm_pglist.c 112 uvm_pglistalloc_c_ps(uvm_physseg_t psi, int num, paddr_t low, paddr_t high,
124 printf("pgalloc: contig %d pgs from psi %d\n", num, psi);
133 if (high <= uvm_physseg_get_avail_start(psi) ||
134 low >= uvm_physseg_get_avail_end(psi))
142 candidate = roundup2(ulmax(low, uvm_physseg_get_avail_start(psi) +
143 uvm_physseg_get_start_hint(psi)), alignment);
144 limit = ulmin(high, uvm_physseg_get_avail_end(psi));
154 if (uvm_physseg_get_start_hint(psi) == 0 || second_pass) {
166 candidate = roundup2(ulmax(low, uvm_physseg_get_avail_start(psi)), alignment)
456 uvm_physseg_t psi; local in function:uvm_pglistalloc_contig
618 uvm_physseg_t psi; local in function:uvm_pglistalloc_simple
    [all...]
  /src/sys/arch/atari/atari/
machdep.c 660 struct si_callback *si, *psi, *nsi; local in function:rem_sicallback
664 for (psi = 0, si = si_callbacks; si; ) {
668 psi = si;
672 if (psi != NULL)
673 psi->next = nsi;
  /src/sys/kern/
sys_ptrace_common.c 517 struct ptrace_siginfo psi; local in function:ptrace_get_siginfo
519 memset(&psi, 0, sizeof(psi));
520 psi.psi_siginfo._info = t->p_sigctx.ps_info;
521 psi.psi_lwpid = t->p_sigctx.ps_lwp;
522 DPRINTF(("%s: lwp=%d signal=%d\n", __func__, psi.psi_lwpid,
523 psi.psi_siginfo.si_signo));
525 return ptm->ptm_copyout_siginfo(&psi, addr, data);
532 struct ptrace_siginfo psi; local in function:ptrace_set_siginfo
534 int error = ptm->ptm_copyin_siginfo(&psi, addr, data)
    [all...]
  /src/tests/lib/libc/sys/
t_ptrace_threads_wait.h 464 struct ptrace_siginfo psi; local in function:ATF_TC_BODY
486 SYSCALL_REQUIRE(ptrace(PT_GET_SIGINFO, child, &psi, sizeof(psi)) != -1);
488 DPRINTF("Before suspending LWP %d\n", psi.psi_lwpid);
489 SYSCALL_REQUIRE(ptrace(PT_SUSPEND, child, NULL, psi.psi_lwpid) != -1);
496 DPRINTF("Before resuming LWP %d\n", psi.psi_lwpid);
497 SYSCALL_REQUIRE(ptrace(PT_RESUME, child, NULL, psi.psi_lwpid) != -1);
552 struct ptrace_siginfo psi; local in function:ATF_TC_BODY
594 SYSCALL_REQUIRE(ptrace(PT_GET_SIGINFO, child, &psi, sizeof(psi)) != -1)
    [all...]
  /src/tests/sys/uvm/
t_uvm_physseg_load.c 286 uvm_physseg_t psi; local in function:uvm_phys_to_vm_page
288 psi = uvm_physseg_find(pf, &off);
289 if (psi != UVM_PHYSSEG_TYPE_INVALID)
290 return uvm_physseg_get_pg(psi, off);
  /src/sys/dev/usb/
if_umb.c 1562 struct mbim_cid_packet_service_info *psi = data; local in function:umb_decode_packet_service
1567 if (len < sizeof(*psi))
1570 sc->sc_info.nwerror = le32toh(psi->nwerror);
1571 state = le32toh(psi->state);
1572 highestclass = le32toh(psi->highest_dataclass);
1573 up_speed = le64toh(psi->uplink_speed);
1574 down_speed = le64toh(psi->downlink_speed);

Completed in 16 milliseconds