Searched refs:last_byte (Results 1 – 9 of 9) sorted by relevance
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()
558 gchar *last_byte; in g_settings_backend_flatten_one() local562 last_byte = strrchr (state->prefix, '/') + 1; in g_settings_backend_flatten_one()563 state->prefix_len = last_byte - state->prefix; in g_settings_backend_flatten_one()564 *last_byte = '\0'; in g_settings_backend_flatten_one()
91 const uint8_t *last_byte; member819 if (ctx->next_cell_data >= ctx->last_byte) { in parse_bintree()837 ctx->next_cell_data, ctx->last_byte); in parse_bintree()879 ctx->last_byte = data + data_size; in decode_plane()
1221 int last_byte = 0; in adpcm_decode_frame() local1243 nibble = last_byte >> 4; \ in adpcm_decode_frame()1246 last_byte = bytestream2_get_byteu(&gb); \ in adpcm_decode_frame()1247 nibble = last_byte & 0x0F; \ in adpcm_decode_frame()
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()
215 last_byte = field.end // 8217 for b in range(first_byte, last_byte + 1):
2358 unsigned last_byte = this->fields.structure[i].offset + in explicit_size() local2360 size = MAX2(size, last_byte); in explicit_size()