Searched refs:cmode (Results 1 – 6 of 6) sorted by relevance
/external/qemu/ |
D | arm-dis.c | 2445 int cmode = (given >> 8) & 0xf; in print_insn_neon() local 2456 if (cmode < 8) in print_insn_neon() 2458 shift = (cmode >> 1) & 3; in print_insn_neon() 2462 else if (cmode < 12) in print_insn_neon() 2464 shift = (cmode >> 1) & 1; in print_insn_neon() 2468 else if (cmode < 14) in print_insn_neon() 2470 shift = (cmode & 1) + 1; in print_insn_neon() 2475 else if (cmode == 14) in print_insn_neon() 2517 bits, cmode, op); in print_insn_neon()
|
/external/valgrind/main/VEX/priv/ |
D | guest_arm_toIR.c | 7564 void ppNeonImm(UInt imm, UInt cmode, UInt op) in ppNeonImm() argument 7567 switch (cmode) { in ppNeonImm() 7602 const char *ppNeonImmType(UInt cmode, UInt op) in ppNeonImmType() argument 7604 switch (cmode) { in ppNeonImmType() 7626 void DIPimm(UInt imm, UInt cmode, UInt op, in DIPimm() argument 7631 ppNeonImmType(cmode, op), Q ? 'q' : 'd', dreg); in DIPimm() 7632 ppNeonImm(imm, cmode, op); in DIPimm() 7644 UInt cmode = (theInstr >> 8) & 0xf; in dis_neon_data_1reg_and_imm() local 7653 switch(cmode) { in dis_neon_data_1reg_and_imm() 7713 (((cmode & 9) == 0) || ((cmode & 13) == 8) || ((cmode & 12) == 12))) || in dis_neon_data_1reg_and_imm() [all …]
|
D | host_arm_defs.c | 4036 UInt cmode, op; in emit_ARMInstr() local 4050 cmode = tp << 1; in emit_ARMInstr() 4054 cmode = 14; in emit_ARMInstr() 4057 cmode = 12; in emit_ARMInstr() 4060 cmode = 13; in emit_ARMInstr() 4063 cmode = 15; in emit_ARMInstr() 4070 cmode, BITS4(0,Q,op,1), imm4); in emit_ARMInstr()
|
/external/llvm/lib/Target/ARM/Disassembler/ |
D | ARMDisassembler.cpp | 4442 unsigned cmode = fieldFromInstruction(Insn, 8, 4); in DecodeVCVTD() local 4447 if (!(imm & 0x38) && cmode == 0xF) { in DecodeVCVTD() 4470 unsigned cmode = fieldFromInstruction(Insn, 8, 4); in DecodeVCVTQ() local 4475 if (!(imm & 0x38) && cmode == 0xF) { in DecodeVCVTQ()
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 31280 mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP | 31284 osFchmod(conchFile->h, cmode); 31287 rc = osFchmod(conchFile->h, cmode); 31292 cmode, code, strerror(code)); 31294 fprintf(stderr, "fchmod %o SUCCEDED\n",cmode);
|
/external/sqlite/dist/ |
D | sqlite3.c | 31293 mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP | 31297 osFchmod(conchFile->h, cmode); 31300 rc = osFchmod(conchFile->h, cmode); 31305 cmode, code, strerror(code)); 31307 fprintf(stderr, "fchmod %o SUCCEDED\n",cmode);
|