Searched defs:regSize (Results 1 - 4 of 4) 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.h274 static inline bool isLogicalImmediate(uint64_t imm, unsigned regSize) { argument
276 return processLogicalImmediate(imm, regSize, encoding);
281 static inline uint64_t encodeLogicalImmediate(uint64_t imm, unsigned regSize) { argument
283 bool res = processLogicalImmediate(imm, regSize, encoding);
291 /// integer value it represents with regSize bits.
292 static inline uint64_t decodeLogicalImmediate(uint64_t val, unsigned regSize) { argument
298 assert((regSize == 64 || N == 0) && "undefined logical immediate encoding");
309 // Replicate the pattern to fill the regSize.
310 while (size != regSize) {
319 /// is a valid encoding for an integer value with regSize bit
320 isValidDecodeLogicalImmediate(uint64_t val, unsigned regSize) argument
[all...]
/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 115 milliseconds