Home
last modified time | relevance | path

Searched refs:eflags (Results 1 – 21 of 21) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/intel/mdb/
H A Dproc_ia32dep.c119 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()
209 (eflags & KREG_EFLAGS_OF_MASK) ? "OF" : "of", in pt_regs()
210 (eflags & KREG_EFLAGS_DF_MASK) ? "DF" : "df", in pt_regs()
211 (eflags & KREG_EFLAGS_IF_MASK) ? "IF" : "if", in pt_regs()
212 (eflags & KREG_EFLAGS_TF_MASK) ? "TF" : "tf", in pt_regs()
213 (eflags & KREG_EFLAGS_SF_MASK) ? "SF" : "sf", in pt_regs()
214 (eflags & KREG_EFLAGS_ZF_MASK) ? "ZF" : "zf", in pt_regs()
215 (eflags & KREG_EFLAGS_AF_MASK) ? "AF" : "af", in pt_regs()
[all …]
H A Dmdb_ia32util.c102 kreg_t eflags = kregs[KREG_EFLAGS]; in mdb_ia32_printregs() local
125 mdb_printf("%%eflags = 0x%08x\n", eflags); in mdb_ia32_printregs()
138 (eflags & KREG_EFLAGS_OF_MASK) ? "OF" : "of", in mdb_ia32_printregs()
139 (eflags & KREG_EFLAGS_DF_MASK) ? "DF" : "df", in mdb_ia32_printregs()
140 (eflags & KREG_EFLAGS_IF_MASK) ? "IF" : "if", in mdb_ia32_printregs()
141 (eflags & KREG_EFLAGS_TF_MASK) ? "TF" : "tf", in mdb_ia32_printregs()
142 (eflags & KREG_EFLAGS_SF_MASK) ? "SF" : "sf", in mdb_ia32_printregs()
143 (eflags & KREG_EFLAGS_ZF_MASK) ? "ZF" : "zf", in mdb_ia32_printregs()
144 (eflags & KREG_EFLAGS_AF_MASK) ? "AF" : "af", in mdb_ia32_printregs()
145 (eflags & KREG_EFLAGS_PF_MASK) ? "PF" : "pf", in mdb_ia32_printregs()
[all …]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dbiosdisk.c134 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 Dpci_bios.c111 if ((regs.eflags & PS_C) != 0) { in pci_bios_get_irq_routing()
H A Dpci_cfgspace.c282 carryflag = regs.eflags & PS_C; in pci_check_bios()
H A Dfakebop.c975 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 Dregexec.c197 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&REG_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 Dengine.c84 int eflags; member
186 regmatch_t pmatch[], int eflags) in matcher() argument
209 if (eflags&REG_STARTEND) { in matcher()
268 m->eflags = eflags; in matcher()
331 if (!g->backrefs && !(m->eflags&REG_BACKR)) { in matcher()
647 if ((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
661 if (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
838 (lastc == OUT && !(m->eflags&REG_NOTBOL))) { in walk()
843 (c == OUT && !(m->eflags&REG_NOTEOL))) { in walk()
1029 if (!(m->eflags&REG_TRACE)) in print()
[all …]
/illumos-gate/usr/src/boot/i386/btx/lib/
H A Dbtxv86.s39 .set V86_EFL,0x28 # V86 eflags
68 pushf # Put eflags
72 popf # in eflags
/illumos-gate/usr/src/boot/sys/i386/include/
H A Dcpufunc.h703 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 Dbootregs.h74 uint32_t eflags; member
/illumos-gate/usr/src/uts/common/fs/
H A Dxattr.c1313 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 Dgfs.c312 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 Dtestregex.c1221 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 Dmachrel.sparc.c122 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/
H A Dtask_switch.c498 uint32_t eflags; in tss32_restore() local
508 eflags = tss->tss_eflags; in tss32_restore()
510 eflags |= PSL_NT; in tss32_restore()
547 SETREG(vcpu, VM_REG_GUEST_RFLAGS, eflags); in tss32_restore()
/illumos-gate/usr/src/uts/common/xen/public/arch-x86/
H A Dxen-x86_32.h156 uint32_t eflags; /* eflags.IF == !saved_upcall_mask */ member
/illumos-gate/usr/src/cmd/sendmail/src/
H A Denvelope.c1236 struct eflags struct
1242 static struct eflags EnvelopeFlags[] = argument
1279 register struct eflags *ef;
/illumos-gate/usr/src/cmd/sed/
H A Dprocess.c658 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 Dbtx.S524 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 Dmdb_kb.c1562 regs->r_efl = ur->eflags; in xkb_getmregs()