/linux-6.3-rc2/drivers/net/wireless/ath/wil6210/ |
A D | fw_inc.c | 604 size_t s, hdr_sz; in wil_fw_process() local 609 hdr_sz = le32_to_cpu(hdr->size); in wil_fw_process() 610 s = sizeof(*hdr) + hdr_sz; in wil_fw_process() 613 if (hdr_sz % 4) { in wil_fw_process() 615 hdr_sz); in wil_fw_process() 619 &hdr[1], hdr_sz, load); in wil_fw_process() 694 size_t s, hdr_sz = 0; in wil_brd_process() local 722 hdr_sz = le32_to_cpu(hdr->size); in wil_brd_process() 723 s = sizeof(*hdr) + hdr_sz; in wil_brd_process() 729 if (hdr_sz % 4) { in wil_brd_process() [all …]
|
/linux-6.3-rc2/drivers/media/platform/mediatek/vcodec/venc/ |
A D | venc_h264_if.c | 664 int hdr_sz; in h264_enc_encode() local 687 hdr_sz = bs_size_hdr; in h264_enc_encode() 688 hdr_sz_ext = (hdr_sz & (bs_alignment - 1)); in h264_enc_encode() 693 h264_encode_filler(inst, bs_buf->va + hdr_sz, in h264_enc_encode() 697 tmp_bs_buf.va = bs_buf->va + hdr_sz + filler_sz; in h264_enc_encode() 698 tmp_bs_buf.dma_addr = bs_buf->dma_addr + hdr_sz + filler_sz; in h264_enc_encode() 699 tmp_bs_buf.size = bs_buf->size - (hdr_sz + filler_sz); in h264_enc_encode() 706 result->bs_size = hdr_sz + filler_sz + bs_size_frm; in h264_enc_encode() 709 hdr_sz, filler_sz, bs_size_frm, in h264_enc_encode()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | trace-event-info.c | 43 static int record_file(const char *file, ssize_t hdr_sz) in record_file() argument 58 if (hdr_sz) { in record_file() 59 if (write(output_fd, &size, hdr_sz) != hdr_sz) in record_file() 75 sizep += sizeof(u64) - hdr_sz; in record_file() 77 if (hdr_sz && pwrite(output_fd, sizep, hdr_sz, hdr_pos) < 0) { in record_file()
|
A D | session.c | 1771 size_t hdr_sz, rest; in perf_session__peek_event() local 1784 hdr_sz = sizeof(struct perf_event_header); in perf_session__peek_event() 1786 if (buf_sz < hdr_sz) in perf_session__peek_event() 1790 readn(fd, buf, hdr_sz) != (ssize_t)hdr_sz) in perf_session__peek_event() 1798 if (event->header.size < hdr_sz || event->header.size > buf_sz) in perf_session__peek_event() 1801 buf += hdr_sz; in perf_session__peek_event() 1802 rest = event->header.size - hdr_sz; in perf_session__peek_event()
|
A D | header.c | 3805 static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph) in try_all_file_abis() argument 3813 if (hdr_sz != ref_size) { in try_all_file_abis() 3814 attr_size = bswap_64(hdr_sz); in try_all_file_abis() 3843 static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph) in try_all_pipe_abis() argument 3849 if (hdr_sz != attr_pipe_abi_sizes[i]) { in try_all_pipe_abis() 3850 attr_size = bswap_64(hdr_sz); in try_all_pipe_abis() 3851 if (attr_size != hdr_sz) in try_all_pipe_abis() 3872 static int check_magic_endian(u64 magic, uint64_t hdr_sz, in check_magic_endian() argument 3883 return try_all_pipe_abis(hdr_sz, ph); in check_magic_endian() 3885 return try_all_file_abis(hdr_sz, ph); in check_magic_endian()
|
/linux-6.3-rc2/drivers/virt/coco/sev-guest/ |
A D | sev-guest.h | 49 u16 hdr_sz; member
|
A D | sev-guest.c | 304 hdr->hdr_sz = sizeof(*hdr); in enc_payload()
|
/linux-6.3-rc2/net/tipc/ |
A D | msg.c | 98 uint hdr_sz, uint data_sz, u32 dnode, in tipc_msg_create() argument 104 buf = tipc_buf_acquire(hdr_sz + data_sz, GFP_ATOMIC); in tipc_msg_create() 109 tipc_msg_init(onode, msg, user, type, hdr_sz, dnode); in tipc_msg_create() 110 msg_set_size(msg, hdr_sz + data_sz); in tipc_msg_create()
|
A D | msg.h | 1162 struct sk_buff *tipc_msg_create(uint user, uint type, uint hdr_sz,
|
/linux-6.3-rc2/drivers/net/wireless/intel/iwlwifi/mei/ |
A D | main.c | 441 size_t hdr_sz; in iwl_mei_add_data_to_ring() local 478 hdr_sz = cb_tx ? sizeof(struct iwl_sap_cb_data) : in iwl_mei_add_data_to_ring() 480 tx_sz = skb->len + hdr_sz; in iwl_mei_add_data_to_ring() 497 if (skb_headroom(skb) < hdr_sz) { in iwl_mei_add_data_to_ring()
|
/linux-6.3-rc2/tools/perf/ |
A D | builtin-inject.c | 1368 size_t hdr_sz = sizeof(*hdr); in guest_session__fetch() local 1371 ret = readn(gs->tmp_fd, buf, hdr_sz); in guest_session__fetch() 1381 buf += hdr_sz; in guest_session__fetch() 1383 ret = readn(gs->tmp_fd, buf, hdr->size - hdr_sz); in guest_session__fetch()
|
/linux-6.3-rc2/drivers/net/ethernet/marvell/mvpp2/ |
A D | mvpp2_main.c | 4217 int hdr_sz) in mvpp2_tso_put_hdr() argument 4225 mvpp2_txdesc_size_set(port, tx_desc, hdr_sz); in mvpp2_tso_put_hdr() 4281 int hdr_sz, i, len, descs = 0; in mvpp2_tx_tso() local 4290 hdr_sz = tso_start(skb, &tso); in mvpp2_tx_tso() 4292 len = skb->len - hdr_sz; in mvpp2_tx_tso() 4302 mvpp2_tso_put_hdr(skb, dev, txq, aggr_txq, txq_pcpu, hdr_sz); in mvpp2_tx_tso()
|
/linux-6.3-rc2/drivers/net/ethernet/marvell/octeontx2/af/ |
A D | rvu_npc.c | 1526 size_t hdr_sz = sizeof(struct npc_kpu_profile_fwdata), offset = 0; in npc_apply_custom_kpu() local 1534 if (rvu->kpu_fwdata_sz < hdr_sz) { in npc_apply_custom_kpu() 1588 if (rvu->kpu_fwdata_sz < hdr_sz + offset) { in npc_apply_custom_kpu()
|