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

  /external/webp/src/dec/
webp.c 70 if (*data_size >= RIFF_HEADER_SIZE && !memcmp(*data, "RIFF", TAG_SIZE)) {
71 if (memcmp(*data + 8, "WEBP", TAG_SIZE)) {
74 const uint32_t size = get_le32(*data + TAG_SIZE);
76 if (size < TAG_SIZE + CHUNK_HEADER_SIZE) {
114 if (!memcmp(*data, "VP8X", TAG_SIZE)) {
117 const uint32_t chunk_size = get_le32(*data + TAG_SIZE);
158 uint32_t total_size = TAG_SIZE + // "WEBP".
182 chunk_size = get_le32(buf + TAG_SIZE);
199 if (!memcmp(buf, "ALPH", TAG_SIZE)) { // A valid ALPH header.
202 } else if (!memcmp(buf, "VP8 ", TAG_SIZE) ||
    [all...]
  /external/webp/include/webp/
format_constants.h 64 #define TAG_SIZE 4 // Size of a chunk tag (e.g. "VP8L").
  /external/webp/src/enc/
syntax.c 46 PutLE32(riff + TAG_SIZE, (uint32_t)riff_size);
68 PutLE32(vp8x + TAG_SIZE, VP8X_CHUNK_SIZE);
87 PutLE32(alpha_chunk_hdr + TAG_SIZE, enc->alpha_data_size_);
110 PutLE32(vp8_chunk_hdr + TAG_SIZE, (uint32_t)vp8_size);
379 riff_size = TAG_SIZE + CHUNK_HEADER_SIZE + vp8_size;
vp8l.c 726 PutLE32(riff + TAG_SIZE, (uint32_t)riff_size);
727 PutLE32(riff + RIFF_HEADER_SIZE + TAG_SIZE, (uint32_t)vp8l_size);
759 const size_t riff_size = TAG_SIZE + CHUNK_HEADER_SIZE + vp8l_size + pad;
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifParser.java 139 protected static final int TAG_SIZE = 12;
276 int endOfTags = mIfdStartOffset + OFFSET_SIZE + TAG_SIZE * mNumOfTagInIfd;
327 if (mNumOfTagInIfd * TAG_SIZE + mIfdStartOffset + OFFSET_SIZE > mApp1End) {
364 int endOfTags = mIfdStartOffset + OFFSET_SIZE + TAG_SIZE * mNumOfTagInIfd;
372 offset += TAG_SIZE;
    [all...]
ExifOutputStream.java 73 private static final short TAG_SIZE = 12;
310 offset += 2 + ifd.getTagCount() * TAG_SIZE + 4;
  /external/srec/portable/src/
pmemory.c 461 #define TAG_SIZE 52
467 LCHAR truncatedTag[TAG_SIZE];
471 const size_t countToCopy = (TAG_SIZE - 1) - TAG_PREFIX_SIZE;
513 if (len > TAG_SIZE - 1)
517 passert(LSTRLEN(truncatedTag) == TAG_SIZE - 1);
  /external/webp/src/demux/
demux.c 399 riff_size = GetLE32(GetBuffer(mem) + TAG_SIZE);
465 Skip(mem, TAG_SIZE); // VP8X
671 if (!memcmp(parser->id, GetBuffer(&dmux->mem_), TAG_SIZE)) {
861 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;
873 if (!memcmp(header, fourcc, TAG_SIZE)) ++count;

Completed in 303 milliseconds