Searched defs:regSize (Results 1 - 5 of 5) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DDebugInfoDecoder.java73 private final int regSize; field in class:DebugInfoDecoder
89 * @param regSize register size, in register units, of the register space
95 DebugInfoDecoder(byte[] encoded, int codesize, int regSize, argument
105 this.regSize = regSize;
110 lastEntryForReg = new LocalEntry[regSize];
230 * {@code regSize}
235 return regSize
H A DDebugInfoEncoder.java67 private final int regSize; field in class:DebugInfoEncoder
104 * @param regSize
109 DexFile file, int codeSize, int regSize,
117 this.regSize = regSize;
120 lastEntryForReg = new LocalList.Entry[regSize];
510 * {@code regSize}
515 return regSize
531 BitSet seen = new BitSet(regSize - argBase);
108 DebugInfoEncoder(PositionList positions, LocalList locals, DexFile file, int codeSize, int regSize, boolean isStatic, CstMethodRef ref) argument
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h213 static inline bool processLogicalImmediate(uint64_t imm, unsigned regSize, argument
216 (regSize != 64 && (imm >> regSize != 0 || imm == ~0U)))
223 while (size < regSize) {
224 unsigned numElts = regSize / size;
278 static inline bool isLogicalImmediate(uint64_t imm, unsigned regSize) { argument
280 return processLogicalImmediate(imm, regSize, encoding);
285 static inline uint64_t encodeLogicalImmediate(uint64_t imm, unsigned regSize) { argument
287 bool res = processLogicalImmediate(imm, regSize, encoding);
295 /// integer value it represents with regSize bit
296 decodeLogicalImmediate(uint64_t val, unsigned regSize) argument
324 isValidDecodeLogicalImmediate(uint64_t val, unsigned regSize) argument
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h380 /// regSize - Size (in number of bits) of integer registers.
381 unsigned regSize() const { return IsO32 ? 4 : 8; } function in class:llvm::MipsTargetLowering::MipsCC
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp633 LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize) argument
634 : RegSize(regSize), ImmLSB(immLSB), ImmSize(immSize) {}

Completed in 882 milliseconds