HomeSort by relevance Sort by last modified time
    Searched refs:offSet (Results 1 - 7 of 7) sorted by null

  /external/opencore/fileformats/mp4/parser/src/
decoderconfigdescriptor.cpp 99 uint32 offSet = infoSize - 4;
104 if (info[offSet] == 0x00)
106 if (info[offSet+1] == 0x00)
108 if (info[offSet+2] == 0x01)
110 if (info[offSet+3] < 0x20)
chunkoffsetatom.cpp 137 uint32 offset = 0; local
140 if (!AtomUtils::read32(fp, offset))
145 _pchunkOffsets[i] = offset;
220 uint32 offset = 0; local
221 if (!AtomUtils::read32(_fileptr, offset))
225 _pchunkOffsets[_curr_entry_point] = offset;
233 // Returns the chunk offset for the chunk at 'index'
275 ChunkOffsetAtom::getChunkClosestToOffset(uint32 offSet, int32& index)
304 if ((uint32)_pchunkOffsets[i%_stbl_buff_size] < offSet)
sampletochunkatom.cpp 188 uint32 offSet = 0;
202 offSet = firstChunk;
217 _pfirstChunkVec[j] = (firstChunk - offSet);
288 uint32 offSet = 1;
290 offSet = firstChunk;
304 _pfirstChunkVec[_curr_entry_point] = (firstChunk - offSet);
659 uint32 chunkOffset = chunkNum - firstChunkCurrentRun; // Offset from firstChunk
696 uint32 chunkOffset = chunkNum - firstChunkCurrentRun; // Offset from firstChunk
    [all...]
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java 135 int offSet = 1;
143 x += defl.deflate(outPutBuf, offSet, length);
146 .deflate(outPutBuf, offSet, length));
155 infl.setInput(outPutBuf, offSet, length);
172 // Set of tests testing the boundaries of the offSet/length
178 offSet = outPutBuf.length + 1;
181 offSet = 0;
185 defl.deflate(outPutBuf, offSet, length);
365 int offSet = 2;
368 defl.setInput(byteArray, offSet, length)
    [all...]
InflaterTest.java 204 int offSet = 0;// seems only can start as 0
209 inflate2.setInput(outPutBuff1, offSet, length);
273 int offSet = 0;// seems only can start as 0
281 y += inflate.inflate(outPutInf, offSet, length);
465 int offSet = 0;
471 inflate.inflate(outPutInf, offSet, lengthError);
732 int offSet = 6;
735 inflate.setInput(byteArray, offSet, length);
    [all...]
  /external/opencore/fileformats/mp4/parser/include/
chunkoffsetatom.h 51 // Getting first chunk offset values
53 int32 getChunkClosestToOffset(uint32 offSet, int32& index);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 176 int offSet = 0;
187 offSet = 1;
190 return engine.processBlock(block, offSet, block.length - offSet);

Completed in 277 milliseconds