| /linux/drivers/usb/host/ |
| H A D | fhci-tds.c | 67 __be32 buf_ptr; member 87 out_be32(&ep->empty_td->buf_ptr, DUMMY_BD_BUFFER); in fhci_push_dummy_bd() 213 out_be32(&td->buf_ptr, 0); in fhci_create_ep() 296 buf = in_be32(&td->buf_ptr); in fhci_td_transaction_confirm() 309 out_be32(&td->buf_ptr, 0); in fhci_td_transaction_confirm() 405 out_be32(&td->buf_ptr, virt_to_phys(pkt->data)); in fhci_host_transaction() 477 in_be32(&td->buf_ptr); in fhci_flush_bds() 484 else if (in_be32(&td->buf_ptr) == DUMMY_BD_BUFFER) in fhci_flush_bds() 485 out_be32(&td->buf_ptr, DUMMY2_BD_BUFFER); in fhci_flush_bds() 499 out_be32(&td->buf_ptr, 0); in fhci_flush_bds() [all …]
|
| /linux/security/integrity/ima/ |
| H A D | ima_template_lib.c | 49 u8 *buf, *buf_ptr; in ima_write_template_field_data() local 69 for (buf_ptr = buf; buf_ptr - buf < datalen; buf_ptr++) in ima_write_template_field_data() 70 if (*buf_ptr == ' ') in ima_write_template_field_data() 71 *buf_ptr = '_'; in ima_write_template_field_data() 84 u8 *buf_ptr = field_data->data; in ima_show_template_data_ascii() local 90 buf_ptr = strrchr(field_data->data, ':'); in ima_show_template_data_ascii() 91 if (buf_ptr != field_data->data) in ima_show_template_data_ascii() 95 buf_ptr in ima_show_template_data_ascii() [all...] |
| /linux/drivers/media/usb/pvrusb2/ |
| H A D | pvrusb2-debugifc.h | 16 char *buf_ptr, unsigned int buf_size); 22 char *buf_ptr,unsigned int buf_size); 26 const char *buf_ptr,unsigned int buf_size);
|
| /linux/drivers/rtc/ |
| H A D | sysfs.c | 156 const char *buf_ptr; in wakealarm_store() local 167 buf_ptr = buf; in wakealarm_store() 168 if (*buf_ptr == '+') { in wakealarm_store() 169 buf_ptr++; in wakealarm_store() 170 if (*buf_ptr == '=') { in wakealarm_store() 171 buf_ptr++; in wakealarm_store() 177 retval = kstrtos64(buf_ptr, 0, &alarm); in wakealarm_store()
|
| /linux/drivers/crypto/cavium/cpt/ |
| H A D | request_manager.h | 52 struct buf_ptr { struct 67 struct buf_ptr in[MAX_BUF_CNT]; argument 68 struct buf_ptr out[MAX_BUF_CNT];
|
| /linux/drivers/scsi/bfa/ |
| H A D | bfad_bsg.h | 242 u64 buf_ptr; member 286 u64 buf_ptr; member 400 u64 buf_ptr; member 521 u64 buf_ptr; member 530 u64 buf_ptr; member 561 u64 buf_ptr; member 665 u64 buf_ptr; member 674 u64 buf_ptr; member
|
| /linux/drivers/acpi/ |
| H A D | pfr_update.c | 473 char *buf_ptr; in pfru_write() local 491 buf_ptr = memremap(phy_addr, buf_info.buf_size, MEMREMAP_WB); in pfru_write() 492 if (!buf_ptr) { in pfru_write() 497 if (!copy_from_iter_full(buf_ptr, len, &iter)) { in pfru_write() 509 if (!applicable_image(buf_ptr, &cap, pfru_dev)) in pfru_write() 513 memunmap(buf_ptr); in pfru_write()
|
| /linux/arch/mips/fw/cfe/ |
| H A D | cfe_api.c | 196 xiocb.plist.xiocb_buffer.buf_ptr = XPTR_FROM_NATIVE(name); in cfe_getdevinfo() 321 xiocb.plist.xiocb_buffer.buf_ptr = XPTR_FROM_NATIVE(buffer); in cfe_ioctl() 341 xiocb.plist.xiocb_buffer.buf_ptr = XPTR_FROM_NATIVE(name); in cfe_open() 366 xiocb.plist.xiocb_buffer.buf_ptr = XPTR_FROM_NATIVE(buffer); in cfe_readblk() 411 xiocb.plist.xiocb_buffer.buf_ptr = XPTR_FROM_NATIVE(buffer); in cfe_writeblk()
|
| H A D | cfe_api_int.h | 47 cfe_xptr_t buf_ptr; /* pointer to a buffer */ member
|
| /linux/drivers/net/ethernet/sfc/siena/ |
| H A D | selftest.h | 44 void efx_siena_loopback_rx_packet(struct efx_nic *efx, const char *buf_ptr,
|
| H A D | selftest.c | 287 const char *buf_ptr, int pkt_len) in efx_siena_loopback_rx_packet() argument 293 BUG_ON(!buf_ptr); in efx_siena_loopback_rx_packet() 301 memcpy(&received.packet, buf_ptr, in efx_siena_loopback_rx_packet() 369 buf_ptr, pkt_len, 0); in efx_siena_loopback_rx_packet()
|
| /linux/drivers/net/ethernet/sfc/ |
| H A D | selftest.h | 44 void efx_loopback_rx_packet(struct efx_nic *efx, const char *buf_ptr,
|
| H A D | selftest.c | 286 const char *buf_ptr, int pkt_len) in efx_loopback_rx_packet() argument 292 BUG_ON(!buf_ptr); in efx_loopback_rx_packet() 300 memcpy(&received.packet, buf_ptr, in efx_loopback_rx_packet() 368 buf_ptr, pkt_len, 0); in efx_loopback_rx_packet()
|
| /linux/drivers/net/ethernet/sfc/falcon/ |
| H A D | selftest.h | 44 void ef4_loopback_rx_packet(struct ef4_nic *efx, const char *buf_ptr,
|
| H A D | selftest.c | 289 const char *buf_ptr, int pkt_len) in ef4_loopback_rx_packet() argument 295 BUG_ON(!buf_ptr); in ef4_loopback_rx_packet() 303 memcpy(&received.packet, buf_ptr, in ef4_loopback_rx_packet() 371 buf_ptr, pkt_len, 0); in ef4_loopback_rx_packet()
|
| /linux/samples/bpf/ |
| H A D | xdp_router_ipv4_user.c | 65 char *buf_ptr; in recv_msg() local 67 buf_ptr = buf; in recv_msg() 69 len = recv(sock, buf_ptr, sizeof(buf) - nll, 0); in recv_msg() 73 nh = (struct nlmsghdr *)buf_ptr; in recv_msg() 77 buf_ptr += len; in recv_msg()
|
| /linux/include/uapi/linux/ |
| H A D | fsverity.h | 94 __u64 buf_ptr; member
|
| H A D | tee.h | 133 __u64 buf_ptr; member
|
| /linux/drivers/hwtracing/coresight/ |
| H A D | coresight-tmc-etf.c | 481 u32 *buf_ptr; in tmc_update_etf_buffer() local 561 buf_ptr = buf->data_pages[cur] + offset; in tmc_update_etf_buffer() 562 *buf_ptr = readl_relaxed(drvdata->base + TMC_RRD); in tmc_update_etf_buffer() 565 *buf_ptr = *barrier; in tmc_update_etf_buffer()
|
| /linux/arch/mips/include/asm/octeon/ |
| H A D | cvmx-pko-defs.h | 731 uint64_t buf_ptr:33; member 737 uint64_t buf_ptr:33; 748 uint64_t buf_ptr:33; member 754 uint64_t buf_ptr:33; 782 uint64_t buf_ptr:33; member 788 uint64_t buf_ptr:33; 1018 uint64_t buf_ptr:31; member 1030 uint64_t buf_ptr:31; 1172 uint64_t buf_ptr:36; member 1182 uint64_t buf_ptr:36;
|
| /linux/drivers/net/wireless/ath/ath12k/ |
| H A D | wmi.c | 3148 u8 *buf_ptr; in ath12k_wmi_set_bios_sar_cmd() local 3170 buf_ptr = skb->data + sizeof(*cmd); in ath12k_wmi_set_bios_sar_cmd() 3171 tlv = (struct wmi_tlv *)buf_ptr; in ath12k_wmi_set_bios_sar_cmd() 3174 buf_ptr += TLV_HDR_SIZE; in ath12k_wmi_set_bios_sar_cmd() 3175 memcpy(buf_ptr, psar_value, ATH12K_ACPI_BIOS_SAR_TABLE_LEN); in ath12k_wmi_set_bios_sar_cmd() 3177 buf_ptr += sar_table_len_aligned; in ath12k_wmi_set_bios_sar_cmd() 3178 tlv = (struct wmi_tlv *)buf_ptr; in ath12k_wmi_set_bios_sar_cmd() 3181 buf_ptr += TLV_HDR_SIZE; in ath12k_wmi_set_bios_sar_cmd() 3182 memcpy(buf_ptr, pdbs_value, ATH12K_ACPI_BIOS_SAR_DBS_BACKOFF_LEN); in ath12k_wmi_set_bios_sar_cmd() 3204 u8 *buf_ptr; in ath12k_wmi_set_bios_geo_cmd() local [all …]
|
| /linux/drivers/tee/optee/ |
| H A D | smc_abi.c | 104 p->u.memref.shm_offs = mp->u.tmem.buf_ptr - pa; in from_msg_param_tmp_mem() 193 mp->u.tmem.buf_ptr = 0; in to_msg_param_tmp_mem() 201 mp->u.tmem.buf_ptr = pa; in to_msg_param_tmp_mem() 508 msg_arg->params->u.tmem.buf_ptr = virt_to_phys(pages_list) | in optee_shm_register() 744 arg->params[0].u.tmem.buf_ptr = virt_to_phys(pages_list) | in handle_rpc_func_cmd_shm_alloc() 759 arg->params[0].u.tmem.buf_ptr = pa; in handle_rpc_func_cmd_shm_alloc() 986 msg_arg->params[1].u.tmem.buf_ptr = protmem->paddr; in optee_smc_lend_protmem()
|
| /linux/drivers/firewire/ |
| H A D | net.c | 756 __be32 *buf_ptr; in fwnet_receive_broadcast() local 769 buf_ptr = dev->broadcast_rcv_buffer_ptrs[dev->broadcast_rcv_next_ptr++]; in fwnet_receive_broadcast() 776 gasp_specifier_id(buf_ptr) == IANA_SPECIFIER_ID && in fwnet_receive_broadcast() 777 (gasp_version(buf_ptr) == RFC2734_SW_VERSION in fwnet_receive_broadcast() 779 || gasp_version(buf_ptr) == RFC3146_SW_VERSION in fwnet_receive_broadcast() 782 fwnet_incoming_packet(dev, buf_ptr + 2, in fwnet_receive_broadcast() 784 gasp_source_id(buf_ptr), in fwnet_receive_broadcast()
|
| /linux/drivers/iio/pressure/ |
| H A D | icp10100.c | 126 uint8_t *buf_ptr = (uint8_t *)buf; in icp10100_send_cmd() local 186 *buf_ptr++ = ptr[0]; in icp10100_send_cmd() 187 *buf_ptr++ = ptr[1]; in icp10100_send_cmd()
|
| /linux/drivers/net/ethernet/marvell/ |
| H A D | pxa168_eth.c | 179 u32 buf_ptr; /* Descriptor buffer pointer */ member 187 u32 buf_ptr; /* pointer to buffer for this descriptor */ member 323 p_used_rx_desc->buf_ptr = dma_map_single(&pep->pdev->dev, in rxq_refill() 724 addr = desc->buf_ptr; in txq_reclaim() 797 dma_unmap_single(&pep->pdev->dev, rx_desc->buf_ptr, in rxq_process() 1264 desc->buf_ptr = dma_map_single(&pep->pdev->dev, skb->data, length, in pxa168_eth_start_xmit()
|