/third_party/rust/crates/nix/test/ |
D | test_sendfile.rs | 68 let body_offset = 1; in test_sendfile_freebsd() localVariable 88 body_offset as off_t, in test_sendfile_freebsd() 100 + &body[body_offset..] in test_sendfile_freebsd() 119 let body_offset = 1; in test_sendfile_dragonfly() localVariable 139 body_offset as off_t, in test_sendfile_dragonfly() 149 + &body[body_offset..] in test_sendfile_dragonfly() 168 let body_offset = 1; in test_sendfile_darwin() localVariable 188 body_offset as off_t, in test_sendfile_darwin() 198 + &body[body_offset..] in test_sendfile_darwin()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspconnection.c | 116 guint body_offset; /* into body_data or the buffer */ member 4046 if (msg->body_data && msg->body_offset < msg->body_data_size) { in gst_rtsp_source_dispatch_write() 4057 if (offset + mem->size <= msg->body_offset) { in gst_rtsp_source_dispatch_write() 4088 if (msg->body_offset < msg->body_data_size) { in gst_rtsp_source_dispatch_write() 4089 vectors[j].buffer = msg->body_data + msg->body_offset; in gst_rtsp_source_dispatch_write() 4090 vectors[j].size = msg->body_data_size - msg->body_offset; in gst_rtsp_source_dispatch_write() 4103 if (offset + mem->size <= msg->body_offset) { in gst_rtsp_source_dispatch_write() 4108 if (offset < msg->body_offset) in gst_rtsp_source_dispatch_write() 4109 off = msg->body_offset - offset; in gst_rtsp_source_dispatch_write() 4176 if (bytes_written + msg->body_offset >= body_size) { in gst_rtsp_source_dispatch_write() [all …]
|
/third_party/libcoap/include/coap3/ |
D | coap_pdu_internal.h | 154 size_t body_offset; /**< Holds body data offset */ member
|
/third_party/ffmpeg/libavformat/ |
D | mxfenc.c | 413 uint64_t body_offset; member 903 avio_wb64(pb, mxf->body_offset / mxf->edit_unit_byte_count); in mxf_write_common_fields() 1439 avio_wb64(pb, mxf->body_offset / mxf->edit_unit_byte_count); in mxf_write_generic_sound_common() 1962 avio_wb64(pb, mxf->body_offset); in mxf_write_partition() 2828 klv_encode_ber9_length(pb, mxf->body_offset); in mxf_write_opatom_body_partition() 2850 mxf->index_entries[mxf->edit_units_count].offset = mxf->body_offset; in mxf_write_opatom_packet() 2856 mxf->body_offset += pkt->size; in mxf_write_opatom_packet() 2975 mxf->index_entries[mxf->edit_units_count].offset = mxf->body_offset; in mxf_write_packet() 2978 mxf->body_offset += KAG_SIZE; // size of system element in mxf_write_packet() 2987 mxf->body_offset - mxf->index_entries[mxf->edit_units_count-1].offset; in mxf_write_packet() [all …]
|
D | mxfdec.c | 105 int64_t body_offset; member 741 partition->body_offset = avio_rb64(pb); in mxf_read_partition_pack() 1616 if (m < b && mxf->partitions[m].body_offset <= offset) in mxf_absolute_bodysid_offset() 1625 … (last_p && (!last_p->essence_length || last_p->essence_length > (offset - last_p->body_offset))) { in mxf_absolute_bodysid_offset() 1626 *offset_out = last_p->essence_offset + (offset - last_p->body_offset); in mxf_absolute_bodysid_offset()
|
/third_party/gstreamer/gstplugins_bad/gst/mxf/ |
D | mxfmux.c | 1123 mux->partition.body_offset = 0; in gst_mxf_mux_init_partition_pack() 1401 mux->partition.body_offset; in gst_mxf_mux_handle_buffer() 1421 mux->partition.body_offset += gst_buffer_get_size (outbuf); in gst_mxf_mux_handle_buffer() 1451 mux->partition.body_offset = 0; in gst_mxf_mux_write_body_partition() 1604 mux->partition.body_offset = 0; in gst_mxf_mux_handle_eos() 1648 mux->partition.body_offset = 0; in gst_mxf_mux_handle_eos() 1668 mux->partition.body_offset = 0; in gst_mxf_mux_handle_eos()
|
D | mxftypes.h | 120 guint64 body_offset; member
|
D | mxfdemux.c | 894 demux->current_partition->partition.body_offset == 0) in gst_mxf_demux_update_essence_tracks() 2022 if (partition->partition.body_offset > stream_offset) in get_partition_for_stream_offset() 2030 && stream_offset < offset_partition->partition.body_offset) in get_partition_for_stream_offset() 2036 offset_partition->partition.body_offset); in get_partition_for_stream_offset() 2045 stream_offset - offset_partition->partition.body_offset; in get_partition_for_stream_offset() 2049 next_partition->partition.body_offset); in get_partition_for_stream_offset() 2390 offset_partition->partition.body_offset); in find_edit_entry() 2478 partition->essence_container_offset, partition->partition.body_offset); in find_entry_for_offset() 2481 partition->essence_container_offset + partition->partition.body_offset; in find_entry_for_offset() 4153 partition->partition.body_offset); [all …]
|
D | mxftypes.c | 857 pack->body_offset = GST_READ_UINT64_BE (data); in mxf_partition_pack_parse() 866 pack->body_offset); in mxf_partition_pack_parse() 969 GST_WRITE_UINT64_BE (data, pack->body_offset); in mxf_partition_pack_to_buffer()
|
/third_party/nghttp2/src/ |
D | HttpServer.h | 148 int64_t body_offset; member
|
D | HttpServer.cc | 460 body_offset(0), 1101 auto nread = std::min(stream->body_length - stream->body_offset, in file_read_callback() 1106 if (nread == 0 || stream->body_length == stream->body_offset + nread) { in file_read_callback() 1666 while ((nread = pread(fd, p, length, stream->body_offset)) == -1 && in send_data_callback() 1677 stream->body_offset += nread; in send_data_callback()
|
/third_party/libcoap/src/ |
D | coap_block.c | 2596 pdu->body_offset = 0; in coap_handle_request_put_block() 2663 pdu->body_offset = offset; in coap_handle_request_put_block() 2824 pdu->body_offset = 0; in coap_handle_request_put_block() 2832 pdu->body_offset = offset; in coap_handle_request_put_block() 3381 rcvd->body_offset = 0; in coap_handle_response_get_block() 3639 rcvd->body_offset = saved_offset; in coap_handle_response_get_block() 3667 rcvd->body_offset = 0; in coap_handle_response_get_block() 3670 rcvd->body_offset = saved_offset; in coap_handle_response_get_block() 3790 rcvd->body_offset = block.num*chunk; in coap_handle_response_get_block()
|
D | coap_pdu.c | 61 pdu->body_offset = 0; in coap_pdu_clear() 811 *offset = pdu->body_offset; in coap_get_data_large()
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_cs.c | 505 cfg->afbc.body_offset = surf.afbc.body - surf.afbc.header; in pan_prepare_rt()
|