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

1 2

  /frameworks/rs/cpp/
ScriptC.cpp 23 const void *codeTxt, size_t codeLength,
28 cacheDir, cacheDirLength, (const char *)codeTxt, codeLength);
  /external/proguard/src/proguard/optimize/evaluation/
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...]
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...]
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...]
PartialEvaluator.java     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 233 * [in] codeLength Length of the code word valid range 1...32
251 OMX_INT codeLength
261 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
262 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
265 codeWord = codeWord << (32-codeLength);
270 while (8-Offset <= codeLength)
274 codeLength = codeLength - (8-Offset);
282 *pOffset = Offset + codeLength;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 233 * [in] codeLength Length of the code word valid range 1...32
251 OMX_INT codeLength
261 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
262 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
265 codeWord = codeWord << (32-codeLength);
270 while (8-Offset <= codeLength)
274 codeLength = codeLength - (8-Offset);
282 *pOffset = Offset + codeLength;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 233 * [in] codeLength Length of the code word valid range 1...32
251 OMX_INT codeLength
261 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
262 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
265 codeWord = codeWord << (32-codeLength);
270 while (8-Offset <= codeLength)
274 codeLength = codeLength - (8-Offset);
282 *pOffset = Offset + codeLength;
  /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...]
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/optimize/peephole/
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...]
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++)
  /external/proguard/src/proguard/classfile/editor/
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...]
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);
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...]
  /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)
  /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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_Bitstream.h 150 * [in] codeLength Length of the code word valid range 1...32
168 OMX_INT codeLength
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_Bitstream.h 150 * [in] codeLength Length of the code word valid range 1...32
168 OMX_INT codeLength
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armCOMM_Bitstream.h 150 * [in] codeLength Length of the code word valid range 1...32
168 OMX_INT codeLength
  /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);
  /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/util/
DynamicClassReferenceInitializer.java 416 int codeLength)
419 if (codeAttribute.u4codeLength < codeLength)
426 codeAttribute.instructionsAccept(clazz, method, 0, codeLength, codeMatcher);
  /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),

Completed in 693 milliseconds

1 2