Searched refs:uzlib_get_byte (Results 1 – 4 of 4) sorted by relevance
49 while (num--) uzlib_get_byte(d); in tinf_skip_bytes()54 unsigned int v = uzlib_get_byte(d); in tinf_get_uint16()55 v = (uzlib_get_byte(d) << 8) | v; in tinf_get_uint16()66 if (uzlib_get_byte(d) != 0x1f || uzlib_get_byte(d) != 0x8b) return TINF_DATA_ERROR; in uzlib_gzip_parse_header()69 if (uzlib_get_byte(d) != 8) return TINF_DATA_ERROR; in uzlib_gzip_parse_header()72 flg = uzlib_get_byte(d); in uzlib_gzip_parse_header()90 if (flg & FNAME) { while (uzlib_get_byte(d)); } in uzlib_gzip_parse_header()93 if (flg & FCOMMENT) { while (uzlib_get_byte(d)); } in uzlib_gzip_parse_header()
192 unsigned char uzlib_get_byte(TINF_DATA *d) in uzlib_get_byte() function223 val = val >> 8 | ((uint32_t)uzlib_get_byte(d)) << 24; in tinf_get_le_uint32()233 val = val << 8 | uzlib_get_byte(d); in tinf_get_be_uint32()247 d->tag = uzlib_get_byte(d); in tinf_getbit()495 length = uzlib_get_byte(d); in tinf_inflate_uncompressed_block()496 length += 256 * uzlib_get_byte(d); in tinf_inflate_uncompressed_block()498 invlength = uzlib_get_byte(d); in tinf_inflate_uncompressed_block()499 invlength += 256 * uzlib_get_byte(d); in tinf_inflate_uncompressed_block()515 unsigned char c = uzlib_get_byte(d); in tinf_inflate_uncompressed_block()
44 cmf = uzlib_get_byte(d); in uzlib_zlib_parse_header()45 flg = uzlib_get_byte(d); in uzlib_zlib_parse_header()
132 unsigned char TINFCC uzlib_get_byte(TINF_DATA *d);
Completed in 9 milliseconds