Home
last modified time | relevance | path

Searched refs:cmode (Results 1 – 18 of 18) sorted by relevance

/external/vixl/src/aarch32/
Doperands-aarch32.cc155 DataType ImmediateVbic::DecodeDt(uint32_t cmode) { in DecodeDt() argument
156 switch (cmode) { in DecodeDt()
173 NeonImmediate ImmediateVbic::DecodeImmediate(uint32_t cmode, in DecodeImmediate() argument
175 switch (cmode) { in DecodeImmediate()
294 DataType ImmediateVmov::DecodeDt(uint32_t cmode) { in DecodeDt() argument
295 switch (cmode & 0xf) { in DecodeDt()
307 return ((cmode & 0x10) == 0) ? I8 : I64; in DecodeDt()
309 if ((cmode & 0x10) == 0) return F32; in DecodeDt()
319 NeonImmediate ImmediateVmov::DecodeImmediate(uint32_t cmode, in DecodeImmediate() argument
321 switch (cmode & 0xf) { in DecodeImmediate()
[all …]
Ddisasm-aarch32.cc31352 unsigned cmode = (instr >> 8) & 0xf; in DecodeT32() local
31354 ImmediateVmvn::DecodeDt(cmode); in DecodeT32()
31363 cmode, in DecodeT32()
31384 unsigned cmode = in DecodeT32() local
31388 ImmediateVmov::DecodeDt(cmode); in DecodeT32()
31397 cmode, in DecodeT32()
31424 unsigned cmode = (instr >> 8) & 0xf; in DecodeT32() local
31426 ImmediateVorr::DecodeDt(cmode); in DecodeT32()
31435 cmode, in DecodeT32()
31454 unsigned cmode = (instr >> 8) & 0xf; in DecodeT32() local
[all …]
Doperands-aarch32.h567 static DataType DecodeDt(uint32_t cmode);
568 static NeonImmediate DecodeImmediate(uint32_t cmode, uint32_t immediate);
584 static DataType DecodeDt(uint32_t cmode);
585 static NeonImmediate DecodeImmediate(uint32_t cmode, uint32_t immediate);
591 static DataType DecodeDt(uint32_t cmode);
592 static NeonImmediate DecodeImmediate(uint32_t cmode, uint32_t immediate);
598 static DataType DecodeDt(uint32_t cmode);
599 static NeonImmediate DecodeImmediate(uint32_t cmode, uint32_t immediate);
/external/skia/src/c/
Dsk_effects.cpp53 sk_shader_tilemode_t cmode, in sk_shader_new_linear_gradient() argument
56 if (!from_c_tilemode(cmode, &mode)) { in sk_shader_new_linear_gradient()
80 sk_shader_tilemode_t cmode, in sk_shader_new_radial_gradient() argument
83 if (!from_c_tilemode(cmode, &mode)) { in sk_shader_new_radial_gradient()
124 sk_shader_tilemode_t cmode, in sk_shader_new_two_point_conical_gradient() argument
127 if (!from_c_tilemode(cmode, &mode)) { in sk_shader_new_two_point_conical_gradient()
/external/libvncserver/webclients/novnc/include/
Drfb.js1651 var cmode, clength, data;
1657 if (this._sock.rQwait("TIGHT palette " + cmode, this._FBU.bytes)) { return false; }
1671 if (this._sock.rQwait("TIGHT " + cmode, this._FBU.bytes)) { return false; }
1709 if (this._sock.rQwait("TIGHT " + cmode, this._FBU.bytes)) { return false; }
1741 if (ctl === 0x08) cmode = "fill";
1742 else if (ctl === 0x09) cmode = "jpeg";
1743 else if (ctl === 0x0A) cmode = "png";
1744 else if (ctl & 0x04) cmode = "filter";
1745 else if (ctl < 0x04) cmode = "copy";
1748 if (isTightPNG && (cmode === "filter" || cmode === "copy")) {
[all …]
/external/vixl/src/aarch64/
Ddisasm-aarch64.cc3112 int cmode = instr->GetNEONCmode(); in VisitNEONModifiedImmediate() local
3113 int cmode_3 = (cmode >> 3) & 1; in VisitNEONModifiedImmediate()
3114 int cmode_2 = (cmode >> 2) & 1; in VisitNEONModifiedImmediate()
3115 int cmode_1 = (cmode >> 1) & 1; in VisitNEONModifiedImmediate()
3116 int cmode_0 = cmode & 1; in VisitNEONModifiedImmediate()
4497 int cmode = instr->GetNEONCmode(); in SubstituteImmediateField() local
4498 int shift_amount = 8 * ((cmode >> 1) & 3); in SubstituteImmediateField()
4504 int cmode = instr->GetNEONCmode(); in SubstituteImmediateField() local
4505 int shift_amount = 8 << (cmode & 1); in SubstituteImmediateField()
Dsimulator-aarch64.cc4330 int cmode = instr->GetNEONCmode(); in VisitNEONModifiedImmediate() local
4331 int cmode_3_1 = (cmode >> 1) & 7; in VisitNEONModifiedImmediate()
4332 int cmode_3 = (cmode >> 3) & 1; in VisitNEONModifiedImmediate()
4333 int cmode_2 = (cmode >> 2) & 1; in VisitNEONModifiedImmediate()
4334 int cmode_1 = (cmode >> 1) & 1; in VisitNEONModifiedImmediate()
4335 int cmode_0 = cmode & 1; in VisitNEONModifiedImmediate()
4384 VIXL_ASSERT((q == 0) && (op_bit == 1) && (cmode == 0xf)); in VisitNEONModifiedImmediate()
Dassembler-aarch64.h3037 static Instr NEONCmode(int cmode) { in NEONCmode() argument
3038 VIXL_ASSERT(IsUint4(cmode)); in NEONCmode()
3039 return cmode << NEONCmode_offset; in NEONCmode()
Dassembler-aarch64.cc4129 int cmode = (cmode_3 << 3) | (cmode_2 << 2) | (cmode_1 << 1); in NEONModifiedImmShiftLsl() local
4133 Emit(q | op | ImmNEONabcdefgh(imm8) | NEONCmode(cmode) | Rd(vd)); in NEONModifiedImmShiftLsl()
4146 int cmode = 0xc | cmode_0; in NEONModifiedImmShiftMsl() local
4150 Emit(q | op | ImmNEONabcdefgh(imm8) | NEONCmode(cmode) | Rd(vd)); in NEONModifiedImmShiftMsl()
/external/llvm/test/MC/Disassembler/ARM/
Dinvalid-armv7.txt391 # VMOV cmode=0b1111 op=1 is UNDEFINED
396 # VMOV cmode=0b1111 op=1 is UNDEFINED
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64Disassembler.cpp1385 unsigned cmode = fieldFromInstruction(insn, 12, 4); in DecodeModImmInstruction() local
1407 Inst.addOperand(MCOperand::createImm((cmode & 6) << 2)); in DecodeModImmInstruction()
1413 Inst.addOperand(MCOperand::createImm(cmode & 1 ? 0x110 : 0x108)); in DecodeModImmInstruction()
1424 unsigned cmode = fieldFromInstruction(insn, 12, 4); in DecodeModImmTiedInstruction() local
1433 Inst.addOperand(MCOperand::createImm((cmode & 6) << 2)); in DecodeModImmTiedInstruction()
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp5134 unsigned cmode = fieldFromInstruction(Insn, 8, 4); in DecodeVCVTD() local
5141 if (cmode == 0xF) { in DecodeVCVTD()
5146 if (cmode == 0xE) { in DecodeVCVTD()
5153 if (cmode == 0xD) { in DecodeVCVTD()
5160 if (cmode == 0xC) { in DecodeVCVTD()
5193 unsigned cmode = fieldFromInstruction(Insn, 8, 4); in DecodeVCVTQ() local
5200 if (cmode == 0xF) { in DecodeVCVTQ()
5205 if (cmode == 0xE) { in DecodeVCVTQ()
5212 if (cmode == 0xD) { in DecodeVCVTQ()
5219 if (cmode == 0xC) { in DecodeVCVTQ()
/external/valgrind/VEX/priv/
Dhost_arm_defs.c4537 UInt cmode, op; in emit_ARMInstr() local
4551 cmode = tp << 1; in emit_ARMInstr()
4555 cmode = 14; in emit_ARMInstr()
4558 cmode = 12; in emit_ARMInstr()
4561 cmode = 13; in emit_ARMInstr()
4564 cmode = 15; in emit_ARMInstr()
4571 cmode, BITS4(0,Q,op,1), imm4); in emit_ARMInstr()
Dguest_arm_toIR.c7572 void ppNeonImm(UInt imm, UInt cmode, UInt op) in ppNeonImm() argument
7575 switch (cmode) { in ppNeonImm()
7610 const char *ppNeonImmType(UInt cmode, UInt op) in ppNeonImmType() argument
7612 switch (cmode) { in ppNeonImmType()
7634 void DIPimm(UInt imm, UInt cmode, UInt op, in DIPimm() argument
7639 ppNeonImmType(cmode, op), Q ? 'q' : 'd', dreg); in DIPimm()
7640 ppNeonImm(imm, cmode, op); in DIPimm()
7652 UInt cmode = (theInstr >> 8) & 0xf; in dis_neon_data_1reg_and_imm() local
7661 switch(cmode) { in dis_neon_data_1reg_and_imm()
7721 (((cmode & 9) == 0) || ((cmode & 13) == 8) || ((cmode & 12) == 12))) || in dis_neon_data_1reg_and_imm()
[all …]
Dguest_arm64_toIR.c7025 UInt op, UInt cmode, UInt imm8 ) in AdvSIMDExpandImm() argument
7028 vassert(cmode <= 15); in AdvSIMDExpandImm()
7036 switch (cmode >> 1) { in AdvSIMDExpandImm()
7051 if ((cmode & 1) == 0) in AdvSIMDExpandImm()
7058 if ((cmode & 1) == 0 && op == 0) in AdvSIMDExpandImm()
7060 if ((cmode & 1) == 0 && op == 1) { in AdvSIMDExpandImm()
7070 if ((cmode & 1) == 1 && op == 0) { in AdvSIMDExpandImm()
7080 if ((cmode & 1) == 1 && op == 1) { in AdvSIMDExpandImm()
8872 UInt cmode = INSN(15,12); in dis_AdvSIMD_modified_immediate() local
8877 UInt op_cmode = (bitOP << 4) | cmode; in dis_AdvSIMD_modified_immediate()
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td6695 class SIMDModifiedImmMoveMSL<bit Q, bit op, bits<4> cmode,
6702 let Inst{15-13} = cmode{3-1};
6706 class SIMDModifiedImmVectorNoShift<bit Q, bit op, bit op2, bits<4> cmode,
6712 let Inst{15-12} = cmode;
6715 class SIMDModifiedImmScalarNoShift<bit Q, bit op, bits<4> cmode, string asm,
6719 let Inst{15-12} = cmode;
/external/sqlite/dist/orig/
Dsqlite3.c36830 mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP |
36834 osFchmod(conchFile->h, cmode);
36837 rc = osFchmod(conchFile->h, cmode);
36842 cmode, code, strerror(code));
36844 fprintf(stderr, "fchmod %o SUCCEDED\n",cmode);
/external/sqlite/dist/
Dsqlite3.c36830 mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP |
36834 osFchmod(conchFile->h, cmode);
36837 rc = osFchmod(conchFile->h, cmode);
36842 cmode, code, strerror(code));
36844 fprintf(stderr, "fchmod %o SUCCEDED\n",cmode);