Home
last modified time | relevance | path

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

1234

/freebsd/contrib/vis/
H A Dvis.c58 static int eflags, fold, foldwidth = 80, none, markeol; variable
76 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()
[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.c150 !((e)->eflags & MAP_ENTRY_NEEDS_COPY)))
540 if ((entry->eflags & MAP_ENTRY_VN_EXEC) == 0) in vm_map_entry_set_vnode_text()
542 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, in vm_map_entry_set_vnode_text()
591 MPASS((entry->eflags & (MAP_ENTRY_WRITECNT | in vm_map_process_deferred()
594 if ((entry->eflags & MAP_ENTRY_WRITECNT) != 0) { in vm_map_process_deferred()
599 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, in vm_map_process_deferred()
888 map->header.eflags = MAP_ENTRY_HEADER; in _vm_map_init()
980 entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) | in vm_map_entry_set_behavior()
1414 if ((root->eflags in vm_map_entry_link()
[all...]
H A Dvm_map.h109 vm_eflags_t eflags; /* map entry flags */
154 (((entry)->eflags & MAP_ENTRY_SPLIT_BOUNDARY_MASK) >> \
161 return (entry->eflags & MAP_ENTRY_BEHAV_MASK); in vm_map_entry_behavior()
167 if (entry->eflags & MAP_ENTRY_USER_WIRED) in vm_map_entry_user_wired_count()
195 * header has a special value for the eflags field,
197 * and prevents an eflags match of the header with any other map
110 vm_eflags_t eflags; /* map entry flags */ global() member
/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()
584 eflags = (tf->tf_eflags & ~VME_USERCHANGE) | in osigreturn()
585 (eflags & VME_USERCHANGE) | PSL_VM; in osigreturn()
587 vm86->vm86_eflags = eflags; /* save VIF, VIP */ in osigreturn()
588 eflags = (tf->tf_eflags & ~VM_USERCHANGE) | in osigreturn()
589 (eflags & VM_USERCHANGE) | PSL_VM; in osigreturn()
602 if (!EFL_SECURE(eflags, regs->tf_eflags)) { in osigreturn()
[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
91 … matcher(struct re_guts *g, const RCHAR_T *string, size_t nmatch, regmatch_t pmatch[], int eflags);
121 #define NOTE(str) do { if (m->eflags&REG_TRACE) printf("=%s\n", (str)); } while(0);
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()
515 if ( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) || in backref()
523 if ( (sp == m->endp && !(m->eflags&REG_NOTEOL)) || in backref()
531 if (( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) || in backref()
[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;
122 #define NOTE(str) { if (m->eflags&REG_TRACE) (void)printf("=%s\n", (str)); }
136 int eflags)
151 if (eflags&REG_STARTEND) {
173 m->eflags = eflags;
221 if (!g->backrefs && !(m->eflags&REG_BACKR)) {
562 if ( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
570 if ( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
578 if (( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
589 if (( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
[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
103 …int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
140 #define NOTE(str) { if (m->eflags&REG_TRACE) printf("=%s\n", (str)); }
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()
598 ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) || \
601 (((sp == m->endp && !(m->eflags&REG_NOTEOL)) || \
665 if (sp == m->beginp && (m->eflags & REG_NOTBOL) == 0) in backref()
[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
/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_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()
H A Dlinux_locore.asm28 .cfi_offset %eflags, L_SC_EFLAGS
63 .cfi_offset %eflags, L_SC_EFLAGS
/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()
/freebsd/sys/x86/iommu/
H A Damd_idpgtbl.c230 vm_page_t *ma, uint64_t eflags, int flags) in amdiommu_map_buf() argument
239 pflags = ((eflags & IOMMU_MAP_ENTRY_READ) != 0 ? AMDIOMMU_PTE_IR : 0) | in amdiommu_map_buf()
240 ((eflags & IOMMU_MAP_ENTRY_WRITE) != 0 ? AMDIOMMU_PTE_IW : 0) | in amdiommu_map_buf()
241 ((eflags & IOMMU_MAP_ENTRY_SNOOP) != 0 ? AMDIOMMU_PTE_FC : 0); in amdiommu_map_buf()

1234