Searched refs:last_byte (Results 1 – 12 of 12) sorted by relevance
308 last_byte; /* Last byte in buffer */ in gif_get_code() local324 last_byte = 0; in gif_get_code()343 if (last_byte > 1) in gif_get_code()345 buf[0] = buf[last_byte - 2]; in gif_get_code()346 buf[1] = buf[last_byte - 1]; in gif_get_code()347 last_byte = 2; in gif_get_code()349 else if (last_byte == 1) in gif_get_code()351 buf[0] = buf[last_byte - 1]; in gif_get_code()352 last_byte = 1; in gif_get_code()359 if ((count = gif_get_block(fp, buf + last_byte)) <= 0) in gif_get_code()[all …]
89 const char* last_byte = end - 1; in CUnescapeInternal() local98 if (++p > last_byte) { // skip past the '\\' in CUnescapeInternal()125 if (p < last_byte && is_octal_digit(p[1])) ch = ch * 8 + *++p - '0'; in CUnescapeInternal()126 if (p < last_byte && is_octal_digit(p[1])) in CUnescapeInternal()149 if (p >= last_byte) { in CUnescapeInternal()158 while (p < last_byte && absl::ascii_isxdigit(p[1])) in CUnescapeInternal()
96 int last_byte; /* # of bytes in code_buf */ member196 sinfo->last_byte = 2; /* make safe to "recopy last two bytes" */ in InitLZWCode()232 sinfo->code_buf[0] = sinfo->code_buf[sinfo->last_byte-2]; in GetCode()233 sinfo->code_buf[1] = sinfo->code_buf[sinfo->last_byte-1]; in GetCode()242 sinfo->last_byte = 2 + count; in GetCode()243 sinfo->last_bit = sinfo->last_byte * 8; in GetCode()
159 let last_byte = needle.len() - 1; in find_small_imp() localVariable174 if !self.0.byteset.contains(haystack[pos + last_byte]) { in find_small_imp()208 let last_byte = needle.len() - 1; in find_large_imp() localVariable220 if !self.0.byteset.contains(haystack[pos + last_byte]) { in find_large_imp()
75 DelimSpanEnum::Fallback(span) => Span::_new_fallback(span.last_byte()), in close()
631 pub(crate) fn last_byte(self) -> Self { in last_byte() method636 pub(crate) fn last_byte(self) -> Self { in last_byte() method705 self.span.last_byte() in span_close()
1038 uint8_t last_byte = 0; in parser_post_processing() local1042 last_byte = page_p->bytes[offset]; in parser_post_processing()1046 while (last_byte & CBC_HIGHEST_BIT_MASK); in parser_post_processing()1423 uint8_t last_byte = 0; in parser_post_processing() local1427 last_byte = page_p->bytes[offset]; in parser_post_processing()1428 *dst_p++ = last_byte; in parser_post_processing()1433 while (last_byte & CBC_HIGHEST_BIT_MASK); in parser_post_processing()
93 const uint8_t *last_byte; member821 if (ctx->next_cell_data >= ctx->last_byte) { in parse_bintree()839 ctx->next_cell_data, ctx->last_byte); in parse_bintree()881 ctx->last_byte = data + data_size; in decode_plane()
1337 nibble = last_byte >> 4; \ in adpcm_decode_frame()1340 last_byte = bytestream2_get_byteu(&gb); \ in adpcm_decode_frame()1341 nibble = last_byte & 0x0F; \ in adpcm_decode_frame()1345 int last_byte = 0; in adpcm_decode_frame()
215 last_byte = field.end // 8217 for b in range(first_byte, last_byte + 1):
422 unsigned char last_byte = masked_bitstring[byte_length - 1];423 for (unsigned b = 1; b < 0xff && (last_byte & b) == 0; b <<= 1) {
2472 unsigned last_byte = this->fields.structure[i].offset + in explicit_size() local2474 size = MAX2(size, last_byte); in explicit_size()