HomeSort by relevance Sort by last modified time
    Searched defs:isAliveAfter (Results 1 - 3 of 3) sorted by null

  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 54 private long[] isAliveAfter = new long[ClassConstants.TYPICAL_CODE_LENGTH];
116 public boolean isAliveAfter(int instructionOffset, int variableIndex)
119 (isAliveAfter[instructionOffset] & (1L << variableIndex)) != 0;
133 isAliveAfter[instructionOffset] |= 1L << variableIndex;
137 isAliveAfter[instructionOffset] &= ~(1L << variableIndex);
226 alive |= isAliveAfter[offset];
229 isAliveAfter[offset] = alive;
277 if (isAliveAfter(offset, variableIndex))
302 long aliveAfter = isAliveAfter[offset];
357 isAliveAfter[offset] |= livenessMask
    [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 20 milliseconds