Searched refs:imod (Results 1 – 8 of 8) sorted by relevance
/external/openssl/crypto/conf/ |
D | conf_mod.c | 111 static void module_finish(CONF_IMODULE *imod); 352 CONF_IMODULE *imod = NULL; in module_init() local 355 imod = OPENSSL_malloc(sizeof(CONF_IMODULE)); in module_init() 356 if (!imod) in module_init() 359 imod->pmod = pmod; in module_init() 360 imod->name = BUF_strdup(name); in module_init() 361 imod->value = BUF_strdup(value); in module_init() 362 imod->usr_data = NULL; in module_init() 364 if (!imod->name || !imod->value) in module_init() 370 ret = pmod->init(imod, cnf); in module_init() [all …]
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | invalid-CPS2p-arm.txt | 3 # invalid imod value (0b01)
|
D | invalid-CPS3p-arm.txt | 3 # invalid (imod, M, iflags) combination
|
/external/llvm/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 1889 unsigned imod = fieldFromInstruction(Insn, 18, 2); in DecodeCPSInstruction() local 1901 if (imod == 1) return MCDisassembler::Fail; in DecodeCPSInstruction() 1903 if (imod && M) { in DecodeCPSInstruction() 1905 Inst.addOperand(MCOperand::CreateImm(imod)); in DecodeCPSInstruction() 1908 } else if (imod && !M) { in DecodeCPSInstruction() 1910 Inst.addOperand(MCOperand::CreateImm(imod)); in DecodeCPSInstruction() 1913 } else if (!imod && M) { in DecodeCPSInstruction() 1929 unsigned imod = fieldFromInstruction(Insn, 9, 2); in DecodeT2CPSInstruction() local 1941 if (imod == 1) return MCDisassembler::Fail; in DecodeT2CPSInstruction() 1943 if (imod && M) { in DecodeT2CPSInstruction() [all …]
|
/external/llvm/lib/Target/ARM/ |
D | ARMInstrThumb.td | 295 def tCPS : T1I<(outs), (ins imod_op:$imod, iflags_op:$iflags), 296 NoItinerary, "cps$imod $iflags", []>, 299 bit imod; 302 let Inst{4} = imod; 1406 def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>; 1407 def : tInstAlias<"cps$imod", (tCPS imod_op:$imod, 0)>;
|
D | ARMInstrThumb2.td | 3408 bits<2> imod; 3419 let Inst{10-9} = imod; 3427 def t2CPS3p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags, i32imm:$mode), 3428 "$imod.w\t$iflags, $mode">; 3430 def t2CPS2p : t2CPS<(ins imod_op:$imod, iflags_op:$iflags), 3431 "$imod.w\t$iflags">; 3432 let imod = 0, iflags = 0, M = 1 in
|
D | ARMInstrInfo.td | 1655 bits<2> imod; 1662 let Inst{19-18} = imod; 1672 def CPS3p : CPS<(ins imod_op:$imod, iflags_op:$iflags, imm0_31:$mode), 1673 "$imod\t$iflags, $mode">; 1675 def CPS2p : CPS<(ins imod_op:$imod, iflags_op:$iflags), "$imod\t$iflags">; 1677 let imod = 0, iflags = 0, M = 1 in
|
D | ARMInstrFormats.td | 134 // ARM imod and iflag operands, used only by the CPS instruction.
|