/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
MethodUtil.java | 88 int regCount = 0; 92 regCount += 2; 94 regCount++; 98 regCount++; 100 return regCount;
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableInfo.java | 31 private final int regCount; 63 this.regCount = blocks.getRegCount(); 64 this.emptySet = new RegisterSpecSet(regCount); 169 result.mutableCopy() : new RegisterSpecSet(regCount);
|
BasicBlockList.java | 33 private int regCount; 44 regCount = -1; 54 regCount = old.regCount; 79 // Reset regCount, since it will need to be recalculated. 80 regCount = -1; 92 if (regCount == -1) { 95 regCount = visitor.getRegCount(); 98 return regCount; 317 private int regCount; [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableInfo.java | 30 private final int regCount; 62 this.regCount = blocks.getRegCount(); 63 this.emptySet = new RegisterSpecSet(regCount); 172 result.mutableCopy() : new RegisterSpecSet(regCount);
|
BasicBlockList.java | 33 private int regCount; 44 regCount = -1; 54 regCount = old.regCount; 79 // Reset regCount, since it will need to be recalculated. 80 regCount = -1; 92 if (regCount == -1) { 95 regCount = visitor.getRegCount(); 98 return regCount; 315 private int regCount; [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
LocalVariableInfo.java | 32 private final int regCount; 63 this.regCount = method.getRegCount(); 64 this.emptySet = new RegisterSpecSet(regCount); 169 result.mutableCopy() : new RegisterSpecSet(regCount);
|
PhiTypeResolver.java | 67 int regCount = ssaMeth.getRegCount(); 69 for (int reg = 0; reg < regCount; reg++) {
|
DeadCodeRemover.java | 36 private final int regCount; 65 regCount = ssaMethod.getRegCount(); 66 worklist = new BitSet(regCount); 190 set = new BitSet(regCount);
|
SsaConverter.java | 302 int regCount; 307 regCount = ssaMeth.getRegCount() - threshold; 313 BitSet[] defsites = new BitSet[regCount]; 316 BitSet[] phisites = new BitSet[regCount]; 318 for (int i = 0; i < regCount; i++) { 342 for (int i = 0; i < regCount; i++) { 356 for (int reg = 0, s = regCount; reg < s; reg++) { 395 for (int i = 0; i < regCount; i++) {
|
SCCP.java | 47 private final int regCount; 71 this.regCount = ssaMeth.getRegCount(); 72 this.latticeValues = new int[this.regCount]; 73 this.latticeConstants = new Constant[this.regCount]; 80 for (int i = 0; i < this.regCount; i++) { 602 for (int reg = 0; reg < regCount; reg++) {
|
EscapeAnalysis.java | 102 private final int regCount; 113 this.regCount = ssaMeth.getRegCount(); 231 escSet = new EscapeSet(result.getReg(), regCount, EscapeState.NONE); 237 escSet = new EscapeSet(result.getReg(), regCount, EscapeState.NONE); 262 escSet = new EscapeSet(result.getReg(), regCount, 271 escSet = new EscapeSet(result.getReg(), regCount, 276 escSet = new EscapeSet(result.getReg(), regCount, 282 escSet = new EscapeSet(result.getReg(), regCount, 301 escSet = new EscapeSet(result.getReg(), regCount, 304 escSet = new EscapeSet(result.getReg(), regCount, [all...] |
/external/libunwind_llvm/src/ |
CompactUnwinder.hpp | 125 uint32_t regCount = 137 switch (regCount) { 189 for (uint32_t i = 0; i < regCount; ++i) { 202 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount; 203 for (uint32_t i = 0; i < regCount; ++i) { 356 uint32_t regCount = 368 switch (regCount) { 420 for (uint32_t i = 0; i < regCount; ++i) { 433 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount; 434 for (uint32_t i = 0; i < regCount; ++i) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
DalvInsnList.java | 43 private final int regCount; 50 * @param regCount count, in register-units, of the number of registers 56 int regCount) { 58 DalvInsnList result = new DalvInsnList(size, regCount); 73 public DalvInsnList(int size, int regCount) { 75 this.regCount = regCount; 176 return regCount;
|
RopTranslator.java | 71 private final int regCount; 150 this.regCount = blocks.getRegCount() 153 this.output = new OutputCollector(maxInsns, bsz * 3, regCount); 593 RegisterSpec.make(regCount - paramSize + param,
|
/dalvik/dx/src/com/android/dx/dex/code/ |
DalvInsnList.java | 45 private final int regCount; 52 * @param regCount count, in register-units, of the number of registers 58 int regCount) { 60 DalvInsnList result = new DalvInsnList(size, regCount); 74 * @param regCount count, in register-units, of the number of registers 77 public DalvInsnList(int size, int regCount) { 79 this.regCount = regCount; 180 return regCount;
|
RopTranslator.java | 75 private final int regCount; 156 this.regCount = blocks.getRegCount() 159 this.output = new OutputCollector(dexOptions, maxInsns, bsz * 3, regCount, paramSize); 602 RegisterSpec.make(regCount - paramSize + param, [all...] |
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
PreInstructionRegisterInfoMethodItem.java | 115 int regCount = instruction.getRegisterCount(); 116 switch (regCount) {
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
SsaToRop.java | 222 int regCount = ssaMeth.getRegCount(); 224 for (int i = 0; i < regCount; i++) { 226 mapper.addMapping(i, regCount - paramWidth + i, 1); 234 paramWidth, regCount - paramWidth); 361 int regCount = ssaMeth.getRegCount(); 362 Integer[] ret = new Integer[regCount]; 364 for (int i = 0; i < regCount; i++) { 376 int result[] = new int[regCount]; 378 for (int i = 0; i < regCount; i++) {
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
InstructionMethodItem.java | 433 final int regCount = instruction.getRegisterCount(); 436 switch (regCount) { 479 int regCount = instruction.getRegisterCount(); 480 if (regCount == 0) { 484 methodDef.registerFormatter.writeRegisterRange(writer, startRegister, startRegister+regCount-1);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
Ropper.java | 423 int regCount = getNormalRegCount(); 424 return isSynchronized() ? regCount + 1 : regCount; [all...] |
/device/google/contexthub/firmware/os/drivers/bosch_bmi160/ |
bosch_bmi160.c | 885 uint8_t regCount = T(mRegCnt); 888 if (spiMasterRxTx(T(spiDev), T(cs), T(packets), regCount, mode, callback, cookie) < 0) { [all...] |
/device/google/contexthub/firmware/os/drivers/invensense_icm40600/ |
invensense_icm40600.c | 889 uint8_t regCount = T(mRegCnt); 892 if (spiMasterRxTx(T(spiDev), T(cs), T(packets), regCount, mode, callback, cookie) < 0) { [all...] |
/device/google/contexthub/firmware/os/drivers/st_lsm6dsm/ |
st_lsm6dsm.c | [all...] |
/external/smali/smali/src/main/java/org/jf/smali/ |
smaliParser.java | [all...] |
/external/dexmaker/lib/ |
dalvik-dx-9.0.0_r3.jar | |