HomeSort by relevance Sort by last modified time
    Searched defs:codeLength (Results 1 - 25 of 32) sorted by null

1 2

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 104 int codeLength = ((src.length + 2) / 3) * 4;
107 codeLength += (codeLength - 1) / lineFeed;
110 byte[] dst = new byte[codeLength];
134 if (didx < codeLength && lineFeed > 0 && lf % lineFeed == 0)
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 197 int codeLength = codeAttribute.u4codeLength;
213 for (int offset = codeLength - 1; offset >= 0; offset--)
254 for (int offset = 0; offset < codeLength; offset++)
297 for (int offset = 0; offset < codeLength; offset++)
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++
    [all...]
VariableOptimizer.java 113 int codeLength = codeAttribute.u4codeLength;
130 if (areNonOverlapping(oldIndex, newIndex, codeLength))
134 updateLiveness(oldIndex, newIndex, codeLength);
181 int codeLength = codeAttribute.u4codeLength;
184 if (variableMap.length < codeLength)
186 variableMap = new int[codeLength];
196 int codeLength)
199 for (int offset = 0; offset < codeLength; offset++)
224 int codeLength)
227 for (int offset = 0; offset < codeLength; offset++
    [all...]
EvaluationSimplifier.java 135 int codeLength = codeAttribute.u4codeLength;
138 codeAttributeEditor.reset(codeLength);
141 for (int offset = 0; offset < codeLength; offset++)
    [all...]
EvaluationShrinker.java 157 int codeLength = codeAttribute.u4codeLength;
160 codeAttributeEditor.reset(codeLength);
165 for (int offset = 0; offset < codeLength; offset++)
192 for (int offset = 0; offset < codeLength; offset++)
273 for (int offset = 0; offset < codeLength; offset++)
299 maxMarkedOffset = codeLength - 1;
336 for (int offset = 0; offset < codeLength; offset++)
358 for (int offset = 0; offset < codeLength; offset++)
401 while (offset < codeLength);
456 while (offset < codeLength);
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 85 int codeLength = codeAttribute.u4codeLength;
86 if (isReachable.length < codeLength)
89 isReachable = new boolean[codeLength];
94 for (int index = 0; index < codeLength; index++)
BranchTargetFinder.java 304 int codeLength = codeAttribute.u4codeLength;
305 if (subroutineStarts.length < codeLength)
308 instructionMarks = new short[codeLength + 1];
309 subroutineStarts = new int[codeLength];
310 subroutineEnds = new int[codeLength];
311 creationOffsets = new int[codeLength];
312 initializationOffsets = new int[codeLength];
315 for (int index = 0; index < codeLength; index++)
326 for (int index = 0; index < codeLength; index++)
335 instructionMarks[codeLength] = 0
    [all...]
  /external/aac/libAACenc/src/
bit_cnt.cpp 549 INT codeLength;
563 codeLength = HI_LTAB(FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]);
564 bitCnt+= codeLength;
574 codeLength = LO_LTAB(FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]);
575 bitCnt+= codeLength;
603 codeLength = HI_LTAB(FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3]);
604 bitCnt+=codeLength+signLength;
631 codeLength = LO_LTAB(FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3]);
632 bitCnt+=codeLength+signLength;
640 codeLength = HI_LTAB(FDKaacEnc_huff_ltab5_6[t0+4][t1+4])
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 74 int codeLength = stack.length;
87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth))
99 int codeLength, int[] stack, int stackDepth, int[] jsrDepth)
105 checkTarget(index, target, codeLength, stack, stackDepth);
112 checkTarget(index, target, codeLength, stack, stackDepth);
116 checkTarget(index, target, codeLength, stack, stackDepth);
125 checkTarget(index, target, codeLength, stack, stackDepth);
158 checkTarget(index, target, codeLength, stack, stackDepth);
164 checkTarget(index, target, codeLength,
176 checkTarget(index, target, codeLength,
    [all...]
LocalVariableAttribute.java 173 public int codeLength(int i) {
CodeIterator.java 687 int codeLength = code.length;
688 byte[] newcode = new byte[codeLength + gapLength];
691 for (i = 0; i < codeLength; ++i)
694 for (i = codeLength; i < codeLength + gapLength; ++i)
822 int codeLength = code.length;
823 byte[] newcode = new byte[codeLength + gapLength];
824 insertGap2(code, where, gapLength, codeLength, newcode, exclusive);
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 135 int codeLength = codeAttribute.u4codeLength;
136 if (evaluated.length < codeLength)
138 evaluated = new boolean[codeLength];
139 stackSizes = new int[codeLength];
143 for (int index = 0; index < codeLength; index++)
  /external/proguard/src/proguard/classfile/editor/
InstructionWriter.java 43 private int codeLength;
50 * @param codeLength the length of the code that will be edited next.
52 public void reset(int codeLength)
54 this.codeLength = codeLength;
59 codeAttributeEditor.reset(codeLength);
275 codeAttributeEditor.reset(codeLength);
CodeAttributeComposer.java 63 private int codeLength;
109 codeLength = 0;
155 codeFragmentOffsets[level] = codeLength;
172 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset));
176 int newCodeLength = codeLength + instruction.length(codeLength);
181 oldInstructionOffsets[codeLength] = oldInstructionOffset;
187 // codeLength,
189 instruction.write(code, codeLength);
192 instructionOffsetMap[level][oldInstructionOffset] = codeLength;
    [all...]
CodeAttributeEditor.java 58 private int codeLength;
92 * @param codeLength the length of the code that will be edited next.
94 public void reset(int codeLength)
96 this.codeLength = codeLength;
99 if (preInsertions.length < codeLength)
101 preInsertions = new Instruction[codeLength];
102 replacements = new Instruction[codeLength];
103 postInsertions = new Instruction[codeLength];
104 deleted = new boolean[codeLength];
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
bit_cnt.c 499 UWord16 codeWord, codeLength;
514 codeLength = HI_LTAB(huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]);
515 WriteBits(hBitstream, codeWord, codeLength);
526 codeLength = LO_LTAB(huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]);
527 WriteBits(hBitstream,codeWord,codeLength);
580 codeLength = HI_LTAB(huff_ltab3_4[t0][t1][t2][t3]);
581 WriteBits(hBitstream,codeWord,codeLength);
634 codeLength = LO_LTAB(huff_ltab3_4[t0][t1][t2][t3]);
635 WriteBits(hBitstream,codeWord,codeLength);
645 codeLength = HI_LTAB(huff_ltab5_6[t0+4][t1+4])
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 177 int codeLength;
185 codeLength = 2;
195 codeLength = 3;
201 codeLength = 4;
235 replace0(pos, bytecode, codeLength);
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 220 int codeLength = bytes.getInt(offset + 4); // u4 code_length
229 "code_length: " + Hex.u4(codeLength));
235 if (length < (codeLength + 4)) {
240 offset += codeLength;
241 length -= codeLength;
243 new BytecodeArray(bytes.slice(codeOffset, codeOffset + codeLength),
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 130 int codeLength = codeAttribute.getCodeLength();
139 frames = new Frame[codeLength];
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 

Completed in 537 milliseconds

1 2