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

  /src/sys/arch/i386/stand/lib/
gatea20.c 37 u_long psl; local in function:gateA20
51 psl = x86_read_psl();
79 x86_write_psl(psl);
  /src/sys/arch/vax/include/
reg.h 50 int psl; /* User psl */ member in struct:reg
cpu.h 52 #include <machine/psl.h>
182 register_t psl; local in function:cpu_intr_p
183 __asm("movpsl %0" : "=g"(psl));
184 return (psl & PSL_IS) != 0;
  /src/sys/arch/xen/x86/
xen_intr.c 115 u_long psl; local in function:xen_read_psl
118 psl = curcpu()->ci_vcpu->evtchn_upcall_mask;
121 return psl;
125 xen_write_psl(u_long psl)
131 ci->ci_vcpu->evtchn_upcall_mask = psl;
133 if (__predict_false(ci->ci_vcpu->evtchn_upcall_pending) && psl == 0)
  /src/sys/arch/alpha/common/
shared_intr.c 212 const unsigned long psl = alpha_pal_swpipl(ALPHA_PSL_IPL_HIGH); local in function:alpha_shared_intr_link_unlink_xcall
222 alpha_pal_swpipl(psl);
  /src/sys/arch/x86/x86/
cpu_rng.c 203 u_long psl; local in function:cpu_rng_via
215 psl = x86_read_psl();
228 x86_write_psl(psl);
fpu.c 287 u_long psl; local in function:fpuinit_mxcsr_mask
292 psl = x86_read_psl();
301 x86_write_psl(psl);
spectre.c 287 u_long psl = 0; local in function:mitigation_v2_change_cpu
291 psl = x86_read_psl();
313 x86_write_psl(psl);
641 u_long psl = 0; local in function:mitigation_mds_change_cpu
644 psl = x86_read_psl();
664 x86_write_psl(psl);
cpu.c 823 u_long psl; local in function:cpu_start_secondary
861 psl = x86_read_psl();
864 x86_write_psl(psl);
875 u_long psl; local in function:cpu_boot_secondary
891 psl = x86_read_psl();
894 x86_write_psl(psl);
intr.c 764 const u_long psl = x86_read_psl(); local in function:intr_hwunmask_xcall
774 x86_write_psl(psl);
793 u_long psl; local in function:intr_establish_xcall
805 psl = x86_read_psl();
828 x86_write_psl(psl);
1069 const u_long psl = x86_read_psl(); local in function:intr_mask_xcall
1110 x86_write_psl(psl);
1189 u_long psl; local in function:intr_disestablish_xcall
1198 psl = x86_read_psl();
1221 x86_write_psl(psl);
1587 u_long psl; local in function:intr_redistribute_xc_t
1611 u_long psl; local in function:intr_redistribute_xc_s1
1641 u_long psl; local in function:intr_redistribute_xc_s2
1826 u_long psl; local in function:intr_activate_xcall
1871 u_long psl; local in function:intr_deactivate_xcall
    [all...]
  /src/sys/arch/alpha/pci/
pci_6600.c 331 const unsigned long psl = alpha_pal_swpipl(ALPHA_PSL_IPL_HIGH); local in function:dec_6600_intr_program
345 alpha_pal_swpipl(psl);
pci_kn8ae.c 317 const u_long psl = alpha_pal_swpipl(ALPHA_PSL_IPL_HIGH); local in function:kn8ae_enadis_intr
320 alpha_pal_swpipl(psl);
  /src/sys/arch/alpha/alpha/
db_interface.c 197 unsigned long psl; local in function:ddb_trap
226 psl = alpha_pal_swpipl(ALPHA_PSL_IPL_HIGH);
236 alpha_pal_swpipl(psl);
  /src/usr.bin/sed/
process.c 74 #define psl PS.len macro
99 fwrite(ps, 1, psl, outfile); \
143 psl = 0;
153 if (psl == 0 ||
154 (p = memchr(ps, '\n', psl - 1)) == NULL) {
158 psl -= (size_t)((p + 1) - ps);
159 memmove(ps, p + 1, psl);
170 cspace(&HS, ps, psl, REPLACE);
174 cspace(&HS, ps, psl, APPEND);
180 lputs(ps, psl);
    [all...]
  /src/sys/arch/x86/isa/
clock.c 402 u_long psl; local in function:i8254_get_timecount
405 psl = x86_read_psl();
422 x86_write_psl(psl);
431 u_long psl; local in function:gettick
437 psl = x86_read_psl();
445 x86_write_psl(psl);
  /src/sys/arch/xen/xen/
evtchn.c 834 const u_long psl = x86_read_psl(); local in function:event_set_handler_xcall
864 x86_write_psl(psl);
1020 const u_long psl = x86_read_psl(); local in function:event_remove_handler_xcall
1051 x86_write_psl(psl);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_dpm.c 398 ATOM_PPLIB_PhaseSheddingLimits_Table *psl = local in function:amdgpu_parse_extended_power_table
405 kcalloc(psl->ucNumEntries,
413 entry = &psl->entries[0];
414 for (i = 0; i < psl->ucNumEntries; i++) {
425 psl->ucNumEntries;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_r600_dpm.c 991 ATOM_PPLIB_PhaseSheddingLimits_Table *psl = local in function:r600_parse_extended_power_table
998 kcalloc(psl->ucNumEntries,
1006 entry = &psl->entries[0];
1007 for (i = 0; i < psl->ucNumEntries; i++) {
1018 psl->ucNumEntries;

Completed in 25 milliseconds