Home
last modified time | relevance | path

Searched refs:last_byte (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Descaping.cc89 const char* last_byte = end - 1; in CUnescapeInternal() local
98 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()
/third_party/abseil-cpp/absl/strings/
Descaping.cc89 const char* last_byte = end - 1; in CUnescapeInternal() local
98 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()
/third_party/skia/third_party/externals/libjpeg-turbo/
Drdgif.c96 int last_byte; /* # of bytes in code_buf */ member
196 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()
/third_party/glib/gio/
Dgsettingsbackend.c558 gchar *last_byte; in g_settings_backend_flatten_one() local
562 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()
/third_party/ffmpeg/libavcodec/
Dindeo3.c91 const uint8_t *last_byte; member
819 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()
Dadpcm.c1221 int last_byte = 0; in adpcm_decode_frame() local
1243 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()
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser.c1038 uint8_t last_byte = 0; in parser_post_processing() local
1042 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() local
1427 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()
/third_party/mesa3d/src/broadcom/cle/
Dgen_pack_header.py215 last_byte = field.end // 8
217 for b in range(first_byte, last_byte + 1):
/third_party/mesa3d/src/compiler/
Dglsl_types.cpp2358 unsigned last_byte = this->fields.structure[i].offset + in explicit_size() local
2360 size = MAX2(size, last_byte); in explicit_size()