/third_party/ffmpeg/libavcodec/ |
H A D | jpeg2000_parser.c | 40 uint32_t skip_bytes; // skip bytes inside codestream data member 59 m->skip_bytes = 0; in reset_context() 107 if (m->skip_bytes) { in find_frame_end() 109 if (m->skip_bytes > 8) { in find_frame_end() 112 int skip = FFMIN(FFMIN((int64_t)m->skip_bytes - 8, buf_size - i - 9), INT_MAX); in find_frame_end() 114 m->skip_bytes -= skip; in find_frame_end() 119 m->skip_bytes--; in find_frame_end() 124 m->skip_bytes = (state64 & 0xFFFFFFFF) - 9 > 0? in find_frame_end() 169 m->skip_bytes = (state64 & 0xFFFF)-1; in find_frame_end() 172 if (i + m->skip_bytes in find_frame_end() [all...] |
H A D | cri_parser.c | 37 int skip_bytes; member 64 if (bpc->skip_bytes > 0) { in cri_parse() 65 bpc->skip_bytes--; in cri_parse() 66 if (bpc->skip_bytes == 0) in cri_parse() 73 if (bpc->skip_bytes == 0 && bpc->read_bytes >= 8) { in cri_parse() 74 bpc->skip_bytes = av_bswap32(state & 0xFFFFFFFF); in cri_parse() 80 if (bpc->chunk == 0x01000000 && bpc->skip_bytes == 4 && in cri_parse()
|
H A D | cabac_functions.h | 202 #ifndef skip_bytes 203 static av_unused const uint8_t* skip_bytes(CABACContext *c, int n) { in skip_bytes() function
|
H A D | shorten.c | 440 int skip_bytes; in read_header() local 463 skip_bytes = get_uint(s, NSKIPSIZE); in read_header() 464 if ((unsigned)skip_bytes > FFMAX(get_bits_left(&s->gb), 0)/8) { in read_header() 465 av_log(s->avctx, AV_LOG_ERROR, "invalid skip_bytes: %d\n", skip_bytes); in read_header() 469 for (i = 0; i < skip_bytes; i++) in read_header()
|
H A D | hevc_cabac.c | 474 return skip_bytes(&lc->cc, 0) == NULL ? AVERROR_INVALIDDATA : 0; in cabac_reinit()
|
/third_party/ffmpeg/libavformat/ |
H A D | mms.c | 121 uint64_t skip_bytes = 88; in ff_mms_asf_header_parser() local 123 if (end - p < skip_bytes + 4) { in ff_mms_asf_header_parser() 128 skip_bytes += 4 + AV_RL16(p + skip_bytes + 2); in ff_mms_asf_header_parser() 131 if (end - p < skip_bytes + 22) { in ff_mms_asf_header_parser() 136 skip_bytes += 22 + AV_RL32(p + skip_bytes + 18); in ff_mms_asf_header_parser() 138 if (end - p < skip_bytes) { in ff_mms_asf_header_parser() 143 if (chunksize - skip_bytes > 24) in ff_mms_asf_header_parser() 144 chunksize = skip_bytes; in ff_mms_asf_header_parser() [all...] |
H A D | rtmpproto.c | 101 int skip_bytes; ///< number of bytes to skip from the input FLV stream in the next write call member 2879 rt->skip_bytes = 13; in rtmp_open() 2967 if (rt->skip_bytes) { in rtmp_write() 2968 int skip = FFMIN(rt->skip_bytes, size_temp); in rtmp_write() 2971 rt->skip_bytes -= skip; in rtmp_write() 3023 rt->skip_bytes = 4; in rtmp_write()
|
/kernel/linux/linux-5.10/drivers/nvmem/ |
H A D | stm32-romem.c | 75 int i, j = 0, ret, skip_bytes, size; in stm32_bsec_read() local 79 skip_bytes = offset & 0x3; in stm32_bsec_read() 80 rbytes = roundup(bytes + skip_bytes, 4); in stm32_bsec_read() 102 if (skip_bytes) in stm32_bsec_read() 103 size = min(bytes, (size_t)(4 - skip_bytes)); in stm32_bsec_read() 106 memcpy(&buf8[j], &val8[skip_bytes], size); in stm32_bsec_read() 109 skip_bytes = 0; in stm32_bsec_read()
|
/kernel/linux/linux-6.6/drivers/nvmem/ |
H A D | stm32-romem.c | 79 int i, j = 0, ret, skip_bytes, size; in stm32_bsec_read() local 83 skip_bytes = offset & 0x3; in stm32_bsec_read() 84 rbytes = roundup(bytes + skip_bytes, 4); in stm32_bsec_read() 106 if (skip_bytes) in stm32_bsec_read() 107 size = min(bytes, (size_t)(4 - skip_bytes)); in stm32_bsec_read() 110 memcpy(&buf8[j], &val8[skip_bytes], size); in stm32_bsec_read() 113 skip_bytes = 0; in stm32_bsec_read()
|
/third_party/python/Lib/zoneinfo/ |
H A D | _common.py | 40 skip_bytes = ( 49 fobj.seek(skip_bytes, 1) 110 skip_bytes = header.isutcnt + header.isstdcnt + header.leapcnt * 12 111 fobj.seek(skip_bytes, 1)
|
/kernel/linux/linux-5.10/drivers/usb/core/ |
H A D | devices.c | 433 * skip_bytes - the number of bytes to skip before writing anything 438 loff_t *skip_bytes, loff_t *file_offset, in usb_device_dump() 525 if (length > *skip_bytes) { in usb_device_dump() 526 length -= *skip_bytes; in usb_device_dump() 529 if (copy_to_user(*buffer, pages_start + *skip_bytes, length)) { in usb_device_dump() 537 *skip_bytes = 0; in usb_device_dump() 539 *skip_bytes -= length; in usb_device_dump() 546 ret = usb_device_dump(buffer, nbytes, skip_bytes, in usb_device_dump() 562 loff_t skip_bytes = *ppos; in usb_device_read() local 577 ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppo in usb_device_read() 437 usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *skip_bytes, loff_t *file_offset, struct usb_device *usbdev, struct usb_bus *bus, int level, int index, int count) usb_device_dump() argument [all...] |
/kernel/linux/linux-6.6/drivers/usb/core/ |
H A D | devices.c | 386 * skip_bytes - the number of bytes to skip before writing anything 391 loff_t *skip_bytes, loff_t *file_offset, in usb_device_dump() 477 if (length > *skip_bytes) { in usb_device_dump() 478 length -= *skip_bytes; in usb_device_dump() 481 if (copy_to_user(*buffer, pages_start + *skip_bytes, length)) { in usb_device_dump() 489 *skip_bytes = 0; in usb_device_dump() 491 *skip_bytes -= length; in usb_device_dump() 498 ret = usb_device_dump(buffer, nbytes, skip_bytes, in usb_device_dump() 514 loff_t skip_bytes = *ppos; in usb_device_read() local 529 ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppo in usb_device_read() 390 usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *skip_bytes, loff_t *file_offset, struct usb_device *usbdev, struct usb_bus *bus, int level, int index, int count) usb_device_dump() argument [all...] |
/third_party/ffmpeg/tests/ |
H A D | tiny_psnr.c | 133 static int run_psnr(FILE *f[2], int len, int shift, int skip_bytes) in run_psnr() argument 171 fseek(f[0], skip_bytes, SEEK_CUR); in run_psnr() 172 fseek(f[1], skip_bytes, SEEK_CUR); in run_psnr() 270 int skip_bytes = argc < 6 ? 0 : atoi(argv[5]); in main() local 312 int psnr = run_psnr(f, len, shift, skip_bytes); in main()
|
/kernel/linux/linux-5.10/arch/arm/boot/ |
H A D | deflate_xip_data.sh | 58 $DD if="$XIPIMAGE" skip=$data_start iflag=skip_bytes |
|
/kernel/linux/linux-6.6/arch/arm/boot/ |
H A D | deflate_xip_data.sh | 58 $DD if="$XIPIMAGE" skip=$data_start iflag=skip_bytes |
|
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ |
H A D | comedi_test.c | 458 unsigned int skip_bytes, nbytes; in waveform_ao_timer() local 460 skip_bytes = in waveform_ao_timer() 463 nbytes = comedi_buf_read_alloc(s, skip_bytes); in waveform_ao_timer() 466 if (nbytes < skip_bytes) { in waveform_ao_timer()
|
/third_party/python/Lib/ |
H A D | _pyio.py | 2373 skip_bytes = int(self._b2cratio * chars_to_skip) 2375 assert skip_bytes <= len(next_input) 2376 while skip_bytes > 0: 2379 n = len(decoder.decode(next_input[:skip_bytes])) 2388 skip_bytes -= len(b) 2392 skip_bytes -= skip_back 2395 skip_bytes = 0 2399 start_pos = position + skip_bytes 2413 for i in range(skip_bytes, len(next_input)):
|
/kernel/linux/linux-6.6/drivers/comedi/drivers/ |
H A D | comedi_test.c | 470 unsigned int skip_bytes, nbytes; in waveform_ao_timer() local 472 skip_bytes = in waveform_ao_timer() 475 nbytes = comedi_buf_read_alloc(s, skip_bytes); in waveform_ao_timer() 478 if (nbytes < skip_bytes) { in waveform_ao_timer()
|
/third_party/python/Modules/_io/ |
H A D | textio.c | 2625 Py_ssize_t skip_bytes, skip_back; in _io_TextIOWrapper_tell_impl() local 2733 skip_bytes = (Py_ssize_t) (self->b2cratio * chars_to_skip); in _io_TextIOWrapper_tell_impl() 2737 while (skip_bytes > 0) { in _io_TextIOWrapper_tell_impl() 2741 DECODER_DECODE(input, skip_bytes, chars_decoded); in _io_TextIOWrapper_tell_impl() 2751 skip_bytes -= dec_buffer_len; in _io_TextIOWrapper_tell_impl() 2756 skip_bytes -= skip_back; in _io_TextIOWrapper_tell_impl() 2760 if (skip_bytes <= 0) { in _io_TextIOWrapper_tell_impl() 2761 skip_bytes = 0; in _io_TextIOWrapper_tell_impl() 2767 cookie.start_pos += skip_bytes; in _io_TextIOWrapper_tell_impl() 2781 input += skip_bytes; in _io_TextIOWrapper_tell_impl() [all...] |
/third_party/pulseaudio/src/modules/bluetooth/ |
H A D | module-bluez5-device.c | 1582 uint64_t skip_bytes; in thread_func() local 1587 skip_bytes = bytes_to_send - 2 * u->write_block_size; in thread_func() 1588 skip_usec = pa_bytes_to_usec(skip_bytes, &u->encoder_sample_spec); in thread_func() 1592 (unsigned long long) skip_bytes); in thread_func() 1594 while (skip_bytes > 0) { in thread_func() 1597 if (skip_bytes > max_render_size) in thread_func() 1600 bytes_to_render = skip_bytes; in thread_func() 1605 skip_bytes -= bytes_to_render; in thread_func()
|
/kernel/linux/linux-5.10/drivers/target/iscsi/ |
H A D | iscsi_target.c | 3338 int skip_bytes, bool *completed) in iscsit_build_sendtargets_response() 3428 if (skip_bytes && len <= skip_bytes) { in iscsit_build_sendtargets_response() 3429 skip_bytes -= len; in iscsit_build_sendtargets_response() 3434 if (len > skip_bytes) in iscsit_build_sendtargets_response() 3435 skip_bytes = 0; in iscsit_build_sendtargets_response() 3457 if (skip_bytes && len <= skip_bytes) { in iscsit_build_sendtargets_response() 3458 skip_bytes -= len; in iscsit_build_sendtargets_response() 3462 if (len > skip_bytes) in iscsit_build_sendtargets_response() 3336 iscsit_build_sendtargets_response(struct iscsi_cmd *cmd, enum iscsit_transport_type network_transport, int skip_bytes, bool *completed) iscsit_build_sendtargets_response() argument [all...] |
/kernel/linux/linux-6.6/drivers/target/iscsi/ |
H A D | iscsi_target.c | 3379 int skip_bytes, bool *completed) in iscsit_build_sendtargets_response() 3469 if (skip_bytes && len <= skip_bytes) { in iscsit_build_sendtargets_response() 3470 skip_bytes -= len; in iscsit_build_sendtargets_response() 3475 if (len > skip_bytes) in iscsit_build_sendtargets_response() 3476 skip_bytes = 0; in iscsit_build_sendtargets_response() 3498 if (skip_bytes && len <= skip_bytes) { in iscsit_build_sendtargets_response() 3499 skip_bytes -= len; in iscsit_build_sendtargets_response() 3503 if (len > skip_bytes) in iscsit_build_sendtargets_response() 3377 iscsit_build_sendtargets_response(struct iscsit_cmd *cmd, enum iscsit_transport_type network_transport, int skip_bytes, bool *completed) iscsit_build_sendtargets_response() argument [all...] |
/kernel/linux/linux-5.10/drivers/staging/vc04_services/interface/vchiq_arm/ |
H A D | vchiq_arm.c | 2021 int skip_bytes = min_t(int, len, context->offset); in vchiq_dump() local 2023 str += skip_bytes; in vchiq_dump() 2024 len -= skip_bytes; in vchiq_dump() 2025 context->offset -= skip_bytes; in vchiq_dump()
|
/kernel/linux/linux-6.6/drivers/staging/vc04_services/interface/vchiq_arm/ |
H A D | vchiq_arm.c | 1182 int skip_bytes = min_t(int, len, context->offset); in vchiq_dump() local 1184 str += skip_bytes; in vchiq_dump() 1185 len -= skip_bytes; in vchiq_dump() 1186 context->offset -= skip_bytes; in vchiq_dump()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/bnxt_re/ |
H A D | ib_verbs.c | 3153 u32 skip_bytes = 0; in bnxt_re_process_raw_qp_pkt_rx() local 3199 skip_bytes = 4; in bnxt_re_process_raw_qp_pkt_rx() 3203 + skip_bytes; in bnxt_re_process_raw_qp_pkt_rx()
|