Home
last modified time | relevance | path

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

1234

/freebsd/contrib/vis/
H A Dvis.c76 eflags |= VIS_NOSLASH; in main()
79 eflags |= VIS_CSTYLE; in main()
100 eflags |= VIS_HTTPSTYLE; in main()
106 eflags |= VIS_META; in main()
109 eflags |= VIS_MIMESTYLE; in main()
114 eflags |= VIS_NOLOCALE; in main()
120 eflags |= VIS_OCTAL; in main()
123 eflags |= VIS_SHELL; in main()
126 eflags |= VIS_SAFE; in main()
129 eflags |= VIS_TAB; in main()
[all …]
/freebsd/contrib/unvis/
H A Dunvis.c57 int ch, eflags = 0; in main() local
63 eflags |= VIS_NOESCAPE; in main()
66 eflags |= VIS_HTTP1866; in main()
69 eflags |= VIS_HTTP1808; in main()
72 eflags |= VIS_MIMESTYLE; in main()
84 switch (eflags & (VIS_HTTP1808|VIS_HTTP1866|VIS_MIMESTYLE)) { in main()
97 process(fp, *argv, eflags); in main()
103 process(stdin, "<stdin>", eflags); in main()
108 process(FILE *fp, const char *filename, int eflags) in process() argument
117 switch(ret = unvis(&outc, (char)c, &state, eflags)) { in process()
[all …]
/freebsd/sys/vm/
H A Dvm_map.c891 map->header.eflags = MAP_ENTRY_HEADER; in _vm_map_init()
979 entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) | in vm_map_entry_set_behavior()
1795 new_entry->eflags = protoeflags; in vm_map_insert1()
2312 prev->eflags == entry->eflags && in vm_map_mergeable_neighbors()
3075 entry->eflags |= MAP_ENTRY_NOSYNC; in vm_map_madvise()
3078 entry->eflags &= ~MAP_ENTRY_NOSYNC; in vm_map_madvise()
4191 if ((dst_entry->eflags|src_entry->eflags) & MAP_ENTRY_IS_SUB_MAP) in vm_map_copy_entry()
4500 new_entry->eflags = old_entry->eflags & in vmspace_fork()
4650 gap_entry->eflags)); in vm_map_stack_locked()
5379 entry->eflags); in vm_map_print()
[all …]
H A Dvm_map.h110 vm_eflags_t eflags; /* map entry flags */ member
155 (((entry)->eflags & MAP_ENTRY_SPLIT_BOUNDARY_MASK) >> \
162 return (entry->eflags & MAP_ENTRY_BEHAV_MASK); in vm_map_entry_behavior()
168 if (entry->eflags & MAP_ENTRY_USER_WIRED) in vm_map_entry_user_wired_count()
/freebsd/sys/i386/i386/
H A Dexec_machdep.c551 int eflags, error; in osigreturn() local
559 eflags = scp->sc_ps; in osigreturn()
560 if (eflags & PSL_VM) { in osigreturn()
575 if ((eflags & PSL_VIP) && (eflags & PSL_VIF)) { in osigreturn()
660 int cs, eflags, error; in freebsd4_sigreturn() local
669 if (eflags & PSL_VM) { in freebsd4_sigreturn()
684 if ((eflags & PSL_VIP) && (eflags & PSL_VIF)) { in freebsd4_sigreturn()
777 if (eflags & PSL_VM) { in sys_sigreturn()
792 if ((eflags & PSL_VIP) && (eflags & PSL_VIF)) { in sys_sigreturn()
1165 int eflags, ret; in set_mcontext() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregexec.c142 llvm_regmatch_t pmatch[], int eflags) in llvm_regexec() argument
156 eflags = GOODFLAGS(eflags); in llvm_regexec()
158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE)) in llvm_regexec()
159 return(smatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec()
161 return(lmatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec()
H A Dregengine.inc75 int eflags;
136 int eflags)
151 if (eflags&REG_STARTEND) {
173 m->eflags = eflags;
221 if (!g->backrefs && !(m->eflags&REG_BACKR)) {
755 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
760 (c == OUT && !(m->eflags&REG_NOTEOL)) ) {
860 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
865 (c == OUT && !(m->eflags&REG_NOTEOL)) ) {
1036 if (!(m->eflags&REG_TRACE))
[all …]
/freebsd/contrib/nvi/regex/
H A Dregexec.c153 regmatch_t *pmatch, int eflags) in regexec() argument
167 eflags = GOODFLAGS(eflags); in regexec()
169 if (g->nstates <= (int)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE)) in regexec()
170 return(smatcher(g, string, nmatch, pmatch, eflags)); in regexec()
172 return(lmatcher(g, string, nmatch, pmatch, eflags)); in regexec()
H A Dengine.c71 int eflags; member
133 regmatch_t pmatch[], int eflags) in matcher() argument
148 if (eflags&REG_STARTEND) { in matcher()
170 m->eflags = eflags; in matcher()
216 if (!g->backrefs && !(m->eflags&REG_BACKR)) { in matcher()
710 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) { in fast()
715 (c == OUT && !(m->eflags&REG_NOTEOL)) ) { in fast()
793 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) { in slow()
798 (c == OUT && !(m->eflags&REG_NOTEOL)) ) { in slow()
975 if (!(m->eflags&REG_TRACE)) in print()
[all …]
/freebsd/lib/libc/regex/
H A Dregexec.c205 int eflags) in regexec() argument
219 eflags = GOODFLAGS(eflags); in regexec()
222 return(mmatcher(g, string, nmatch, pmatch, eflags)); in regexec()
223 else if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags&REG_LARGE)) in regexec()
224 return(smatcher(g, string, nmatch, pmatch, eflags)); in regexec()
226 return(lmatcher(g, string, nmatch, pmatch, eflags)); in regexec()
H A Dengine.c82 int eflags; member
190 int eflags) in matcher() argument
212 if (eflags&REG_STARTEND) { in matcher()
268 m->eflags = eflags; in matcher()
331 if (!g->backrefs && !(m->eflags&REG_BACKR)) { in matcher()
601 (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || \
893 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) { in walk()
898 (c == OUT && !(m->eflags&REG_NOTEOL)) ) { in walk()
907 if (c == OUT && (m->eflags & REG_NOTEOL) == 0) { in walk()
1141 if (!(m->eflags&REG_TRACE)) in print()
[all …]
/freebsd/stand/userboot/userboot/
H A Dbootinfo64.c49 int eflags, regs[4]; in bi_checkcpu()
52 eflags = read_eflags(); in bi_checkcpu()
53 write_eflags(eflags ^ PSL_ID); in bi_checkcpu()
54 if (!((eflags ^ read_eflags()) & PSL_ID)) in bi_checkcpu()
/freebsd/stand/i386/libi386/
H A Dbootinfo64.c53 int eflags; in bi_checkcpu() local
57 eflags = read_eflags(); in bi_checkcpu()
58 write_eflags(eflags ^ PSL_ID); in bi_checkcpu()
59 if (!((eflags ^ read_eflags()) & PSL_ID)) in bi_checkcpu()
/freebsd/tests/sys/geom/class/eli/
H A Donline_resize_test.sh27 eflags="0x200"
31 eflags="0x210"
55 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
60 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
66 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
77 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
101 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
113 atf_check -s exit:0 -o match:"flags: ${eflags}$" geli dump ${md}p1
/freebsd/libexec/rtld-elf/i386/
H A Drtld_start.S79 pushf # Save eflags
94 popf # Restore eflags
95 leal 4(%esp),%esp # Discard reloff, do not change eflags
/freebsd/sys/i386/include/
H A Dvm86.h67 reg86_t eflags; member
99 #define vmf_flags eflags.r_w.r_x
100 #define vmf_eflags eflags.r_ex
H A Dcpufunc.h691 register_t eflags; in intr_disable() local
693 eflags = read_eflags(); in intr_disable()
695 return (eflags); in intr_disable()
699 intr_restore(register_t eflags) in intr_restore() argument
701 write_eflags(eflags); in intr_restore()
/freebsd/stand/i386/btx/lib/
H A Dbtxv86.S37 .set V86_EFL,0x28 # V86 eflags
66 pushf # Put eflags
70 popf # in eflags
/freebsd/sys/amd64/ia32/
H A Dia32_signal.c698 int eflags, error; in ofreebsd32_sigreturn() local
706 eflags = scp->sc_eflags; in ofreebsd32_sigreturn()
707 if (!EFL_SECURE(eflags, regs->tf_rflags)) { in ofreebsd32_sigreturn()
735 regs->tf_rflags = eflags; in ofreebsd32_sigreturn()
757 int cs, eflags, error; in freebsd4_freebsd32_sigreturn() local
765 eflags = ucp->uc_mcontext.mc_eflags; in freebsd4_freebsd32_sigreturn()
769 if (!EFL_SECURE(eflags, regs->tf_rflags)) { in freebsd4_freebsd32_sigreturn()
771 td->td_proc->p_pid, td->td_name, eflags); in freebsd4_freebsd32_sigreturn()
826 int cs, eflags, error, ret; in freebsd32_sigreturn() local
834 eflags = ucp->uc_mcontext.mc_eflags; in freebsd32_sigreturn()
[all …]
/freebsd/sys/i386/linux/
H A Dlinux_locore.asm28 .cfi_offset %eflags, L_SC_EFLAGS
63 .cfi_offset %eflags, L_SC_EFLAGS
H A Dlinux_sysvec.c360 int eflags; in linux_sigreturn() local
375 eflags = frame.sf_sc.sc_eflags; in linux_sigreturn()
376 if (!EFLAGS_SECURE(eflags, regs->tf_eflags)) in linux_sigreturn()
411 regs->tf_eflags = eflags; in linux_sigreturn()
437 int eflags; in linux_rt_sigreturn() local
454 eflags = context->sc_eflags; in linux_rt_sigreturn()
455 if (!EFLAGS_SECURE(eflags, regs->tf_eflags)) in linux_rt_sigreturn()
491 regs->tf_eflags = eflags; in linux_rt_sigreturn()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextWindows_i386.cpp28 uint32_t eflags; member
60 …DEFINE_GPR(eflags, "flags", ehframe_eflags_i386, dwarf_eflags_i386, LLDB_REGNUM_GENERIC_FLAGS…
/freebsd/sys/cddl/dev/dtrace/i386/
H A Ddtrace_subr.c359 register_t eflags; in dtrace_gethrtime() local
367 eflags = intr_disable(); in dtrace_gethrtime()
369 intr_restore(eflags); in dtrace_gethrtime()
/freebsd/sys/amd64/linux32/
H A Dlinux32_locore.asm29 .cfi_offset %eflags, L_SC_EFLAGS
65 .cfi_offset %eflags, L_SC_EFLAGS
/freebsd/sys/security/mac/
H A Dmac_process.c268 if (vme->eflags & MAP_ENTRY_IS_SUB_MAP) { in mac_proc_vm_revoke_recurse()
276 if (vme->eflags & (MAP_ENTRY_COW | MAP_ENTRY_NOSYNC) || in mac_proc_vm_revoke_recurse()
353 vme->eflags |= MAP_ENTRY_COW | in mac_proc_vm_revoke_recurse()

1234