HomeSort by relevance Sort by last modified time
    Searched refs:CC_C (Results 1 - 25 of 45) sorted by null

1 2

  /external/qemu/target-i386/
shift_helper_template.h 72 res = (t0 << count) | ((target_ulong)(eflags & CC_C) << (count - 1));
76 env->cc_src = (eflags & ~(CC_C | CC_O)) |
78 ((src >> (DATA_BITS - count)) & CC_C);
100 res = (t0 >> count) | ((target_ulong)(eflags & CC_C) << (DATA_BITS - count));
104 env->cc_src = (eflags & ~(CC_C | CC_O)) |
106 ((src >> (count - 1)) & CC_C);
int_helper.c 188 eflags |= CC_C | CC_A;
190 eflags &= ~(CC_C | CC_A);
212 eflags |= CC_C | CC_A;
214 eflags &= ~(CC_C | CC_A);
227 cf = eflags & CC_C;
238 eflags |= CC_C;
254 cf = eflags & CC_C;
263 eflags |= CC_C;
268 eflags |= CC_C;
smm_helper.c 159 cpu_load_eflags(env, 0, ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
223 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
239 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
cc_helper_template.h 210 cf = (CC_SRC >> (DATA_BITS - 1)) & CC_C;
222 return (CC_SRC >> (DATA_BITS - 1)) & CC_C;
cc_helper.c 84 return CC_SRC & CC_C;
fpu_helper.c 379 static const int fcomi_ccval[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C};
388 eflags = (eflags & ~(CC_Z | CC_P | CC_C)) | fcomi_ccval[ret + 1];
399 eflags = (eflags & ~(CC_Z | CC_P | CC_C)) | fcomi_ccval[ret + 1];
cpu.h 104 #define CC_C 0x0001
    [all...]
svm_helper.c 197 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
561 ~(CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C | DF_MASK));
  /external/valgrind/main/VEX/test/
test-amd64.c 56 #define CC_C 0x0001
67 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
116 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O)
155 #define CC_MASK (CC_C)
357 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
359 #define CC_MASK (CC_O | CC_C)
610 printf("fcomi(%f %f)=%016llx\n", a, b, rflags & (CC_Z | CC_P | CC_C));
757 rflags |= CC_C;
814 TEST_BCD(daa, 0x12340503, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A));
815 TEST_BCD(daa, 0x12340506, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A))
    [all...]
test-i386.c 46 #define CC_C 0x0001
57 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
106 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O)
144 #define CC_MASK (CC_C)
345 #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)
347 #define CC_MASK (CC_O | CC_C)
572 printf("fcomi(%f %f)=%08x\n", a, b, eflags & (CC_Z | CC_P | CC_C));
719 eflags |= CC_C;
776 TEST_BCD(daa, 0x12340503, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A));
777 TEST_BCD(daa, 0x12340506, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_A))
    [all...]
test-i386.h 129 | (c ? CC_C : 0)
139 exec_opl(s0, s1, CC_C);
140 exec_opw(s0, s1, CC_C);
141 exec_opb(s0, s1, CC_C);
test-amd64.h 120 | (c ? CC_C : 0)
132 exec_opq(s0, s1, CC_C);
133 exec_opl(s0, s1, CC_C);
134 exec_opw(s0, s1, CC_C);
135 exec_opb(s0, s1, CC_C);
test-i386-shift.h 122 | (c ? CC_C : 0)
test-amd64-shift.h 136 | (c ? CC_C : 0)
  /external/clang/include/clang/Basic/
Specifiers.h 202 CC_C, // __attribute__((cdecl))
TargetInfo.h 768 return CC_C;
784 case CC_C:
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 71 return CC_C;
MicrosoftCXXABI.cpp 55 return CC_C;
  /external/valgrind/main/memcheck/tests/amd64/
more_x87_fp.c 62 #define CC_C 0x0001
90 printf("fcomi(%f %f)=%08llx\n", a, b, eflags & (CC_Z | CC_P | CC_C));
237 eflags |= CC_C;
  /external/valgrind/main/memcheck/tests/x86/
more_x86_fp.c 52 #define CC_C 0x0001
80 printf("fcomi(%f %f)=%08x\n", a, b, eflags & (CC_Z | CC_P | CC_C));
227 eflags |= CC_C;
  /external/valgrind/main/none/tests/amd64/
amd64locked.c 210 #define CC_C 0x0001
217 #define CC_MASK (CC_C | CC_P | CC_A | CC_Z | CC_S | CC_O)
241 | (c ? CC_C : 0) \
335 | (c ? CC_C : 0) \
451 | (c ? CC_C : 0) \
  /external/valgrind/main/none/tests/x86/
x86locked.c 195 #define CC_C 0x0001
202 #define CC_MASK (CC_C | CC_P | CC_A | CC_Z | CC_S | CC_O)
226 | (c ? CC_C : 0) \
313 | (c ? CC_C : 0) \
415 | (c ? CC_C : 0) \
  /external/qemu/
cpu-exec.c 261 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
264 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
551 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 93 i[6]->setPredicate(CC_C, c[0]);
639 const CondCode cc[4] = { CC_EQU, CC_S, CC_C, CC_O };
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 93 i[6]->setPredicate(CC_C, c[0]);
639 const CondCode cc[4] = { CC_EQU, CC_S, CC_C, CC_O };

Completed in 370 milliseconds

1 2