| /src/usr.bin/unvis/ |
| unvis.c | 57 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) 117 switch(ret = unvis(&outc, (char)c, &state, eflags)) { [all...] |
| /src/external/lgpl3/mpfr/dist/tests/ |
| tmodf.c | 104 unsigned int eflags, gflags; local 141 eflags = MPFR_FLAGS_INEXACT | (ov ? MPFR_FLAGS_OVERFLOW : 0); 142 if (gflags != eflags) 145 " expected %u, got %u\n", ov, eflags, gflags); 174 eflags = MPFR_FLAGS_INEXACT | MPFR_FLAGS_OVERFLOW; 175 if (gflags != eflags) 178 " expected %u, got %u\n", eflags, gflags);
|
| tlgamma.c | 416 mpfr_flags_t flags, eflags; local 423 eflags = MPFR_FLAGS_INEXACT | MPFR_FLAGS_OVERFLOW; 437 if (! (mpfr_equal_p (y, z) && SAME_SIGN (inex, -1) && flags == eflags)) 443 flags_out (eflags);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| i386-fbsd-nat.c | 236 ULONGEST eflags; local 249 &eflags); 250 if (eflags & 0x0100) 252 eflags & ~0x0100);
|
| i386-darwin-nat.c | 511 raised, including %eflags/%rflags. That means that single-stepping 530 unsigned int eflags; local 538 read_memory (flags_addr, (gdb_byte *) &eflags, 4); 539 eflags |= X86_EFLAGS_T; 540 write_memory (flags_addr, (gdb_byte *) &eflags, 4);
|
| i386-linux-nat.c | 667 raised, including %eflags. That means that single-stepping 683 unsigned long int eflags; 695 read_memory (addr, (gdb_byte *) &eflags, 4); 696 eflags |= 0x0100; 697 write_memory (addr, (gdb_byte *) &eflags, 4); 676 unsigned long int eflags; local
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| i386-fbsd-nat.c | 236 ULONGEST eflags; local 249 &eflags); 250 if (eflags & 0x0100) 252 eflags & ~0x0100);
|
| i386-darwin-nat.c | 511 raised, including %eflags/%rflags. That means that single-stepping 530 unsigned int eflags; local 538 read_memory (flags_addr, (gdb_byte *) &eflags, 4); 539 eflags |= X86_EFLAGS_T; 540 write_memory (flags_addr, (gdb_byte *) &eflags, 4);
|
| i386-linux-nat.c | 683 raised, including %eflags. That means that single-stepping 699 unsigned long int eflags; 711 read_memory (addr, (gdb_byte *) &eflags, 4); 712 eflags |= 0x0100; 713 write_memory (addr, (gdb_byte *) &eflags, 4); 692 unsigned long int eflags; local
|
| /src/usr.bin/vis/ |
| vis.c | 58 static int eflags, fold, foldwidth = 80, none, markeol; variable 76 eflags |= VIS_NOSLASH; 79 eflags |= VIS_CSTYLE; 100 eflags |= VIS_HTTPSTYLE; 106 eflags |= VIS_META; 109 eflags |= VIS_MIMESTYLE; 114 eflags |= VIS_NOLOCALE; 120 eflags |= VIS_OCTAL; 123 eflags |= VIS_SHELL; 126 eflags |= VIS_SAFE [all...] |
| /src/sys/arch/i386/i386/ |
| longrun.c | 131 u_long eflags; local 135 eflags = x86_read_psl(); 152 x86_write_psl(eflags); 159 u_long eflags; local 162 eflags = x86_read_psl(); 170 x86_write_psl(eflags); 176 u_long eflags; local 182 eflags = x86_read_psl(); 198 x86_write_psl(eflags);
|
| /src/sys/compat/linux/arch/amd64/ |
| linux_machdep.h | 79 u_int64_t eflags; member in struct:linux_sigcontext
|
| /src/sys/compat/linux/arch/i386/ |
| linux_ptrace.c | 72 long eflags; member in struct:linux_reg 238 linux_regs->eflags = regs->r_eflags; 258 regs->r_eflags = linux_regs->eflags;
|
| /src/sys/external/mit/xen-include-public/dist/xen/include/public/hvm/ |
| hvm_vcpu.h | 38 uint32_t eflags; member in struct:vcpu_hvm_x86_32
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_subst.c | 361 int didsub, do_eol_match, eflags, empty_ok, eval; local 547 eflags = REG_STARTEND; 560 eval = regexec(re, st + offset, 10, match, eflags); 576 eflags |= REG_NOTBOL; 772 eflags |= REG_NOTEOL; 787 eflags |= REG_NOTEOL;
|
| /src/external/bsd/nvi/dist/regex/ |
| engine.c | 74 int eflags; member in struct:match 94 static int matcher __P((struct re_guts *g, RCHAR_T *string, size_t nmatch, regmatch_t pmatch[], int eflags)); 124 #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); } 134 == size_t nmatch, regmatch_t pmatch[], int eflags); 137 matcher(g, string, nmatch, pmatch, eflags) 142 int eflags; 162 if (eflags®_STARTEND) { 184 m->eflags = eflags; 230 if (!g->backrefs && !(m->eflags®_BACKR)) [all...] |
| /src/external/bsd/tre/dist/python/ |
| tre-python.c | 331 int eflags = 0; local 343 &fz, &eflags)) 349 &fz, &eflags)) 378 rc = tre_regawnexec(&self->rgx, buf, len, &mo->am, fz->ap, eflags); 386 rc = tre_reganexec(&self->rgx, targ, tlen, &mo->am, fz->ap, eflags);
|
| /src/bin/sh/ |
| redir.c | 377 int eflags, cloexec; local 391 eflags = O_NONBLOCK; 393 eflags = 0; 394 if ((f = open(fname, O_RDONLY|eflags)) < 0) 397 fname, f, eflags)); 398 if (eflags) 400 (fcntl_int)(fcntl(f, F_GETFL) & ~eflags));
|
| /src/lib/libc/regex/ |
| engine.c | 92 int eflags; member in struct:match 113 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags); 150 #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); } 197 == size_t nmatch, regmatch_t pmatch[], int eflags); 204 int eflags) 231 if (eflags®_STARTEND) { 288 m->eflags = eflags; 347 if (!g->backrefs && !(m->eflags®_BACKR)) { 626 ((sp == m->beginp && !(m->eflags®_NOTBOL)) || [all...] |
| /src/sys/external/bsd/gnu-efi/dist/inc/ia64/ |
| salproc.h | 56 // eflags 57 UINT32 eflags; member in struct:tagIA32_BIOS_REGISTER_STATE
|
| /src/usr.bin/grep/ |
| grep.c | 81 int eflags = REG_STARTEND; variable
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| get_cred.c | 546 unsigned eflags = 0; local 563 eflags |= EXTRACT_TICKET_ALLOW_CNAME_MISMATCH; 565 eflags |= EXTRACT_TICKET_MATCH_ANON; 575 eflags,
|
| /src/external/bsd/pcc/dist/pcc/f77/f77/ |
| f77.c | 95 static char eflags[30] = ""; variable 98 static char *eflagp = eflags; 313 eflags, infname, fortfile);
|
| /src/external/gpl3/binutils/dist/bfd/hosts/ |
| x86-64linux.h | 65 int32_t eflags; member in struct:user_regs32_struct 90 a8_uint64_t eflags; member in struct:user_regs64_struct
|
| /src/external/gpl3/binutils.old/dist/bfd/hosts/ |
| x86-64linux.h | 65 int32_t eflags; member in struct:user_regs32_struct 90 a8_uint64_t eflags; member in struct:user_regs64_struct
|