Home
last modified time | relevance | path

Searched refs:widthm1 (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMCodeEmitter.cpp1052 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1; in emitDataProcessingInstruction() local
1055 Binary |= (widthm1 & 0x1F) << 16; in emitDataProcessingInstruction()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp4076 unsigned widthm1 = Inst.getOperand(3).getImm(); in validateInstruction() local
4077 if (widthm1 >= 32 - lsb) in validateInstruction()
/external/vixl/src/aarch32/
Dassembler-aarch32.cc9613 uint32_t widthm1 = width - 1; in sbfx() local
9615 ((lsb & 0x3) << 6) | ((lsb & 0x1c) << 10) | widthm1); in sbfx()
9624 uint32_t widthm1 = width - 1; in sbfx() local
9626 rn.GetCode() | (lsb << 7) | (widthm1 << 16)); in sbfx()
12987 uint32_t widthm1 = width - 1; in ubfx() local
12989 ((lsb & 0x3) << 6) | ((lsb & 0x1c) << 10) | widthm1); in ubfx()
12998 uint32_t widthm1 = width - 1; in ubfx() local
13000 rn.GetCode() | (lsb << 7) | (widthm1 << 16)); in ubfx()
Ddisasm-aarch32.cc9335 uint32_t widthm1 = instr & 0x1f; in DecodeT32() local
9336 uint32_t width = widthm1 + 1; in DecodeT32()
9454 uint32_t widthm1 = instr & 0x1f; in DecodeT32() local
9455 uint32_t width = widthm1 + 1; in DecodeT32()
64066 uint32_t widthm1 = (instr >> 16) & 0x1f; in DecodeA32() local
64067 uint32_t width = widthm1 + 1; in DecodeA32()
64503 uint32_t widthm1 = (instr >> 16) & 0x1f; in DecodeA32() local
64504 uint32_t width = widthm1 + 1; in DecodeA32()