Home
last modified time | relevance | path

Searched refs:last_byte (Results 1 - 12 of 12) sorted by relevance

/third_party/cups-filters/cupsfilters/
H A Dimage-gif.c308 last_byte; /* Last byte in buffer */ in gif_get_code() local
324 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)) < in gif_get_code()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A 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/
H A 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/rust/crates/proc-macro2/src/
H A Dextra.rs75 DelimSpanEnum::Fallback(span) => Span::_new_fallback(span.last_byte()), in close()
H A Dfallback.rs631 pub(crate) fn last_byte(self) -> Self {
636 pub(crate) fn last_byte(self) -> Self {
705 self.span.last_byte() in span_close()
/third_party/jerryscript/jerry-core/parser/js/
H A 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/ffmpeg/libavcodec/
H A Dindeo3.c93 const uint8_t *last_byte; member
821 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()
H A Dadpcm.c1337 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()
/third_party/skia/third_party/externals/libpng/arm/
H A Dfilter_neon_intrinsics.c521 png_byte last_byte = *rp_stop; in png_read_filter_row_sub3_neon() local
572 *rp_stop = last_byte; in png_read_filter_row_sub3_neon()
669 png_byte last_byte = *rp_stop; in png_read_filter_row_avg3_neon() local
752 *rp_stop = last_byte; in png_read_filter_row_avg3_neon()
790 png_byte last_byte = *rp_stop; in png_read_filter_row_avg3_x2_neon() local
935 *rp_stop = last_byte; in png_read_filter_row_avg3_x2_neon()
1221 png_byte last_byte = *rp_stop; in png_read_filter_row_paeth3_neon() local
1304 *rp_stop = last_byte; in png_read_filter_row_paeth3_neon()
1344 png_byte last_byte = *rp_stop; in png_read_filter_row_paeth3_x2_neon() local
1492 *rp_stop = last_byte; in png_read_filter_row_paeth3_x2_neon()
[all...]
/third_party/mesa3d/src/broadcom/cle/
H A Dgen_pack_header.py215 last_byte = field.end // 8
217 for b in range(first_byte, last_byte + 1):
/third_party/rust/crates/memchr/src/memmem/
H A Dtwoway.rs159 let last_byte = needle.len() - 1; in find_small_imp()
174 if !self.0.byteset.contains(haystack[pos + last_byte]) { in find_small_imp()
208 let last_byte = needle.len() - 1; in find_large_imp()
220 if !self.0.byteset.contains(haystack[pos + last_byte]) { in find_large_imp()
/third_party/mesa3d/src/compiler/
H A Dglsl_types.cpp2472 unsigned last_byte = this->fields.structure[i].offset + in explicit_size() local
2474 size = MAX2(size, last_byte); in explicit_size()

Completed in 21 milliseconds