/src/regress/sys/kern/getcwd/ |
old_getcwd.c | 88 char *ept, *eup, *up; local in function:old_getcwd 102 ept = pt + size; 106 ept = pt + ptsize; 108 bpt = ept - 1; 148 memmove(pt, bpt, (size_t)(ept - bpt)); 230 len = ept - bpt; 234 ept = pt + ptsize; 235 memmove(ept - len, bpt, len); 236 bpt = ept - len;
|
/src/games/hack/ |
hack.engrave.c | 384 struct engr *ept; local in function:del_engr 388 for (ept = head_engr; ept; ept = ept->nxt_engr) { 389 if (ept->nxt_engr == ep) { 390 ept->nxt_engr = ep->nxt_engr;
|
/src/sys/arch/evbmips/stand/sbmips/common/ |
cfe_api.h | 197 int cfe_init(uint64_t handle,uint64_t ept);
|
cfe_api.c | 76 cfe_init(cfe_xuint_t handle, cfe_xuint_t ept) 78 cfe_dispfunc = NATIVE_FROM_XPTR(ept);
|
/src/sys/arch/mips/cfe/ |
cfe_api.h | 185 int cfe_init(uint64_t handle,uint64_t ept);
|
cfe_api.c | 79 cfe_init(cfe_xuint_t handle, cfe_xuint_t ept) 81 cfe_dispfunc = NATIVE_FROM_XPTR(ept);
|
/src/sys/arch/sbmips/stand/common/ |
cfe_api.h | 197 int cfe_init(uint64_t handle,uint64_t ept);
|
cfe_api.c | 76 cfe_init(cfe_xuint_t handle, cfe_xuint_t ept) 78 cfe_dispfunc = NATIVE_FROM_XPTR(ept);
|
/src/sys/arch/x86/x86/ |
pmap.c | 3256 /* XXX Can't handle EPT just yet. */ 6063 * **************** HERE BEGINS THE EPT CODE, USED BY INTEL-VMX **************** 6071 * native, EPT does not have a recursive slot; therefore, it is not possible 6076 * been created, NVMM calls pmap_ept_transform() to make it an EPT pmap. 6157 pmap_ept_to_pp_attrs(pt_entry_t ept) 6161 if (ept & EPT_D) 6163 if (ept & EPT_A) 6168 if (ept & EPT_W) 6176 pt_entry_t ept = 0; local in function:pmap_pp_attrs_to_ept 6178 ept |= EPT_D [all...] |