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

1 2 3 4

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackRunBox.java 49 private int dataOffset;
117 public void setDataOffset(int dataOffset) {
118 if (dataOffset == -1) {
121 setFlags(getFlags() | 0x1); // turn on dataoffset
123 this.dataOffset = dataOffset;
193 IsoTypeWriter.writeUInt32(byteBuffer, dataOffset);
221 dataOffset = l2i(IsoTypeReader.readUInt32(content));
223 dataOffset = -1;
320 return dataOffset;
    [all...]
  /art/runtime/mirror/
array.h 54 static MemberOffset DataOffset(size_t component_size) {
64 intptr_t data = reinterpret_cast<intptr_t>(this) + DataOffset(component_size).Int32Value();
69 intptr_t data = reinterpret_cast<intptr_t>(this) + DataOffset(component_size).Int32Value();
106 intptr_t data = reinterpret_cast<intptr_t>(this) + DataOffset(sizeof(T)).Int32Value();
111 intptr_t data = reinterpret_cast<intptr_t>(this) + DataOffset(sizeof(T)).Int32Value();
object_array-inl.h 46 MemberOffset data_offset(DataOffset(sizeof(Object*)).Int32Value() + i * sizeof(Object*));
65 MemberOffset data_offset(DataOffset(sizeof(Object*)).Int32Value() + i * sizeof(Object*));
75 MemberOffset data_offset(DataOffset(sizeof(Object*)).Int32Value() + i * sizeof(Object*));
82 MemberOffset data_offset(DataOffset(sizeof(Object*)).Int32Value() + i * sizeof(Object*));
89 MemberOffset data_offset(DataOffset(sizeof(Object*)).Int32Value() + i * sizeof(Object*));
101 MemberOffset src_offset(DataOffset(sizeof(Object*)).Int32Value() + src_pos * sizeof(Object*));
102 MemberOffset dst_offset(DataOffset(sizeof(Object*)).Int32Value() + dst_pos * sizeof(Object*));
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 67 off64_t dataOffset;
287 pSession->dataOffset = pSession->contentTypeLength +
325 newFilePos = lseek64(pSession->fileDesc, pSession->dataOffset + offset, whence);
337 if (newFilePos < pSession->dataOffset) {
340 (void)lseek64(pSession->fileDesc, pSession->dataOffset + pSession->filePos,
347 pSession->filePos = newFilePos - pSession->dataOffset;
383 if (lseek64(pSession->fileDesc, pSession->dataOffset, SEEK_SET) !=
384 pSession->dataOffset) {
401 (void)lseek64(pSession->fileDesc, pSession->dataOffset + pSession->filePos,
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 175 UInt64 &dataOffset,
193 UInt64 &dataOffset,
210 UInt64 baseOffset, UInt64 &dataOffset,
7zOut.h 83 UInt64 dataOffset,
7zIn.cpp 495 UInt64 &dataOffset,
500 dataOffset = ReadNumber();
690 UInt64 &dataOffset,
711 ReadPackInfo(dataOffset, packSizes, packCRCsDefined, packCRCs);
784 UInt64 &dataOffset, CObjectVector<CByteBuffer> &dataVector
801 dataOffset,
821 UInt64 dataStartPos = baseOffset + dataOffset;
    [all...]
  /system/core/libzipfile/
centraldir.c 84 unsigned int dataOffset;
150 dataOffset = localHeaderRelOffset + LFH_SIZE
152 entry->data = file->buf + dataOffset;
154 printf("file->buf=%p entry->data=%p dataOffset=%x localHeaderRelOffset=%d "
156 file->buf, entry->data, dataOffset, localHeaderRelOffset,
  /dalvik/libdex/
ZipArchive.cpp 602 * dataOffset, because dataOffset is expensive to determine. However,
637 off64_t dataOffset = localHdrOffset + kLFHLen
639 if (dataOffset >= cdOffset) {
640 ALOGW("Zip: bad data offset %ld in zip", (long) dataOffset);
645 if ((off_t)(dataOffset + compLen) > cdOffset) {
647 (long) dataOffset, compLen, (long) cdOffset);
652 (off_t)(dataOffset + uncompLen) > cdOffset)
655 (long) dataOffset, uncompLen, (long) cdOffset);
659 *pOffset = dataOffset;
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
binaryajax.js 11 var dataOffset = iDataOffset || 0;
22 return data.charCodeAt(iOffset + dataOffset) & 0xFF;
28 return IEBinary_getByteAt(data, iOffset + dataOffset);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
binaryajax.js 11 var dataOffset = iDataOffset || 0;
22 return data.charCodeAt(iOffset + dataOffset) & 0xFF;
28 return IEBinary_getByteAt(data, iOffset + dataOffset);
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 558 * dataOffset, because dataOffset is expensive to determine. However,
632 off64_t dataOffset = localHdrOffset + kLFHLen
634 if (dataOffset >= cdOffset) {
635 ALOGW("bad data offset %ld in zip\n", (long) dataOffset);
640 if ((dataOffset >= cdOffset) || (compLen > (cdOffset - dataOffset))) {
642 (long) dataOffset, (ZD_TYPE) compLen, (long) cdOffset);
647 ((dataOffset >= cdOffset) ||
648 (uncompLen > (cdOffset - dataOffset))))
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 135 private void readIndex(BufferIterator it, int indexOffset, int dataOffset) {
144 int indexSize = (dataOffset - indexOffset);
158 byteOffsets[i] += dataOffset; // TODO: change the file format so this is included.
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChain.java 36 protected final long dataOffset;
64 this.dataOffset = FatUtils.getFilesOffset(fat.getBootSector());
101 return dataOffset + clusterOffset +
  /external/icu4c/common/
ucmndata.h 48 uint32_t dataOffset;
  /frameworks/av/media/libstagefright/mp4/
TrackFragment.h 48 off64_t dataOffset, size_t sampleSize,
TrackFragment.cpp 54 off64_t dataOffset, size_t sampleSize,
61 sampleInfo->mOffset = dataOffset;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file.py 233 dataoffset = 16384
235 assert not dataoffset % len(filler), \
236 "dataoffset must be multiple of len(filler)"
237 nchunks = dataoffset // len(filler)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file.py 233 dataoffset = 16384
235 assert not dataoffset % len(filler), \
236 "dataoffset must be multiple of len(filler)"
237 nchunks = dataoffset // len(filler)
  /art/compiler/dex/quick/mips/
int_mips.cc 425 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
427 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
493 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
495 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
561 int data_offset = mirror::Array::DataOffset(sizeof(mirror::Object*)).Int32Value();
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 209 internal long DataOffset {
257 long offset = DataOffset;
274 long data_offset = DataOffset;
  /external/chromium_org/third_party/icu/source/common/
ucmndata.h 62 uint32_t dataOffset;
  /external/llvm/tools/macho-dump/
macho-dump.cpp 272 outs() << " ('dataoff', " << LLC.DataOffset << ")\n"
277 Obj.ReadULEB128s(LLC.DataOffset, Addresses);
291 outs() << " ('dataoff', " << LLC.DataOffset << ")\n"
298 Obj.getDataInCodeTableEntry(LLC.DataOffset, i);
  /art/compiler/dex/quick/x86/
int_x86.cc 431 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
433 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
475 data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Int32Value();
477 data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Int32Value();
514 int data_offset = mirror::Array::DataOffset(sizeof(mirror::Object*)).Int32Value();
  /external/chromium_org/third_party/icu/source/tools/icuswap/
icuswap.cpp 420 offset=ds->readUInt32(inEntries[itemCount-1].dataOffset);
444 offset=20+ds->readUInt32(inEntries[itemCount-1].dataOffset);
466 itemLength=(int32_t)(ds->readUInt32(inEntries[0].dataOffset)-offset);
547 table[i].inOffset=ds->readUInt32(inEntries[i].dataOffset);
600 ds->writeUInt32(&outEntries[i].dataOffset, table[i].outOffset);

Completed in 767 milliseconds

1 2 3 4