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

1 2 3 4

  /frameworks/rs/cpp/
ScriptC.cpp 24 const void *codeTxt, size_t codeLength,
29 rs->mCacheDir, rs->mCacheDirLen, (const char *)codeTxt, codeLength);
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 69 private int codeLength;
116 * @param codeLength the length of the code that will be edited next.
118 public void reset(int codeLength)
121 if (preInsertions.length < codeLength)
123 preInsertions = new Instruction[codeLength];
124 replacements = new Instruction[codeLength];
125 postInsertions = new Instruction[codeLength];
126 deleted = new boolean[codeLength];
130 Arrays.fill(preInsertions, 0, codeLength, null);
131 Arrays.fill(replacements, 0, codeLength, null)
    [all...]
CodeAttributeComposer.java 68 private int codeLength;
128 codeLength = 0;
176 codeFragmentOffsets[level] = codeLength;
200 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset));
204 int newCodeLength = codeLength + instruction.length(codeLength);
209 oldInstructionOffsets[codeLength] = oldInstructionOffset;
212 instructionOffsetMap[level][oldInstructionOffset] = codeLength;
219 codeLength,
221 //instruction.write(code, codeLength);
    [all...]
InstructionWriter.java 50 private int codeLength;
57 * @param codeLength the length of the code that will be edited next.
59 public void reset(int codeLength)
61 this.codeLength = codeLength;
65 codeAttributeEditor.reset(codeLength);
72 * @param codeLength the length of the code that will be edited next.
74 public void extend(int codeLength)
76 this.codeLength = codeLength;
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 248 * [in] codeLength Length of the code word valid range 1...32
266 OMX_INT codeLength
276 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
277 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
280 codeWord = codeWord << (32-codeLength);
285 while (8-Offset <= codeLength)
289 codeLength = codeLength - (8-Offset);
297 *pOffset = Offset + codeLength;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 248 * [in] codeLength Length of the code word valid range 1...32
266 OMX_INT codeLength
276 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
277 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
280 codeWord = codeWord << (32-codeLength);
285 while (8-Offset <= codeLength)
289 codeLength = codeLength - (8-Offset);
297 *pOffset = Offset + codeLength;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 248 * [in] codeLength Length of the code word valid range 1...32
266 OMX_INT codeLength
276 armRetArgErrIf(codeLength < 1, OMX_Sts_BadArgErr);
277 armRetArgErrIf(codeLength > 32, OMX_Sts_BadArgErr);
280 codeWord = codeWord << (32-codeLength);
285 while (8-Offset <= codeLength)
289 codeLength = codeLength - (8-Offset);
297 *pOffset = Offset + codeLength;
  /external/proguard/src/proguard/optimize/peephole/
BranchTargetFinder.java 325 int codeLength = codeAttribute.u4codeLength;
326 if (subroutineStarts.length < codeLength)
329 instructionMarks = new short[codeLength + 1];
330 subroutineStarts = new int[codeLength];
331 subroutineEnds = new int[codeLength];
332 creationOffsets = new int[codeLength];
333 initializationOffsets = new int[codeLength];
336 Arrays.fill(subroutineStarts, 0, codeLength, UNKNOWN);
337 Arrays.fill(subroutineEnds, 0, codeLength, UNKNOWN);
338 Arrays.fill(creationOffsets, 0, codeLength, NONE)
    [all...]
ReachableCodeMarker.java 87 int codeLength = codeAttribute.u4codeLength;
88 if (isReachable.length < codeLength)
91 isReachable = new boolean[codeLength];
96 Arrays.fill(isReachable, 0, codeLength, false);
  /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/evaluation/
VariableOptimizer.java 121 int codeLength = codeAttribute.u4codeLength;
138 if (areNonOverlapping(oldIndex, newIndex, codeLength))
142 updateLiveness(oldIndex, newIndex, codeLength);
250 int codeLength = codeAttribute.u4codeLength;
253 if (variableMap.length < codeLength)
255 variableMap = new int[codeLength];
265 int codeLength)
268 for (int offset = 0; offset < codeLength; offset++)
293 int codeLength)
296 for (int offset = 0; offset < codeLength; offset++
    [all...]
LivenessAnalyzer.java 207 int codeLength = codeAttribute.u4codeLength;
223 for (int offset = codeLength - 1; offset >= 0; offset--)
264 for (int offset = 0; offset < codeLength; offset++)
307 for (int offset = 0; offset < codeLength; offset++)
421 int codeLength = codeAttribute.u4codeLength;
424 if (isAliveBefore.length < codeLength)
426 isAliveBefore = new long[codeLength];
427 isAliveAfter = new long[codeLength];
428 isCategory2 = new long[codeLength];
432 for (int index = 0; index < codeLength; index++
    [all...]
EvaluationShrinker.java 192 int codeLength = codeAttribute.u4codeLength;
195 codeAttributeEditor.reset(codeLength);
200 for (int offset = 0; offset < codeLength; offset++)
227 for (int offset = 0; offset < codeLength; offset++)
308 for (int offset = 0; offset < codeLength; offset++)
325 maxMarkedOffset = codeLength - 1;
362 for (int offset = 0; offset < codeLength; offset++)
384 for (int offset = 0; offset < codeLength; offset++)
424 while (offset < codeLength);
479 while (offset < codeLength);
    [all...]
PartialEvaluator.java     [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 165 * [in] codeLength Length of the code word valid range 1...32
183 OMX_INT codeLength
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_Bitstream.h 165 * [in] codeLength Length of the code word valid range 1...32
183 OMX_INT codeLength
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armCOMM_Bitstream.h 165 * [in] codeLength Length of the code word valid range 1...32
183 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 137 int codeLength = codeAttribute.u4codeLength;
138 if (evaluated.length < codeLength)
140 evaluated = new boolean[codeLength];
141 stackSizes = new int[codeLength];
145 Arrays.fill(evaluated, 0, codeLength, false);
  /external/proguard/src/proguard/classfile/util/
DynamicClassReferenceInitializer.java 418 int codeLength)
421 if (codeAttribute.u4codeLength < codeLength)
428 codeAttribute.instructionsAccept(clazz, method, 0, codeLength, codeMatcher);
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 105 int codeLength = codeAttribute.u4codeLength;
112 codeAttributeEditor.reset(codeLength);
117 for (int offset = 0; offset < codeLength; offset++)

Completed in 1926 milliseconds

1 2 3 4