/illumos-gate/usr/src/cmd/mdb/intel/mdb/ |
H A D | proc_ia32dep.c | 119 prgreg_t eflags; in pt_regs() local 173 eflags = grs[EFL]; in pt_regs() 196 mdb_printf("%%eflags = 0x%08x\n", eflags); in pt_regs() 199 (eflags & KREG_EFLAGS_ID_MASK) >> KREG_EFLAGS_ID_SHIFT, in pt_regs() 200 (eflags & KREG_EFLAGS_VIP_MASK) >> KREG_EFLAGS_VIP_SHIFT, in pt_regs() 201 (eflags & KREG_EFLAGS_VIF_MASK) >> KREG_EFLAGS_VIF_SHIFT, in pt_regs() 202 (eflags & KREG_EFLAGS_AC_MASK) >> KREG_EFLAGS_AC_SHIFT, in pt_regs() 203 (eflags & KREG_EFLAGS_VM_MASK) >> KREG_EFLAGS_VM_SHIFT, in pt_regs() 204 (eflags & KREG_EFLAGS_RF_MASK) >> KREG_EFLAGS_RF_SHIFT, in pt_regs() 205 (eflags & KREG_EFLAGS_NT_MASK) >> KREG_EFLAGS_NT_SHIFT, in pt_regs() [all …]
|
H A D | mdb_ia32util.c | 102 kreg_t eflags = kregs[KREG_EFLAGS]; in mdb_ia32_printregs() local 125 mdb_printf("%%eflags = 0x%08x\n", eflags); in mdb_ia32_printregs() 128 (eflags & KREG_EFLAGS_ID_MASK) >> KREG_EFLAGS_ID_SHIFT, in mdb_ia32_printregs() 129 (eflags & KREG_EFLAGS_VIP_MASK) >> KREG_EFLAGS_VIP_SHIFT, in mdb_ia32_printregs() 130 (eflags & KREG_EFLAGS_VIF_MASK) >> KREG_EFLAGS_VIF_SHIFT, in mdb_ia32_printregs() 131 (eflags & KREG_EFLAGS_AC_MASK) >> KREG_EFLAGS_AC_SHIFT, in mdb_ia32_printregs() 132 (eflags & KREG_EFLAGS_VM_MASK) >> KREG_EFLAGS_VM_SHIFT, in mdb_ia32_printregs() 133 (eflags & KREG_EFLAGS_RF_MASK) >> KREG_EFLAGS_RF_SHIFT, in mdb_ia32_printregs() 134 (eflags & KREG_EFLAGS_NT_MASK) >> KREG_EFLAGS_NT_SHIFT, in mdb_ia32_printregs() 135 (eflags & KREG_EFLAGS_IOPL_MASK) >> KREG_EFLAGS_IOPL_SHIFT); in mdb_ia32_printregs() [all …]
|
/illumos-gate/usr/src/uts/i86pc/os/ |
H A D | biosdisk.c | 134 if (((rp.eflags & PS_C) != 0) || (rp.ebx.word.bx != 0xAA55)) { in bios_check_extension_present() 136 "failed %d bx = %x\n", rp.eflags, rp.ebx.word.bx)); in bios_check_extension_present() 179 if ((rp.eflags & PS_C) != 0) { in get_dev_params() 181 rp.eflags, rp.eax.byte.ah)); in get_dev_params() 211 if (((rp.eflags & PS_C) != 0) || rp.eax.byte.ah != 0) { in drive_present() 213 drivenum, rp.eflags, rp.eax.byte.ah)); in drive_present() 234 if (((rp.eflags & PS_C) != 0) || status != 0) in reset_disk() 268 if (((rp.eflags & PS_C) != 0) || status != 0) { in read_firstblock() 313 if ((rp.eflags & PS_C) != 0 || bufp->drivenum != drivenum) { in is_eltorito() 316 rp.eflags, rp.eax.byte.ah, bufp->drivenum)); in is_eltorito()
|
H A D | pci_bios.c | 111 if ((regs.eflags & PS_C) != 0) { in pci_bios_get_irq_routing()
|
H A D | pci_cfgspace.c | 282 carryflag = regs.eflags & PS_C; in pci_check_bios()
|
H A D | fakebop.c | 975 rp->eflags = bios_func(intnum, &br); in do_bsys_doint() 977 DBG(rp->eflags); in do_bsys_doint()
|
/illumos-gate/usr/src/lib/libc/port/regex/ |
H A D | regexec.c | 197 size_t nmatch, regmatch_t pmatch[_RESTRICT_KYWD], int eflags) in regexec() argument 215 eflags = GOODFLAGS(eflags); in regexec() 218 return (mmatcher(g, string, nmatch, pmatch, eflags)); in regexec() 219 else if (g->nstates <= CHAR_BIT*sizeof (states1) && !(eflags®_LARGE)) in regexec() 220 return (smatcher(g, string, nmatch, pmatch, eflags)); in regexec() 222 return (lmatcher(g, string, nmatch, pmatch, eflags)); in regexec()
|
H A D | engine.c | 84 int eflags; member 141 #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); } 186 regmatch_t pmatch[], int eflags) in matcher() argument 209 if (eflags®_STARTEND) { in matcher() 268 m->eflags = eflags; in matcher() 331 if (!g->backrefs && !(m->eflags®_BACKR)) { in matcher() 640 if ((sp == m->beginp && !(m->eflags®_NOTBOL)) || in backref() 647 if ((sp == m->endp && !(m->eflags®_NOTEOL)) || in backref() 655 ((sp == m->beginp && !(m->eflags®_NOTBOL)) || in backref() 661 if (((sp == m->endp && !(m->eflags®_NOTEOL)) || in backref() [all …]
|
/illumos-gate/usr/src/boot/i386/btx/lib/ |
H A D | btxv86.s | 39 .set V86_EFL,0x28 # V86 eflags 68 pushf # Put eflags 72 popf # in eflags
|
/illumos-gate/usr/src/boot/sys/i386/include/ |
H A D | cpufunc.h | 703 register_t eflags; in intr_disable() local 705 eflags = read_eflags(); in intr_disable() 707 return (eflags); in intr_disable() 711 intr_restore(register_t eflags) in intr_restore() argument 713 write_eflags(eflags); in intr_restore()
|
/illumos-gate/usr/src/uts/intel/sys/ |
H A D | bootregs.h | 74 uint32_t eflags; member
|
/illumos-gate/usr/src/uts/common/fs/ |
H A D | xattr.c | 1313 int *eflags) in readdir_xattr_casecmp() argument 1319 *eflags = 0; in readdir_xattr_casecmp() 1326 *eflags = ED_CASE_CONFLICT; in readdir_xattr_casecmp() 1389 int eflags; in xattr_dir_readdir() local 1396 eflags = 0; in xattr_dir_readdir() 1400 cr, ct, &eflags); in xattr_dir_readdir() 1408 eflags); in xattr_dir_readdir()
|
H A D | gfs.c | 312 ino64_t ino, const char *name, int eflags) in gfs_readdir_emit() argument 321 edp->ed_eflags = eflags; in gfs_readdir_emit()
|
/illumos-gate/usr/src/test/libc-tests/tests/regex/ |
H A D | testregex.c | 1221 int eflags; in main() local 1535 eflags = REG_EXEC_DEFAULT; in main() 1609 eflags |= REG_NOTBOL; in main() 1618 eflags |= REG_NOTEOL; in main() 1681 eflags |= REG_LEFT; in main() 1772 if ((cflags|eflags) == NOTEST || (skip & level) && (test & TEST_BASELINE)) in main() 2131 eret = regnexec(&preg, s, nexec, nmatch, match, eflags); in main() 2138 eret = regexec(&preg, s, nmatch, match, eflags); in main() 2142 eret = regexec(&preg, s, nmatch, match, eflags); in main()
|
/illumos-gate/usr/src/cmd/sgs/libld/common/ |
H A D | machrel.sparc.c | 122 Word eflags = ofl->ofl_dehdr->e_flags; in ld_mach_eflags() local 155 eflags |= (ehdr->e_flags & ~EF_SPARCV9_MM); in ld_mach_eflags() 156 memopt1 = eflags & EF_SPARCV9_MM; in ld_mach_eflags() 158 eflags &= ~EF_SPARCV9_MM; in ld_mach_eflags() 164 eflags |= EF_SPARCV9_PSO; in ld_mach_eflags() 166 eflags |= EF_SPARCV9_RMO; in ld_mach_eflags() 168 ofl->ofl_dehdr->e_flags = eflags; in ld_mach_eflags()
|
/illumos-gate/usr/src/cmd/bhyve/amd64/ |
H A D | task_switch.c | 497 uint32_t eflags; in tss32_restore() local 507 eflags = tss->tss_eflags; in tss32_restore() 509 eflags |= PSL_NT; in tss32_restore() 546 SETREG(vcpu, VM_REG_GUEST_RFLAGS, eflags); in tss32_restore()
|
/illumos-gate/usr/src/uts/common/xen/public/arch-x86/ |
H A D | xen-x86_32.h | 156 uint32_t eflags; /* eflags.IF == !saved_upcall_mask */ member
|
/illumos-gate/usr/src/cmd/sendmail/src/ |
H A D | envelope.c | 1236 struct eflags struct 1242 static struct eflags EnvelopeFlags[] = argument 1279 register struct eflags *ef;
|
/illumos-gate/usr/src/cmd/sed/ |
H A D | process.c | 658 regexec_e(regex_t *preg, const char *string, int eflags, int nomatch, in regexec_e() argument 674 nomatch ? 0 : maxnsub + 1, match, eflags | REG_STARTEND); in regexec_e()
|
/illumos-gate/usr/src/boot/i386/btx/btx/ |
H A D | btx.S | 524 movl $PSL_RESERVED_DEFAULT,%ebx # Set clean %eflags 615 pushfl # Save %eflags 616 pushl $PSL_RESERVED_DEFAULT|PSL_D # Use clean %eflags with
|
/illumos-gate/usr/src/cmd/mdb/intel/modules/mdb_kb/ |
H A D | mdb_kb.c | 1562 regs->r_efl = ur->eflags; in xkb_getmregs()
|