/third_party/python/Modules/ |
D | _gdbmmodule.c | 627 int iflags; in dbmopen_impl() local 633 iflags = GDBM_READER; in dbmopen_impl() 636 iflags = GDBM_WRITER; in dbmopen_impl() 639 iflags = GDBM_WRCREAT; in dbmopen_impl() 642 iflags = GDBM_NEWDB; in dbmopen_impl() 654 iflags |= GDBM_FAST; in dbmopen_impl() 659 iflags |= GDBM_SYNC; in dbmopen_impl() 664 iflags |= GDBM_NOLOCK; in dbmopen_impl() 685 PyObject *self = newgdbmobject(state, name, iflags, mode); in dbmopen_impl()
|
D | _dbmmodule.c | 458 int iflags; in dbmopen_impl() local 462 iflags = O_RDONLY; in dbmopen_impl() 465 iflags = O_RDWR; in dbmopen_impl() 469 iflags = O_RDWR|O_CREAT; in dbmopen_impl() 472 iflags = O_RDWR|O_CREAT; in dbmopen_impl() 475 iflags = O_RDWR|O_CREAT|O_TRUNC; in dbmopen_impl() 493 PyObject *self = newdbmobject(state, name, iflags, mode); in dbmopen_impl()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_parser.y | 79 } iflags; variable 97 instr->flags = iflags.flags; in new_instr() 98 instr->repeat = iflags.repeat; in new_instr() 99 instr->nop = iflags.nop; in new_instr() 101 iflags.flags = iflags.repeat = iflags.nop = 0; in new_instr() 786 iflag: T_SY { iflags.flags |= IR3_INSTR_SY; } 787 | T_SS { iflags.flags |= IR3_INSTR_SS; } 788 | T_JP { iflags.flags |= IR3_INSTR_JP; } 789 | T_SAT { iflags.flags |= IR3_INSTR_SAT; } 790 | T_RPT { iflags.repeat = $1; } [all …]
|
/third_party/toybox/toys/pending/ |
D | stty.c | 92 static const struct flag iflags[] = { variable 232 !set_flag(&new->c_iflag, iflags, ARRAY_LEN(iflags), option, on) && in set_option() 443 show_flags(old.c_iflag, sane.c_iflag, iflags, ARRAY_LEN(iflags)); in do_stty()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regexec.c | 153 assert(!(g->iflags®EX_BAD)); in llvm_regexec() 154 if (g->iflags®EX_BAD) /* backstop for no-debug case */ in llvm_regexec()
|
D | regcomp.c | 217 g->iflags = 0; in llvm_regcomp() 251 if (g->iflags®EX_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()
|
D | regex2.h | 141 int iflags; /* internal flags */ member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | regexec.c | 153 assert(!(g->iflags®EX_BAD)); in llvm_regexec() 154 if (g->iflags®EX_BAD) /* backstop for no-debug case */ in llvm_regexec()
|
D | regcomp.c | 345 g->iflags = 0; in llvm_regcomp() 379 if (g->iflags®EX_BAD) in llvm_regcomp() 481 p->g->iflags |= USEBOL; in p_ere_exp() 487 p->g->iflags |= USEEOL; in p_ere_exp() 639 p->g->iflags |= USEBOL; in p_bre() 649 p->g->iflags |= USEEOL; in p_bre() 1635 g->iflags |= REGEX_BAD; in findmust() 1700 g->iflags |= REGEX_BAD; in pluscount()
|
D | regex2.h | 144 int iflags; /* internal flags */ member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMInstrThumb.td | 371 def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags), 372 NoItinerary, "cps$imod $iflags", []>, 376 bits<3> iflags; 380 let Inst{2-0} = iflags;
|
D | ARMInstrThumb2.td | 3920 bits<3> iflags; 3927 let Inst{7-5} = iflags; 3933 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 3934 "$imod\t$iflags, $mode">; 3936 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags), 3937 "$imod.w\t$iflags">; 3938 let imod = 0, iflags = 0, M = 1 in 3941 def : t2InstAlias<"cps$imod.w $iflags, $mode", 3942 (t2CPS3p imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 0>;
|
D | ARMInstrInfo.td | 2109 bits<3> iflags; 2118 let Inst{8-6} = iflags; 2125 def CPS3p : CPS<(ins imod_op:$imod, iflags_op:$iflags, imm0_31:$mode), 2126 "$imod\t$iflags, $mode">; 2128 def CPS2p : CPS<(ins imod_op:$imod, iflags_op:$iflags), "$imod\t$iflags">; 2130 let imod = 0, iflags = 0, M = 1 in
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 2333 unsigned iflags = fieldFromInstruction(Insn, 6, 3); in DecodeCPSInstruction() local 2355 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeCPSInstruction() 2360 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeCPSInstruction() 2365 if (iflags) S = MCDisassembler::SoftFail; in DecodeCPSInstruction() 2380 unsigned iflags = fieldFromInstruction(Insn, 5, 3); in DecodeT2CPSInstruction() local 2395 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeT2CPSInstruction() 2400 Inst.addOperand(MCOperand::createImm(iflags)); in DecodeT2CPSInstruction() 2405 if (iflags) S = MCDisassembler::SoftFail; in DecodeT2CPSInstruction()
|
/third_party/vixl/src/aarch32/ |
D | disasm-aarch32.h | 415 virtual DisassemblerStream& operator<<(InterruptFlags iflags) { 416 os_ << iflags;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/ARM/ |
D | ARMGenMCCodeEmitter.inc | 12495 // op: iflags 12507 // op: iflags 12520 // op: iflags 12537 // op: iflags 12550 // op: iflags
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 9862 long unsigned int iflags; member
|