Searched refs:pcb (Results 76 - 100 of 207) sorted by relevance

123456789

/freebsd-10.3-release/sys/amd64/include/
H A Dsmp.h26 #include <machine/pcb.h>
36 extern struct pcb stoppcbs[];
/freebsd-10.3-release/sys/amd64/linux/
H A Dlinux_machdep.c70 #include <machine/pcb.h>
390 struct pcb *pcb; local
395 pcb = td->td_pcb;
399 error = copyout(&pcb->pcb_gsbase, (unsigned long *)args->addr,
407 error = copyout(&pcb->pcb_fsbase, (unsigned long *)args->addr,
422 struct pcb *pcb; local
427 pcb = td->td_pcb;
428 pcb
[all...]
H A Dlinux_sysvec.c73 #include <machine/pcb.h>
452 struct pcb *pcb = td->td_pcb; local
460 pcb->pcb_fsbase = 0;
461 pcb->pcb_gsbase = 0;
462 clear_pcb_flags(pcb, PCB_32BIT);
463 pcb->pcb_initial_fpucw = __LINUX_NPXCW__;
464 set_pcb_flags(pcb, PCB_FULL_IRET);
482 if (pcb->pcb_flags & PCB_DBREGS) {
483 pcb
[all...]
/freebsd-10.3-release/sys/sparc64/sparc64/
H A Dgenassym.c48 #include <machine/pcb.h>
189 ASSYM(PCB_SIZEOF, sizeof(struct pcb));
190 ASSYM(PCB_RW, offsetof(struct pcb, pcb_rw));
191 ASSYM(PCB_KFP, offsetof(struct pcb, pcb_kfp));
192 ASSYM(PCB_UFP, offsetof(struct pcb, pcb_ufp));
193 ASSYM(PCB_RWSP, offsetof(struct pcb, pcb_rwsp));
194 ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
195 ASSYM(PCB_NSAVED, offsetof(struct pcb, pcb_nsaved));
196 ASSYM(PCB_PC, offsetof(struct pcb, pcb_pc));
197 ASSYM(PCB_SP, offsetof(struct pcb, pcb_s
[all...]
H A Dstack_machdep.c35 #include <machine/pcb.h>
/freebsd-10.3-release/sys/i386/i386/
H A Dvm86.c44 #include <machine/pcb.h>
51 extern struct pcb *vm86pcb;
352 struct pcb vml_pcb;
365 struct pcb *pcb; local
426 pcb = &vml->vml_pcb;
431 bzero(pcb, sizeof(struct pcb));
432 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U;
433 pcb
[all...]
H A Dstack_machdep.c35 #include <machine/pcb.h>
H A Dmachdep.c133 #include <machine/pcb.h>
1596 struct pcb *pcb = td->td_pcb; local
1599 pcb->pcb_gs = _udatasel;
1625 if (pcb->pcb_flags & PCB_DBREGS) {
1626 pcb->pcb_dr0 = 0;
1627 pcb->pcb_dr1 = 0;
1628 pcb->pcb_dr2 = 0;
1629 pcb->pcb_dr3 = 0;
1630 pcb
3603 makectx(struct trapframe *tf, struct pcb *pcb) argument
3640 struct pcb *pcb; local
3673 struct pcb *pcb; local
3988 struct pcb *pcb; local
4016 struct pcb *pcb; local
[all...]
H A Dgdb_machdep.c38 #include <machine/pcb.h>
/freebsd-10.3-release/sys/arm/arm/
H A Dmachdep.c100 #include <machine/pcb.h>
348 struct pcb *pcb = thread0.td_pcb; local
376 pcb->pcb_regs.sf_sp = (u_int)thread0.td_kstack +
379 pmap_set_pcb_pagedir(pmap_kernel(), pcb); local
766 makectx(struct trapframe *tf, struct pcb *pcb) argument
768 pcb->pcb_regs.sf_r4 = tf->tf_r4;
769 pcb->pcb_regs.sf_r5 = tf->tf_r5;
770 pcb
[all...]
H A Dstack_machdep.c36 #include <machine/pcb.h>
H A Dvfp.c41 #include <machine/pcb.h>
156 struct pcb *curpcb;
/freebsd-10.3-release/crypto/openssl/crypto/dsa/
H A Ddsa_pmeth.c241 BN_GENCB *pcb, cb; local
244 pcb = &cb;
245 evp_pkey_set_cb_translate(pcb, ctx);
247 pcb = NULL;
252 NULL, 0, NULL, NULL, NULL, pcb);
/freebsd-10.3-release/sys/powerpc/powerpc/
H A Dgenassym.c54 #include <machine/pcb.h>
185 ASSYM(PCB_CONTEXT, offsetof(struct pcb, pcb_context));
186 ASSYM(PCB_CR, offsetof(struct pcb, pcb_cr));
187 ASSYM(PCB_SP, offsetof(struct pcb, pcb_sp));
188 ASSYM(PCB_TOC, offsetof(struct pcb, pcb_toc));
189 ASSYM(PCB_LR, offsetof(struct pcb, pcb_lr));
190 ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
191 ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
195 ASSYM(PCB_AIM_USR_VSID, offsetof(struct pcb, pcb_cpu.aim.usr_vsid));
196 ASSYM(PCB_BOOKE_DBCR0, offsetof(struct pcb, pcb_cp
[all...]
H A Dgdb_machdep.c38 #include <machine/pcb.h>
H A Dstack_machdep.c40 #include <machine/pcb.h>
/freebsd-10.3-release/sys/mips/mips/
H A Dgdb_machdep.c101 #include <machine/pcb.h>
H A Dgenassym.c57 #include <machine/pcb.h>
76 ASSYM(U_PCB_REGS, offsetof(struct pcb, pcb_regs.zero));
77 ASSYM(U_PCB_CONTEXT, offsetof(struct pcb, pcb_context));
78 ASSYM(U_PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
79 ASSYM(U_PCB_FPREGS, offsetof(struct pcb, pcb_regs.f0));
/freebsd-10.3-release/sys/arm/include/
H A Dpcpu.h58 struct pcb;
/freebsd-10.3-release/sys/arm/xscale/ixp425/
H A Dixp425_space.c47 #include <machine/pcb.h>
/freebsd-10.3-release/sys/amd64/amd64/
H A Dstack_machdep.c35 #include <machine/pcb.h>
/freebsd-10.3-release/sys/powerpc/booke/
H A Dmp_cpudep.c38 #include <machine/pcb.h>
/freebsd-10.3-release/sys/ia64/ia64/
H A Ddb_machdep.c51 #include <machine/pcb.h>
225 db_backtrace(struct thread *td, struct pcb *pcb, int count) argument
235 error = unw_create_from_pcb(&rs, pcb);
597 struct pcb pcb; local
599 savectx(&pcb);
600 db_backtrace(curthread, &pcb, -1);
606 struct pcb *ctx;
H A Dmachdep.c94 #include <machine/pcb.h>
455 struct pcb *oldpcb, *newpcb;
495 struct pcb *newpcb;
1121 struct pcb *pcb; local
1124 pcb = td->td_pcb;
1163 makectx(struct trapframe *tf, struct pcb *pcb) argument
1166 pcb->pcb_special = tf->tf_special;
1167 pcb
1500 struct pcb *pcb = td->td_pcb; local
1515 struct pcb *pcb = td->td_pcb; local
[all...]
/freebsd-10.3-release/sys/dev/random/
H A Dnehemiah.c41 #include <machine/pcb.h>

Completed in 301 milliseconds

123456789