HomeSort by relevance Sort by last modified time
    Searched full:eflags (Results 1 - 25 of 178) sorted by null

1 2 3 4 5 6 7 8

  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 61 " pushfl # Get original EFLAGS \n"
64 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
65 " pushl %%eax # Save new EFLAGS value on stack \n"
66 " popfl # Replace current EFLAGS value \n"
67 " pushfl # Get new EFLAGS \n"
68 " popl %%eax # Store new EFLAGS in EAX \n"
81 " pushfq # Get original EFLAGS \n"
84 " xorl $0x200000,%%eax # Flip ID bit in EFLAGS \n"
85 " pushq %%rax # Save new EFLAGS value on stack \n"
86 " popfq # Replace current EFLAGS value \n
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
ptrace.h 37 long eflags; member in struct:pt_regs
65 unsigned long eflags; member in struct:pt_regs
sigcontext.h 75 unsigned long eflags; member in struct:sigcontext
117 unsigned long eflags; member in struct:sigcontext
ptrace-abi.h 59 #define EFLAGS 144
user32.h 48 __u32 eflags, esp; member in struct:user_regs_struct32
user_32.h 50 long eflags, esp; member in struct:user_regs_struct
  /development/ndk/platforms/android-5/arch-x86/include/asm/
ptrace.h 37 long eflags; member in struct:pt_regs
65 unsigned long eflags; member in struct:pt_regs
sigcontext.h 75 unsigned long eflags; member in struct:sigcontext
117 unsigned long eflags; member in struct:sigcontext
ptrace-abi.h 59 #define EFLAGS 144
user32.h 48 __u32 eflags, esp; member in struct:user_regs_struct32
user_32.h 50 long eflags, esp; member in struct:user_regs_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ptrace.h 37 long eflags; member in struct:pt_regs
65 unsigned long eflags; member in struct:pt_regs
sigcontext.h 75 unsigned long eflags; member in struct:sigcontext
117 unsigned long eflags; member in struct:sigcontext
ptrace-abi.h 59 #define EFLAGS 144
user32.h 48 __u32 eflags, esp; member in struct:user_regs_struct32
user_32.h 50 long eflags, esp; member in struct:user_regs_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ptrace.h 37 long eflags; member in struct:pt_regs
65 unsigned long eflags; member in struct:pt_regs
sigcontext.h 75 unsigned long eflags; member in struct:sigcontext
117 unsigned long eflags; member in struct:sigcontext
ptrace-abi.h 59 #define EFLAGS 144
  /external/kernel-headers/original/asm-x86/
ptrace.h 28 long eflags; member in struct:pt_regs
54 return ((regs->xcs & SEGMENT_RPL_MASK) | (regs->eflags & VM_MASK)) >= USER_RPL;
58 return (regs->eflags & VM_MASK);
93 unsigned long eflags; member in struct:pt_regs
ptrace-abi.h 49 #define EFLAGS 144
  /bionic/libc/regex/
regexec.c 140 regmatch_t pmatch[], int eflags)
154 eflags = GOODFLAGS(eflags);
156 if (g->nstates <= (int)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
157 return(smatcher(g, (char *)string, nmatch, pmatch, eflags));
159 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
  /external/bluetooth/glib/gio/fam/
fam-helper.c 103 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code); local
108 if (eflags == -1)
118 g_file_monitor_emit_event (monitor, child, NULL, eflags);
127 GFileMonitorEvent eflags = fam_event_to_file_monitor_event (ev.code); local
130 if (eflags == -1)
134 g_file_monitor_emit_event (monitor, child, NULL, eflags);
  /external/bluetooth/glib/gio/inotify/
inotify-helper.c 147 GFileMonitorEvent eflags; local
151 eflags = ih_mask_to_EventFlags (event->mask);
162 child, NULL, eflags);
172 GFileMonitorEvent eflags; local
196 eflags = ih_mask_to_EventFlags (mask);
201 child, NULL, eflags);
  /external/zlib/contrib/masmx86/
gvmat32.asm 557 pushfd ; push original EFLAGS
558 pop eax ; get original EFLAGS
559 mov ecx, eax ; save original EFLAGS
560 xor eax, 40000h ; flip AC bit in EFLAGS
561 push eax ; save new EFLAGS value on stack
562 popfd ; replace current EFLAGS value
563 pushfd ; get new EFLAGS
564 pop eax ; store new EFLAGS in EAX
568 popfd ; restore AC bit in EFLAGS first
574 mov eax, ecx ; get original EFLAGS
    [all...]

Completed in 164 milliseconds

1 2 3 4 5 6 7 8