Lines Matching defs:bytes
51 // Fill the chunk with the given data (includes chunk header bytes), after some
70 chunk_data.bytes = data + CHUNK_HEADER_SIZE;
82 VP8LGetInfo(image->bytes, image->size, &w, &h, &vp8l_has_alpha) :
83 VP8GetInfo(image->bytes, image->size, image->size, &w, &h);
100 const uint8_t* bytes = chunk->data_.bytes;
102 const uint8_t* const last = bytes + size;
113 const WebPData temp = { bytes, hdr_size };
124 bytes += subchunk_size;
127 while (bytes != last) {
129 if (ChunkVerifyAndAssign(&subchunk, bytes, size, size,
154 bytes += subchunk_size;
186 data = bitstream->bytes;
318 f = GetLE32(data.bytes + 0);
319 w = GetLE24(data.bytes + 4) + 1;
320 h = GetLE24(data.bytes + 7) + 1;
398 bitstream->bytes = data;
446 frame->x_offset = 2 * GetLE24(frame_data->bytes + 0);
447 frame->y_offset = 2 * GetLE24(frame_data->bytes + 3);
449 const uint8_t bits = frame_data->bytes[15];
450 frame->duration = GetLE24(frame_data->bytes + 12);
491 params->bgcolor = GetLE32(anim.bytes);
492 params->loop_count = GetLE16(anim.bytes + 4);