Searched refs:skip_bytes (Results 1 – 5 of 5) sorted by relevance
/external/u-boot/tools/ |
D | bmp_logo.c | 36 void skip_bytes (FILE *fp, int n) in skip_bytes() function 108 skip_bytes (fp, 8); in main() 111 skip_bytes(fp, 2); in main() 116 skip_bytes(fp, 2); in main() 119 skip_bytes (fp, 2); in main() 122 skip_bytes (fp, 22); in main() 125 skip_bytes(fp, hdr_size - 34); in main()
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 2289 skip_bytes = int(self._b2cratio * chars_to_skip) 2291 assert skip_bytes <= len(next_input) 2292 while skip_bytes > 0: 2295 n = len(decoder.decode(next_input[:skip_bytes])) 2304 skip_bytes -= len(b) 2308 skip_bytes -= skip_back 2311 skip_bytes = 0 2315 start_pos = position + skip_bytes 2329 for i in range(skip_bytes, len(next_input)):
|
/external/python/cpython3/Modules/_io/ |
D | textio.c | 2522 Py_ssize_t skip_bytes, skip_back; in _io_TextIOWrapper_tell_impl() local 2630 skip_bytes = (Py_ssize_t) (self->b2cratio * chars_to_skip); in _io_TextIOWrapper_tell_impl() 2634 while (skip_bytes > 0) { in _io_TextIOWrapper_tell_impl() 2638 DECODER_DECODE(input, skip_bytes, chars_decoded); in _io_TextIOWrapper_tell_impl() 2648 skip_bytes -= dec_buffer_len; in _io_TextIOWrapper_tell_impl() 2653 skip_bytes -= skip_back; in _io_TextIOWrapper_tell_impl() 2657 if (skip_bytes <= 0) { in _io_TextIOWrapper_tell_impl() 2658 skip_bytes = 0; in _io_TextIOWrapper_tell_impl() 2664 cookie.start_pos += skip_bytes; in _io_TextIOWrapper_tell_impl() 2678 input += skip_bytes; in _io_TextIOWrapper_tell_impl()
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 7682 size_t skip_bytes = d->skip; in upb_pbdecoder_resume() local 7684 CHECK_RETURN(skip(d, skip_bytes)); in upb_pbdecoder_resume()
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 8401 size_t skip_bytes = d->skip; in upb_pbdecoder_resume() local 8403 CHECK_RETURN(skip(d, skip_bytes)); in upb_pbdecoder_resume()
|