Searched refs:eflags (Results 1 - 25 of 71) sorted by relevance

123

/freebsd-9.3-release/contrib/unvis/
H A Dunvis.c57 int ch, eflags = 0; local
63 eflags |= VIS_NOESCAPE;
66 eflags |= VIS_HTTP1866;
69 eflags |= VIS_HTTP1808;
72 eflags |= VIS_MIMESTYLE;
84 switch (eflags & (VIS_HTTP1808|VIS_HTTP1866|VIS_MIMESTYLE)) {
97 process(fp, *argv, eflags);
103 process(stdin, "<stdin>", eflags);
108 process(FILE *fp, const char *filename, int eflags) argument
117 switch(ret = unvis(&outc, (char)c, &state, eflags)) {
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Di386fbsd-nat.c53 ULONGEST eflags; local
66 &eflags);
67 if (eflags & 0x0100)
69 eflags & ~0x0100);
/freebsd-9.3-release/contrib/vis/
H A Dvis.c58 static int eflags, fold, foldwidth = 80, none, markeol; variable
76 eflags |= VIS_NOSLASH;
79 eflags |= VIS_CSTYLE;
100 eflags |= VIS_HTTPSTYLE;
106 eflags |= VIS_MIMESTYLE;
114 eflags |= VIS_OCTAL;
117 eflags |= VIS_SAFE;
120 eflags |= VIS_TAB;
123 eflags |= VIS_WHITE;
133 if ((eflags
[all...]
/freebsd-9.3-release/usr.bin/grep/regex/
H A Dfastmatch.c130 size_t nmatch, regmatch_t pmatch[], int eflags)
134 if (eflags & REG_STARTEND)
136 type, nmatch, pmatch, eflags));
139 pmatch, eflags);
144 regmatch_t pmatch[], int eflags)
146 return tre_fastnexec(preg, string, (size_t)-1, nmatch, pmatch, eflags);
151 size_t nmatch, regmatch_t pmatch[], int eflags)
155 if (eflags & REG_STARTEND)
157 type, nmatch, pmatch, eflags));
160 pmatch, eflags);
129 tre_fastnexec(const fastmatch_t *preg, const char *string, size_t len, size_t nmatch, regmatch_t pmatch[], int eflags) argument
143 tre_fastexec(const fastmatch_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) argument
150 tre_fastwnexec(const fastmatch_t *preg, const wchar_t *string, size_t len, size_t nmatch, regmatch_t pmatch[], int eflags) argument
164 tre_fastwexec(const fastmatch_t *preg, const wchar_t *string, size_t nmatch, regmatch_t pmatch[], int eflags) argument
[all...]
H A Dtre-fastmatch.h18 tre_str_type_t type, int nmatch, regmatch_t pmatch[], int eflags);
H A Dfastmatch.h45 regmatch_t pmatch[], int eflags);
58 size_t nmatch, regmatch_t pmatch[], int eflags);
70 size_t nmatch, regmatch_t pmatch[], int eflags);
80 size_t nmatch, regmatch_t pmatch[], int eflags);
H A Dglue.h53 for (unsigned i = 0; (!(eflags & REG_NOSUB) && (i < nmatch)); i++)\
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A Dregexec.c142 llvm_regmatch_t pmatch[], int eflags)
156 eflags = GOODFLAGS(eflags);
158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
159 return(smatcher(g, string, nmatch, pmatch, eflags));
161 return(lmatcher(g, string, nmatch, pmatch, eflags));
141 llvm_regexec(const llvm_regex_t *preg, const char *string, size_t nmatch, llvm_regmatch_t pmatch[], int eflags) argument
/freebsd-9.3-release/lib/libc/regex/
H A Dregexec.c211 int eflags)
225 eflags = GOODFLAGS(eflags);
228 return(mmatcher(g, (char *)string, nmatch, pmatch, eflags));
229 else if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags&REG_LARGE))
230 return(smatcher(g, (char *)string, nmatch, pmatch, eflags));
232 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
207 regexec(const regex_t * __restrict preg, const char * __restrict string, size_t nmatch, regmatch_t pmatch[__restrict], int eflags) argument
H A Dengine.c83 int eflags; member in struct:match
104 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
137 #define NOTE(str) { if (m->eflags&REG_TRACE) printf("=%s\n", (str)); }
147 == size_t nmatch, regmatch_t pmatch[], int eflags);
154 int eflags)
176 if (eflags&REG_STARTEND) {
232 m->eflags = eflags;
290 if (!g->backrefs && !(m->eflags&REG_BACKR)) {
609 if ( (sp == m->beginp && !(m->eflags
150 matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) argument
[all...]
/freebsd-9.3-release/libexec/rtld-elf/i386/
H A Drtld_start.S74 pushf # Save eflags
89 popf # Restore eflags
90 leal 4(%esp),%esp # Discard reloff, do not change eflags
/freebsd-9.3-release/sys/vm/
H A Dvm_map.c144 !((e)->eflags & MAP_ENTRY_NEEDS_COPY)))
486 if ((entry->eflags & MAP_ENTRY_VN_WRITECNT) != 0) {
491 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0,
816 entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) |
1232 (prev_entry->eflags == protoeflags) &&
1271 !(prev_entry->eflags & MAP_ENTRY_NEEDS_COPY)) {
1292 new_entry->eflags = protoeflags;
1523 if (entry->eflags & (MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_IS_SUB_MAP))
1533 (prev->eflags
[all...]
H A Dvm_map.h111 vm_eflags_t eflags; /* map entry flags */ member in struct:vm_map_entry
150 return (entry->eflags & MAP_ENTRY_BEHAV_MASK);
156 if (entry->eflags & MAP_ENTRY_USER_WIRED)
/freebsd-9.3-release/sys/boot/i386/btx/lib/
H A Dbtxv86.s39 .set V86_EFL,0x28 # V86 eflags
68 pushf # Put eflags
72 popf # in eflags
/freebsd-9.3-release/sys/boot/pc98/btx/lib/
H A Dbtxv86.s39 .set V86_EFL,0x28 # V86 eflags
68 pushf # Put eflags
72 popf # in eflags
/freebsd-9.3-release/sys/i386/include/
H A Dvm86.h67 reg86_t eflags; member in struct:vm86frame
99 #define vmf_flags eflags.r_w.r_x
100 #define vmf_eflags eflags.r_ex
H A Dcpufunc.h52 extern void write_eflags(u_int eflags);
687 register_t eflags; local
689 eflags = read_eflags();
691 return (eflags);
695 intr_restore(register_t eflags) argument
697 write_eflags(eflags);
/freebsd-9.3-release/sys/pc98/pc98/
H A Dmachdep.c377 * We also change eflags to be our emulated eflags, not the actual
378 * eflags.
505 * We also change eflags to be our emulated eflags, not the actual
506 * eflags.
657 * We also change eflags to be our emulated eflags, not the actual
658 * eflags.
729 int eflags, erro local
844 int cs, eflags, error; local
947 int cs, eflags, error, ret; local
2700 int eflags, ret; local
[all...]
/freebsd-9.3-release/sys/boot/i386/libi386/
H A Dbootinfo64.c137 int eflags, regs[4]; local
140 eflags = read_eflags();
141 write_eflags(eflags ^ PSL_ID);
142 if (!((eflags ^ read_eflags()) & PSL_ID))
/freebsd-9.3-release/sys/boot/userboot/userboot/
H A Dbootinfo64.c138 int eflags, regs[4];
141 eflags = read_eflags();
142 write_eflags(eflags ^ PSL_ID);
143 if (!((eflags ^ read_eflags()) & PSL_ID))
/freebsd-9.3-release/sys/ia64/ia32/
H A Dia32_trap.c154 register_t eflags; local
159 eflags = ia64_get_eflag();
166 if ((eflags & PSL_T) && !(eflags & PSL_VM)) {
/freebsd-9.3-release/sys/xen/interface/hvm/
H A Dvmx_assist.h65 uint32_t eflags; /* flags register */ member in struct:vmx_assist_context
/freebsd-9.3-release/sys/i386/i386/
H A Dmachdep.c441 * We also change eflags to be our emulated eflags, not the actual
442 * eflags.
569 * We also change eflags to be our emulated eflags, not the actual
570 * eflags.
721 * We also change eflags to be our emulated eflags, not the actual
722 * eflags.
795 int eflags, erro local
910 int cs, eflags, error; local
1013 int cs, eflags, error, ret; local
3390 int eflags, ret; local
[all...]
/freebsd-9.3-release/sys/amd64/ia32/
H A Dia32_signal.c713 int eflags, error; local
721 eflags = scp->sc_eflags;
722 if (!EFL_SECURE(eflags, regs->tf_rflags)) {
750 regs->tf_rflags = eflags;
778 int cs, eflags, error; local
786 eflags = ucp->uc_mcontext.mc_eflags;
790 if (!EFL_SECURE(eflags, regs->tf_rflags)) {
791 uprintf("pid %d (%s): freebsd4_freebsd32_sigreturn eflags = 0x%x\n",
792 td->td_proc->p_pid, td->td_name, eflags);
854 int cs, eflags, erro local
[all...]
/freebsd-9.3-release/sys/security/mac/
H A Dmac_process.c269 if (vme->eflags & MAP_ENTRY_IS_SUB_MAP) {
277 if (vme->eflags & (MAP_ENTRY_COW | MAP_ENTRY_NOSYNC) ||
357 vme->eflags |= MAP_ENTRY_COW |

Completed in 313 milliseconds

123