Searched refs:iflags (Results 1 - 11 of 11) sorted by relevance

/external/valgrind/main/VEX/test/
H A Dtest-i386.h28 inline void exec_opl(int s0, int s1, int iflags) argument
32 flags = iflags;
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
39 res, iflags, flags & CC_MASK);
42 inline void exec_opw(int s0, int s1, int iflags) argument
46 flags = iflags;
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
53 res, iflags, flags & CC_MASK);
56 inline void exec_opb(int s0, int s1, int iflags) argument
60 flags = iflags;
71 exec_opl(int s0, int s1, int iflags) argument
85 exec_opw(int s0, int s1, int iflags) argument
99 exec_opb(int s0, int s1, int iflags) argument
[all...]
H A Dtest-i386-shift.h29 void exec_opl(int s2, int s0, int s1, int iflags) argument
33 flags = iflags;
39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
42 void exec_opw(int s2, int s0, int s1, int iflags) argument
46 flags = iflags;
52 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
65 void exec_opl(int s2, int s0, int s1, int iflags) argument
69 flags = iflags;
75 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK);
78 void exec_opw(int s2, int s0, int s1, int iflags) argument
94 exec_opb(int s0, int s1, int iflags) argument
[all...]
H A Dtest-amd64.h27 inline void exec_opq(int64 s0, int64 s1, int64 iflags) argument
31 flags = iflags;
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK);
36 inline void exec_opl(int64 s0, int64 s1, int64 iflags) argument
40 flags = iflags;
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
45 inline void exec_opw(int64 s0, int64 s1, int64 iflags) argument
49 flags = iflags;
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
54 inline void exec_opb(int64 s0, int64 s1, int64 iflags) argument
64 exec_opq(int64 s0, int64 s1, int64 iflags) argument
74 exec_opl(int64 s0, int64 s1, int64 iflags) argument
84 exec_opw(int64 s0, int64 s1, int64 iflags) argument
94 exec_opb(int64 s0, int64 s1, int64 iflags) argument
[all...]
H A Dtest-amd64-shift.h30 void exec_opq(int64 s2, int64 s0, int64 s1, int64 iflags) argument
34 flags = iflags;
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
43 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) argument
47 flags = iflags;
53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
56 void exec_opw(int64 s2, int64 s0, int64 s1, int64 iflags) argument
60 flags = iflags;
66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
79 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) argument
92 exec_opw(int64 s2, int64 s0, int64 s1, int64 iflags) argument
108 exec_opb(int64 s0, int64 s1, int64 iflags) argument
[all...]
/external/iproute2/ip/
H A Dlink_gre.c54 __u16 iflags = 0; local
107 iflags = rta_getattr_u16(greinfo[IFLA_GRE_IFLAGS]);
137 iflags |= GRE_KEY;
155 iflags |= GRE_KEY;
182 iflags |= GRE_SEQ;
185 iflags |= GRE_SEQ;
189 iflags |= GRE_CSUM;
192 iflags |= GRE_CSUM;
243 iflags |= GRE_KEY;
256 addattr_l(n, 1024, IFLA_GRE_IFLAGS, &iflags,
275 unsigned iflags = 0; local
[all...]
/external/chromium_org/v8/src/ic/
H A Dstub-cache.h120 uint32_t iflags = local
123 uint32_t key = (map_low32bits + field) ^ iflags;
136 uint32_t iflags = local
138 uint32_t key = (seed - name_low32bits) + iflags;
/external/llvm/lib/Support/
H A Dregexec.c153 assert(!(g->iflags&REGEX_BAD));
154 if (g->iflags&REGEX_BAD) /* backstop for no-debug case */
H A Dregex2.h141 int iflags; /* internal flags */ member in struct:re_guts
H A Dregcomp.c209 g->iflags = 0;
243 if (g->iflags&REGEX_BAD)
345 p->g->iflags |= USEBOL;
351 p->g->iflags |= USEEOL;
503 p->g->iflags |= USEBOL;
513 p->g->iflags |= USEEOL;
1486 g->iflags |= REGEX_BAD;
1551 g->iflags |= REGEX_BAD;
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp1956 unsigned iflags = fieldFromInstruction(Insn, 6, 3); local
1978 Inst.addOperand(MCOperand::CreateImm(iflags));
1983 Inst.addOperand(MCOperand::CreateImm(iflags));
1988 if (iflags) S = MCDisassembler::SoftFail;
2003 unsigned iflags = fieldFromInstruction(Insn, 5, 3); local
2018 Inst.addOperand(MCOperand::CreateImm(iflags));
2023 Inst.addOperand(MCOperand::CreateImm(iflags));
2028 if (iflags) S = MCDisassembler::SoftFail;
/external/qemu/
H A Dcpu-exec.c427 && !(env->iflags & (D_FLAG | IMM_FLAG))) {

Completed in 183 milliseconds