/external/aac/libAACenc/src/ |
D | bit_cnt.cpp | 549 INT codeLength; in FDKaacEnc_countValues() local 563 codeLength = HI_LTAB(FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]); in FDKaacEnc_countValues() 564 bitCnt+= codeLength; in FDKaacEnc_countValues() 574 codeLength = LO_LTAB(FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]); in FDKaacEnc_countValues() 575 bitCnt+= codeLength; in FDKaacEnc_countValues() 603 codeLength = HI_LTAB(FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3]); in FDKaacEnc_countValues() 604 bitCnt+=codeLength+signLength; in FDKaacEnc_countValues() 631 codeLength = LO_LTAB(FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3]); in FDKaacEnc_countValues() 632 bitCnt+=codeLength+signLength; in FDKaacEnc_countValues() 640 codeLength = HI_LTAB(FDKaacEnc_huff_ltab5_6[t0+4][t1+4]); in FDKaacEnc_countValues() [all …]
|
/external/proguard/src/proguard/classfile/editor/ |
D | CodeAttributeEditor.java | 58 private int codeLength; field in CodeAttributeEditor 94 public void reset(int codeLength) in reset() argument 96 this.codeLength = codeLength; in reset() 99 if (preInsertions.length < codeLength) in reset() 101 preInsertions = new Instruction[codeLength]; in reset() 102 replacements = new Instruction[codeLength]; in reset() 103 postInsertions = new Instruction[codeLength]; in reset() 104 deleted = new boolean[codeLength]; in reset() 108 for (int index = 0; index < codeLength; index++) in reset() 132 instructionOffset >= codeLength) in insertBeforeInstruction() [all …]
|
D | CodeAttributeComposer.java | 63 private int codeLength; field in CodeAttributeComposer 109 codeLength = 0; in reset() 155 codeFragmentOffsets[level] = codeLength; in beginCodeFragment() 172 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset)); in appendInstruction() 176 int newCodeLength = codeLength + instruction.length(codeLength); in appendInstruction() 181 oldInstructionOffsets[codeLength] = oldInstructionOffset; in appendInstruction() 189 instruction.write(code, codeLength); in appendInstruction() 192 instructionOffsetMap[level][oldInstructionOffset] = codeLength; in appendInstruction() 195 codeLength = newCodeLength; in appendInstruction() 209 println("["+codeLength+"] <- ", "[" + oldInstructionOffset + "] (label)"); in appendLabel() [all …]
|
D | InstructionWriter.java | 43 private int codeLength; field in InstructionWriter 52 public void reset(int codeLength) in reset() argument 54 this.codeLength = codeLength; in reset() 59 codeAttributeEditor.reset(codeLength); in reset() 275 codeAttributeEditor.reset(codeLength); in ensureCodeAttributeEditor()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | VariableOptimizer.java | 113 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute() local 130 if (areNonOverlapping(oldIndex, newIndex, codeLength)) in visitCodeAttribute() 134 updateLiveness(oldIndex, newIndex, codeLength); in visitCodeAttribute() 181 int codeLength = codeAttribute.u4codeLength; in initializeArrays() local 184 if (variableMap.length < codeLength) in initializeArrays() 186 variableMap = new int[codeLength]; in initializeArrays() 196 int codeLength) in areNonOverlapping() argument 199 for (int offset = 0; offset < codeLength; offset++) in areNonOverlapping() 224 int codeLength) in updateLiveness() argument 227 for (int offset = 0; offset < codeLength; offset++) in updateLiveness()
|
D | LivenessAnalyzer.java | 197 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute() local 213 for (int offset = codeLength - 1; offset >= 0; offset--) in visitCodeAttribute() 254 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute() 297 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute() 411 int codeLength = codeAttribute.u4codeLength; 414 if (isAliveBefore.length < codeLength) 416 isAliveBefore = new long[codeLength]; 417 isAliveAfter = new long[codeLength]; 418 isCategory2 = new long[codeLength]; 422 for (int index = 0; index < codeLength; index++)
|
D | EvaluationShrinker.java | 157 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute0() local 160 codeAttributeEditor.reset(codeLength); in visitCodeAttribute0() 165 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0() 192 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0() 273 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0() 299 maxMarkedOffset = codeLength - 1; in visitCodeAttribute0() 336 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0() 358 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0() 401 while (offset < codeLength); in visitCodeAttribute0() 456 while (offset < codeLength); in visitCodeAttribute0() [all …]
|
D | PartialEvaluator.java | 1103 int codeLength = codeAttribute.u4codeLength; 1106 if (variablesAfter.length < codeLength) 1109 branchOriginValues = new InstructionOffsetValue[codeLength]; 1110 branchTargetValues = new InstructionOffsetValue[codeLength]; 1111 variablesBefore = new TracedVariables[codeLength]; 1112 stacksBefore = new TracedStack[codeLength]; 1113 variablesAfter = new TracedVariables[codeLength]; 1114 stacksAfter = new TracedStack[codeLength]; 1115 generalizedContexts = new boolean[codeLength]; 1116 evaluationCounts = new int[codeLength]; [all …]
|
D | EvaluationSimplifier.java | 135 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute0() local 138 codeAttributeEditor.reset(codeLength); in visitCodeAttribute0() 141 for (int offset = 0; offset < codeLength; offset++) in visitCodeAttribute0()
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeAnalyzer.java | 74 int codeLength = stack.length; in visitBytecode() local 87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth)) in visitBytecode() 99 int codeLength, int[] stack, int stackDepth, int[] jsrDepth) in processBranch() argument 105 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 112 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 116 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 125 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 158 checkTarget(index, target, codeLength, stack, stackDepth); in processBranch() 164 checkTarget(index, target, codeLength, in processBranch() 176 checkTarget(index, target, codeLength, in processBranch() [all …]
|
D | CodeIterator.java | 687 int codeLength = code.length; in appendGap() local 688 byte[] newcode = new byte[codeLength + gapLength]; in appendGap() 691 for (i = 0; i < codeLength; ++i) in appendGap() 694 for (i = codeLength; i < codeLength + gapLength; ++i) in appendGap() 822 int codeLength = code.length; in insertGapCore1() local 823 byte[] newcode = new byte[codeLength + gapLength]; in insertGapCore1() 824 insertGap2(code, where, gapLength, codeLength, newcode, exclusive); in insertGapCore1()
|
D | LocalVariableAttribute.java | 173 public int codeLength(int i) { in codeLength() method in LocalVariableAttribute
|
/external/proguard/src/proguard/optimize/peephole/ |
D | BranchTargetFinder.java | 304 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute() local 305 if (subroutineStarts.length < codeLength) in visitCodeAttribute() 308 instructionMarks = new short[codeLength + 1]; in visitCodeAttribute() 309 subroutineStarts = new int[codeLength]; in visitCodeAttribute() 310 subroutineEnds = new int[codeLength]; in visitCodeAttribute() 311 creationOffsets = new int[codeLength]; in visitCodeAttribute() 312 initializationOffsets = new int[codeLength]; in visitCodeAttribute() 315 for (int index = 0; index < codeLength; index++) in visitCodeAttribute() 326 for (int index = 0; index < codeLength; index++) in visitCodeAttribute() 335 instructionMarks[codeLength] = 0; in visitCodeAttribute() [all …]
|
D | ReachableCodeMarker.java | 85 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute() local 86 if (isReachable.length < codeLength) in visitCodeAttribute() 89 isReachable = new boolean[codeLength]; in visitCodeAttribute() 94 for (int index = 0; index < codeLength; index++) in visitCodeAttribute()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | Base64.java | 104 int codeLength = ((src.length + 2) / 3) * 4; in encode() local 107 codeLength += (codeLength - 1) / lineFeed; in encode() 110 byte[] dst = new byte[codeLength]; in encode() 134 if (didx < codeLength && lineFeed > 0 && lf % lineFeed == 0) in encode()
|
/external/javassist/src/main/javassist/expr/ |
D | NewArray.java | 177 int codeLength; in replace2() local 185 codeLength = 2; in replace2() 195 codeLength = 3; in replace2() 201 codeLength = 4; in replace2() 235 replace0(pos, bytecode, codeLength); in replace2()
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
D | StackSizeComputer.java | 135 int codeLength = codeAttribute.u4codeLength; in visitCodeAttribute0() local 136 if (evaluated.length < codeLength) in visitCodeAttribute0() 138 evaluated = new boolean[codeLength]; in visitCodeAttribute0() 139 stackSizes = new int[codeLength]; in visitCodeAttribute0() 143 for (int index = 0; index < codeLength; index++) in visitCodeAttribute0()
|
/external/proguard/src/proguard/classfile/util/ |
D | DynamicClassReferenceInitializer.java | 416 int codeLength) in isDotClassMethodCode() argument 419 if (codeAttribute.u4codeLength < codeLength) in isDotClassMethodCode() 426 codeAttribute.instructionsAccept(clazz, method, 0, codeLength, codeMatcher); in isDotClassMethodCode()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Analyzer.java | 130 int codeLength = codeAttribute.getCodeLength(); in analyze() local 139 frames = new Frame[codeLength]; in analyze()
|
/external/javassist/src/main/javassist/compiler/ |
D | Javac.java | 281 int len = va.codeLength(i); in recordLocalVariables()
|