Home
last modified time | relevance | path

Searched refs:section_data (Results 1 – 7 of 7) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/
Devergreen_compute.c301 Elf_Data *section_data = NULL; in r600_elf_read() local
309 section_data = elf_getdata(section, section_data); in r600_elf_read()
310 binary->code_size = section_data->d_size; in r600_elf_read()
312 memcpy(binary->code, section_data->d_buf, binary->code_size); in r600_elf_read()
314 section_data = elf_getdata(section, section_data); in r600_elf_read()
315 binary->config_size = section_data->d_size; in r600_elf_read()
317 memcpy(binary->config, section_data->d_buf, binary->config_size); in r600_elf_read()
320 section_data = elf_getdata(section, section_data); in r600_elf_read()
321 binary->disasm_string = strndup(section_data->d_buf, in r600_elf_read()
322 section_data->d_size); in r600_elf_read()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/mpegtsmux/
Dgstbasetsmux.c1662 guint8 *section_data; in handle_scte35_section() local
1855 section_data = g_memdup2 (section->data, section->section_length); in handle_scte35_section()
1856 section_data[4] |= pts_adjust >> 32; in handle_scte35_section()
1857 section_data[5] = pts_adjust >> 24; in handle_scte35_section()
1858 section_data[6] = pts_adjust >> 16; in handle_scte35_section()
1859 section_data[7] = pts_adjust >> 8; in handle_scte35_section()
1860 section_data[8] = pts_adjust; in handle_scte35_section()
1863 crc = section_data + section->section_length - 4; in handle_scte35_section()
1864 GST_WRITE_UINT32_BE (crc, _calc_crc32 (section_data, crc - section_data)); in handle_scte35_section()
1871 gst_mpegts_section_new (mux->scte35_pid, section_data, in handle_scte35_section()
/third_party/libabigail/src/
Dabg-ctf-reader.cc1596 Elf_Data *section_data; in fill_ctf_section() local
1600 section_data = elf_getdata(const_cast<Elf_Scn*>(elf_section), 0); in fill_ctf_section()
1603 ABG_ASSERT (section_data != NULL); in fill_ctf_section()
1606 ctf_section->cts_data = (char *) section_data->d_buf; in fill_ctf_section()
1607 ctf_section->cts_size = section_data->d_size; in fill_ctf_section()
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtspacketizer.c186 if (stream->section_data) { in seen_section_before()
188 return (memcmp (stream->section_data, data_start, to_read) != 0); in seen_section_before()
228 g_free (stream->section_data); in mpegts_packetizer_clear_section()
229 stream->section_data = NULL; in mpegts_packetizer_clear_section()
549 GST_MEMDUMP ("Full section data", stream->section_data, in mpegts_packetizer_parse_section_header()
554 gst_mpegts_section_new (stream->pid, stream->section_data, in mpegts_packetizer_parse_section_header()
556 stream->section_data = NULL; in mpegts_packetizer_parse_section_header()
1063 memcpy (stream->section_data + stream->section_offset, data_start, to_read); in mpegts_packetizer_push_section()
1236 stream->section_data = g_malloc (stream->section_length); in mpegts_packetizer_push_section()
Dmpegtspacketizer.h75 guint8 *section_data; member
/third_party/elfio/elfio/
Delfio_dump.hpp1128 static void section_data( std::ostream& out, const section* sec ) in section_data() function in ELFIO::dump
1175 section_data( out, sec ); in section_datas()
/third_party/gstreamer/gstplugins_bad/
DChangeLog83781 mpegtsdemux: fix section_data leak