Home
last modified time | relevance | path

Searched refs:iflags (Results 1 – 25 of 32) sorted by relevance

12

/external/valgrind/none/tests/amd64/
Dfb_test_amd64.h27 static inline void exec_opq(int64 s0, int64 s1, int64 iflags) in exec_opq() argument
31 flags = iflags; in exec_opq()
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK); in exec_opq()
36 static inline void exec_opl(int64 s0, int64 s1, int64 iflags) in exec_opl() argument
40 flags = iflags; in exec_opl()
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl()
45 static inline void exec_opw(int64 s0, int64 s1, int64 iflags) in exec_opw() argument
49 flags = iflags; in exec_opw()
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw()
54 static inline void exec_opb(int64 s0, int64 s1, int64 iflags) in exec_opb() argument
[all …]
Dfb_test_amd64_shift.h30 void exec_opq(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opq() argument
34 flags = iflags; in exec_opq()
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
43 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opl() argument
47 flags = iflags; in exec_opl()
53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
56 void exec_opw(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opw() argument
60 flags = iflags; in exec_opw()
66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
79 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) in exec_opl() argument
[all …]
/external/iproute2/ip/
Dlink_gre6.c72 __u16 iflags = 0; in gre_parse_opt() local
126 iflags = rta_getattr_u16(greinfo[IFLA_GRE_IFLAGS]); in gre_parse_opt()
158 iflags |= GRE_KEY; in gre_parse_opt()
176 iflags |= GRE_KEY; in gre_parse_opt()
203 iflags |= GRE_SEQ; in gre_parse_opt()
206 iflags |= GRE_SEQ; in gre_parse_opt()
210 iflags |= GRE_CSUM; in gre_parse_opt()
213 iflags |= GRE_CSUM; in gre_parse_opt()
284 addattr_l(n, 1024, IFLA_GRE_IFLAGS, &iflags, 2); in gre_parse_opt()
304 unsigned iflags = 0; in gre_print_opt() local
[all …]
Dlink_gre.c62 __u16 iflags = 0; in gre_parse_opt() local
120 iflags = rta_getattr_u16(greinfo[IFLA_GRE_IFLAGS]); in gre_parse_opt()
162 iflags |= GRE_KEY; in gre_parse_opt()
180 iflags |= GRE_KEY; in gre_parse_opt()
207 iflags |= GRE_SEQ; in gre_parse_opt()
210 iflags |= GRE_SEQ; in gre_parse_opt()
214 iflags |= GRE_CSUM; in gre_parse_opt()
217 iflags |= GRE_CSUM; in gre_parse_opt()
307 iflags |= GRE_KEY; in gre_parse_opt()
320 addattr_l(n, 1024, IFLA_GRE_IFLAGS, &iflags, 2); in gre_parse_opt()
[all …]
Dlink_iptnl.c72 __u16 iflags = 0; in iptunnel_parse_opt() local
136 iflags = rta_getattr_u16(iptuninfo[IFLA_IPTUN_FLAGS]); in iptunnel_parse_opt()
213 iflags |= SIT_ISATAP; in iptunnel_parse_opt()
307 addattr16(n, 1024, IFLA_IPTUN_FLAGS, iflags); in iptunnel_parse_opt()
383 __u16 iflags = rta_getattr_u16(tb[IFLA_IPTUN_FLAGS]); in iptunnel_print_opt() local
385 if (iflags & SIT_ISATAP) in iptunnel_print_opt()
/external/python/cpython2/Modules/
Dgdbmmodule.c461 int iflags; in dbmopen() local
468 iflags = GDBM_READER; in dbmopen()
471 iflags = GDBM_WRITER; in dbmopen()
474 iflags = GDBM_WRCREAT; in dbmopen()
477 iflags = GDBM_NEWDB; in dbmopen()
489 iflags |= GDBM_FAST; in dbmopen()
494 iflags |= GDBM_SYNC; in dbmopen()
499 iflags |= GDBM_NOLOCK; in dbmopen()
510 return newdbmobject(name, iflags, mode); in dbmopen()
Ddbmmodule.c371 int iflags; in dbmopen() local
377 iflags = O_RDONLY; in dbmopen()
379 iflags = O_RDWR; in dbmopen()
381 iflags = O_RDWR|O_CREAT; in dbmopen()
383 iflags = O_RDWR|O_CREAT; in dbmopen()
385 iflags = O_RDWR|O_CREAT|O_TRUNC; in dbmopen()
391 return newdbmobject(name, iflags, mode); in dbmopen()
/external/libnl/lib/route/link/
Dipgre.c50 uint16_t iflags; member
111 ipgre->iflags = nla_get_u16(tb[IFLA_GRE_IFLAGS]); in ipgre_parse()
174 NLA_PUT_U16(msg, IFLA_GRE_IFLAGS, ipgre->iflags); in ipgre_put_attrs()
236 nl_dump_line(p, "%x\n", ipgre->iflags); in ipgre_dump_details()
420 int rtnl_link_ipgre_set_iflags(struct rtnl_link *link, uint16_t iflags) in rtnl_link_ipgre_set_iflags() argument
426 ipgre->iflags = iflags; in rtnl_link_ipgre_set_iflags()
444 return ipgre->iflags; in rtnl_link_ipgre_get_iflags()
/external/python/cpython2/Parser/
Dparsetok.c40 int iflags = flags; in PyParser_ParseStringFlagsFilename() local
42 err_ret, &iflags); in PyParser_ParseStringFlagsFilename()
83 int iflags = flags; in PyParser_ParseFileFlags() local
84 return PyParser_ParseFileFlagsEx(fp, filename, g, start, ps1, ps2, err_ret, &iflags); in PyParser_ParseFileFlags()
/external/swiftshader/third_party/LLVM/lib/Support/
Dregexec.c153 assert(!(g->iflags&REGEX_BAD)); in llvm_regexec()
154 if (g->iflags&REGEX_BAD) /* backstop for no-debug case */ in llvm_regexec()
Dregcomp.c209 g->iflags = 0; in llvm_regcomp()
243 if (g->iflags&REGEX_BAD) in llvm_regcomp()
344 p->g->iflags |= USEBOL; in p_ere_exp()
350 p->g->iflags |= USEEOL; in p_ere_exp()
475 p->g->iflags |= USEBOL; in p_bre()
485 p->g->iflags |= USEEOL; in p_bre()
1458 g->iflags |= REGEX_BAD; in findmust()
1523 g->iflags |= REGEX_BAD; in pluscount()
Dregex2.h138 int iflags; /* internal flags */ member
/external/llvm/lib/Support/
Dregexec.c153 assert(!(g->iflags&REGEX_BAD)); in llvm_regexec()
154 if (g->iflags&REGEX_BAD) /* backstop for no-debug case */ in llvm_regexec()
Dregcomp.c217 g->iflags = 0; in llvm_regcomp()
251 if (g->iflags&REGEX_BAD) in llvm_regcomp()
353 p->g->iflags |= USEBOL; in p_ere_exp()
359 p->g->iflags |= USEEOL; in p_ere_exp()
511 p->g->iflags |= USEBOL; in p_bre()
521 p->g->iflags |= USEEOL; in p_bre()
1507 g->iflags |= REGEX_BAD; in findmust()
1572 g->iflags |= REGEX_BAD; in pluscount()
Dregex2.h141 int iflags; /* internal flags */ member
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregexec.c153 assert(!(g->iflags&REGEX_BAD)); in llvm_regexec()
154 if (g->iflags&REGEX_BAD) /* backstop for no-debug case */ in llvm_regexec()
Dregcomp.c217 g->iflags = 0; in llvm_regcomp()
251 if (g->iflags&REGEX_BAD) in llvm_regcomp()
353 p->g->iflags |= USEBOL; in p_ere_exp()
359 p->g->iflags |= USEEOL; in p_ere_exp()
511 p->g->iflags |= USEBOL; in p_bre()
521 p->g->iflags |= USEEOL; in p_bre()
1507 g->iflags |= REGEX_BAD; in findmust()
1572 g->iflags |= REGEX_BAD; in pluscount()
Dregex2.h141 int iflags; /* internal flags */ member
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/ARM/
Dinvalid-CPS3p-arm.txt3 # invalid (imod, M, iflags) combination
/external/libnl/include/netlink/route/link/
Dipgre.h28 extern int rtnl_link_ipgre_set_iflags(struct rtnl_link *link, uint16_t iflags);
/external/python/cpython2/Python/
Dpythonrun.c1468 int iflags = PARSER_FLAGS(flags); in PyParser_ASTFromString() local
1472 &iflags); in PyParser_ASTFromString()
1478 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromString()
1497 int iflags = PARSER_FLAGS(flags); in PyParser_ASTFromFile() local
1500 start, ps1, ps2, &err, &iflags); in PyParser_ASTFromFile()
1506 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromFile()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp1709 unsigned iflags = fieldFromInstruction32(Insn, 6, 3); in DecodeCPSInstruction() local
1724 Inst.addOperand(MCOperand::CreateImm(iflags)); in DecodeCPSInstruction()
1729 Inst.addOperand(MCOperand::CreateImm(iflags)); in DecodeCPSInstruction()
1734 if (iflags) S = MCDisassembler::SoftFail; in DecodeCPSInstruction()
1749 unsigned iflags = fieldFromInstruction32(Insn, 5, 3); in DecodeT2CPSInstruction() local
1764 Inst.addOperand(MCOperand::CreateImm(iflags)); in DecodeT2CPSInstruction()
1769 Inst.addOperand(MCOperand::CreateImm(iflags)); in DecodeT2CPSInstruction()
1774 if (iflags) S = MCDisassembler::SoftFail; in DecodeT2CPSInstruction()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMInstrThumb.td288 def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
289 NoItinerary, "cps$imod $iflags", []>,
293 bits<3> iflags;
297 let Inst{2-0} = iflags;
1432 // without any iflags. That's not, strictly speaking, valid syntax, but it's
/external/llvm/lib/Target/ARM/
DARMInstrThumb.td342 def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags),
343 NoItinerary, "cps$imod $iflags", []>,
347 bits<3> iflags;
351 let Inst{2-0} = iflags;
1549 // without any iflags. That's not, strictly speaking, valid syntax, but it's
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp1981 unsigned iflags = fieldFromInstruction(Insn, 6, 3); in DecodeCPSInstruction() local
2003 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeCPSInstruction()
2008 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeCPSInstruction()
2013 if (iflags) S = MCDisassembler::SoftFail; in DecodeCPSInstruction()
2028 unsigned iflags = fieldFromInstruction(Insn, 5, 3); in DecodeT2CPSInstruction() local
2043 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeT2CPSInstruction()
2048 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeT2CPSInstruction()
2053 if (iflags) S = MCDisassembler::SoftFail; in DecodeT2CPSInstruction()

12