/src/tests/usr.bin/xlint/lint1/ |
platform_int.c | 16 convert_unsigned_char_to_size(unsigned char uc) 19 * In this function call, uc is first promoted to INT. It is then 25 to_size(uc);
|
platform_long.c | 16 convert_unsigned_char_to_size(unsigned char uc) 19 * In this function call, uc is first promoted to INT. It is then 29 to_size(uc);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/ |
intel_uc.h | 18 int (*sanitize)(struct intel_uc *uc); 19 void (*init_fw)(struct intel_uc *uc); 20 void (*fini_fw)(struct intel_uc *uc); 21 void (*init)(struct intel_uc *uc); 22 void (*fini)(struct intel_uc *uc); 23 int (*init_hw)(struct intel_uc *uc); 24 void (*fini_hw)(struct intel_uc *uc); 36 void intel_uc_init_early(struct intel_uc *uc); 37 void intel_uc_driver_late_release(struct intel_uc *uc); 38 void intel_uc_init_mmio(struct intel_uc *uc); [all...] |
intel_uc.c | 25 static int __intel_uc_reset_hw(struct intel_uc *uc) 27 struct intel_gt *gt = uc_to_gt(uc); 49 static void __confirm_options(struct intel_uc *uc) 51 struct drm_i915_private *i915 = uc_to_gt(uc)->i915; 56 yesno(intel_uc_uses_guc(uc)), 57 yesno(intel_uc_uses_guc_submission(uc)), 58 yesno(intel_uc_uses_huc(uc))); 64 GEM_BUG_ON(intel_uc_uses_guc(uc)); 65 GEM_BUG_ON(intel_uc_uses_guc_submission(uc)); 66 GEM_BUG_ON(intel_uc_uses_huc(uc)); [all...] |
/src/lib/libpthread/ |
pthread_makelwp_netbsd.c | 52 ucontext_t uc; local in function:pthread__makelwp 59 memset(&uc, 0, sizeof(uc)); 60 _INITCONTEXT_U(&uc); 61 uc.uc_stack.ss_sp = stack_base; 62 uc.uc_stack.ss_size = stack_size; 63 uc.uc_stack.ss_flags = 0; 64 uc.uc_link = NULL; 66 _lwp_makecontext(&uc, start_routine, arg, priv, stack_base, stack_size); 67 return _lwp_create(&uc, flag, newlid) [all...] |
/src/lib/libc/arch/hppa/gen/ |
__longjmp14.c | 51 ucontext_t uc; local in function:__longjmp14 66 uc.uc_mcontext.__gregs[3] = regs[3]; 67 uc.uc_mcontext.__gregs[4] = regs[4]; 68 uc.uc_mcontext.__gregs[5] = regs[5]; 69 uc.uc_mcontext.__gregs[6] = regs[6]; 70 uc.uc_mcontext.__gregs[7] = regs[7]; 71 uc.uc_mcontext.__gregs[8] = regs[8]; 72 uc.uc_mcontext.__gregs[9] = regs[9]; 73 uc.uc_mcontext.__gregs[10] = regs[10]; 74 uc.uc_mcontext.__gregs[11] = regs[11] [all...] |
/src/lib/libc/arch/alpha/gen/ |
__longjmp14.c | 49 ucontext_t uc; local in function:__longjmp14 60 uc.uc_flags = _UC_SIGMASK | _UC_CPU; 63 uc.uc_link = 0; 66 uc.uc_mcontext.__gregs[_REG_V0] = val; 69 uc.uc_mcontext.__gregs[_REG_S0] = sc->sc_regs[R_S0]; 70 uc.uc_mcontext.__gregs[_REG_S1] = sc->sc_regs[R_S1]; 71 uc.uc_mcontext.__gregs[_REG_S2] = sc->sc_regs[R_S2]; 72 uc.uc_mcontext.__gregs[_REG_S3] = sc->sc_regs[R_S3]; 73 uc.uc_mcontext.__gregs[_REG_S4] = sc->sc_regs[R_S4]; 74 uc.uc_mcontext.__gregs[_REG_S5] = sc->sc_regs[R_S5] [all...] |
/src/sys/arch/vax/include/ |
mcontext.h | 72 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 73 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_FP]) 74 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC]) 75 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_R0]) 77 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/sh3/include/ |
mcontext.h | 91 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 92 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_R14]) 93 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC]) 94 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_R0]) 96 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/lib/libc/arch/sparc64/gen/ |
longjmp.c | 69 ucontext_t uc; local in function:__longjmp14 75 memset(&uc, 0, sizeof(uc)); 91 uc.uc_flags = _UC_CPU | _UC_SIGMASK; 92 uc.uc_flags |= (sc->sc_onstack ? _UC_SETSTACK : _UC_CLRSTACK); 95 uc.uc_sigmask = sc->sc_mask; 98 uc.uc_mcontext.__gregs[_REG_CCR] = sc->sc_tstate; 99 uc.uc_mcontext.__gregs[_REG_PC] = sc->sc_pc; 100 uc.uc_mcontext.__gregs[_REG_nPC] = sc->sc_pc+4; 101 uc.uc_mcontext.__gregs[_REG_G1] = sc->sc_g1 [all...] |
/src/sys/stand/efiboot/ |
userconf.c | 46 struct userconf_command *uc; local in function:userconf_foreach 48 TAILQ_FOREACH(uc, &userconf_commands, entries) { 49 fn(uc->uc_text); 56 struct userconf_command *uc; local in function:userconf_add 67 uc = alloc(sizeof(*uc)); 68 if (uc == NULL) { 79 uc->uc_text = text; 80 TAILQ_INSERT_TAIL(&userconf_commands, uc, entries);
|
/src/sys/arch/ia64/include/ |
mcontext.h | 114 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.mc_special.sp) /* gregs[12] */ 115 #define _UC_MACHINE_FP(uc) 0 /* Not supported in target */ 116 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.mc_special.iip) 117 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.mc_scratch.gr8) /* gregs[8] */ 118 #define _UC_MACHINE_SET_PC(uc, pc) (uc)->uc_mcontext.mc_special.iip = (pc)
|
/src/lib/libc/arch/vax/gen/ |
__longjmp14.c | 53 ucontext_t uc; local in function:__longjmp14 64 uc.uc_flags = _UC_SIGMASK | _UC_CPU; 67 uc.uc_link = 0; 70 uc.uc_mcontext.__gregs[_REG_R0] = val; 73 uc.uc_mcontext.__gregs[_REG_AP] = jb->jb_sc.sc_ap; 74 uc.uc_mcontext.__gregs[_REG_SP] = jb->jb_sc.sc_sp; 75 uc.uc_mcontext.__gregs[_REG_FP] = jb->jb_sc.sc_fp; 76 uc.uc_mcontext.__gregs[_REG_PC] = jb->jb_sc.sc_pc; 77 uc.uc_mcontext.__gregs[_REG_PSL] = jb->jb_sc.sc_ps; 79 uc.uc_mcontext.__gregs[_REG_R6] = jb->jb_regs[0] [all...] |
/src/lib/libc/arch/mips/gen/ |
longjmp.c | 49 ucontext_t uc; local in function:__longjmp14 73 uc.uc_flags = _UC_CPU | _UC_SIGMASK; 74 uc.uc_flags |= (sc->sc_onstack ? _UC_SETSTACK : _UC_CLRSTACK); 77 uc.uc_link = 0; 80 uc.uc_sigmask = sc->sc_mask; 83 uc.uc_mcontext.__gregs[_REG_V0] = val; 86 uc.uc_mcontext.__gregs[_REG_S0] = sc->sc_regs[_R_S0]; 87 uc.uc_mcontext.__gregs[_REG_S1] = sc->sc_regs[_R_S1]; 88 uc.uc_mcontext.__gregs[_REG_S2] = sc->sc_regs[_R_S2]; 89 uc.uc_mcontext.__gregs[_REG_S3] = sc->sc_regs[_R_S3] [all...] |
/src/sys/arch/usermode/include/ |
ucontext.h | 12 #define _UC_MACHINE_EFLAGS(uc) ((uc)->uc_mcontext.__gregs[_REG_EFL]) 16 #define _UC_MACHINE_RFLAGS(uc) ((uc)->uc_mcontext.__gregs[26])
|
/src/lib/libc/arch/sparc/gen/ |
longjmp.c | 67 ucontext_t uc; local in function:__longjmp14 74 memset(&uc, 0, sizeof(uc)); 90 uc.uc_flags = _UC_CPU | _UC_SIGMASK; 91 uc.uc_flags |= (sc->sc_onstack ? _UC_SETSTACK : _UC_CLRSTACK); 94 uc.uc_sigmask = sc->sc_mask; 97 uc.uc_mcontext.__gregs[_REG_PSR] = sc->sc_psr; 98 uc.uc_mcontext.__gregs[_REG_PC] = sc->sc_pc; 99 uc.uc_mcontext.__gregs[_REG_nPC] = sc->sc_pc+4; 100 uc.uc_mcontext.__gregs[_REG_O6] = sc->sc_sp [all...] |
/src/lib/libc/arch/m68k/gen/ |
longjmp.c | 53 ucontext_t uc; local in function:__longjmp14 64 uc.uc_mcontext.__gregs[_REG_D0] = val; 70 uc.uc_flags = _UC_SIGMASK | _UC_CPU | _UC_M68K_UC_USER | 74 uc.uc_link = 0; 77 uc.uc_sigmask = sc->sc_mask; 80 uc.uc_mcontext.__gregs[_REG_A7] = sc->sc_sp; 81 uc.uc_mcontext.__gregs[_REG_PC] = sc->sc_pc; 82 uc.uc_mcontext.__gregs[_REG_PS] = sc->sc_ps; 83 uc.uc_mcontext.__gregs[_REG_A6] = sc->sc_fp; 86 memcpy(&uc.uc_mcontext.__gregs[_REG_D2] [all...] |
/src/sys/arch/amd64/include/ |
mcontext.h | 70 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_RSP] - 128) 71 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_RBP]) 72 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_RIP]) 73 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_RAX]) 75 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/sparc/include/ |
mcontext.h | 148 #define _UC_MACHINE_SP(uc) (((uc)->uc_mcontext.__gregs[_REG_O6]) + 0x7ff) 149 #define _UC_MACHINE_FP(uc) (((__greg_t *)_UC_MACHINE_SP(uc))[15]) 152 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_O6]) 153 #define _UC_MACHINE_FP(uc) (((__greg_t *)_UC_MACHINE_SP(uc))[15]) 155 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC] [all...] |
/src/sys/arch/hppa/include/ |
mcontext.h | 84 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 85 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[3]) 86 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PCOQH]) 87 #define _UC_MACHINE_SET_PC(uc, pc) \ 89 (uc)->uc_mcontext.__gregs[_REG_PCOQH] = (pc); \ 90 (uc)->uc_mcontext.__gregs[_REG_PCOQT] = (pc) + 4; \ 92 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_RET0] [all...] |
/src/sys/arch/mips/include/ |
mcontext.h | 161 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 162 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_S8]) 163 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_EPC]) 164 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_V0]) 166 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/alpha/include/ |
mcontext.h | 100 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 101 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_S6]) 102 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC]) 103 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_V0]) 105 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/i386/include/ |
mcontext.h | 106 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_UESP]) 108 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_EBP]) 109 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_EIP]) 110 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_EAX]) 112 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/m68k/include/ |
mcontext.h | 104 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_A7]) 105 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_A6]) 106 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC]) 107 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_D0]) 109 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |
/src/sys/arch/or1k/include/ |
mcontext.h | 90 #define _UC_MACHINE_SP(uc) ((uc)->uc_mcontext.__gregs[_REG_SP]) 91 #define _UC_MACHINE_FP(uc) ((uc)->uc_mcontext.__gregs[_REG_R2]) 92 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.__gregs[_REG_PC]) 93 #define _UC_MACHINE_INTRV(uc) ((uc)->uc_mcontext.__gregs[_REG_RV]) 95 #define _UC_MACHINE_SET_PC(uc, pc) _UC_MACHINE_PC(uc) = (pc [all...] |