Home
last modified time | relevance | path

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

/third_party/cups-filters/cupsfilters/
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)) <= 0) in gif_get_code()
[all …]
/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/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/rust/crates/memchr/src/memmem/
Dtwoway.rs159 let last_byte = needle.len() - 1; in find_small_imp() localVariable
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() localVariable
220 if !self.0.byteset.contains(haystack[pos + last_byte]) { in find_large_imp()
/third_party/rust/crates/proc-macro2/src/
Dextra.rs75 DelimSpanEnum::Fallback(span) => Span::_new_fallback(span.last_byte()), in close()
Dfallback.rs631 pub(crate) fn last_byte(self) -> Self { in last_byte() method
636 pub(crate) fn last_byte(self) -> Self { in last_byte() method
705 self.span.last_byte() in span_close()
/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/ffmpeg/libavcodec/
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()
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/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/mbedtls/tests/suites/
Dtest_suite_asn1write.function422 unsigned char last_byte = masked_bitstring[byte_length - 1];
423 for (unsigned b = 1; b < 0xff && (last_byte & b) == 0; b <<= 1) {
/third_party/mesa3d/src/compiler/
Dglsl_types.cpp2472 unsigned last_byte = this->fields.structure[i].offset + in explicit_size() local
2474 size = MAX2(size, last_byte); in explicit_size()