Searched refs:buf_pos (Results 1 – 7 of 7) sorted by relevance
/linux/drivers/base/regmap/ |
H A D | regmap-debugfs.c | 219 size_t buf_pos = 0; in regmap_read_debugfs() local 247 if (buf_pos + map->debugfs_tot_len > count) in regmap_read_debugfs() 251 snprintf(buf + buf_pos, count - buf_pos, "%.*x: ", in regmap_read_debugfs() 253 buf_pos += map->debugfs_reg_len + 2; in regmap_read_debugfs() 258 snprintf(buf + buf_pos, count - buf_pos, in regmap_read_debugfs() 261 memset(buf + buf_pos, 'X', in regmap_read_debugfs() 263 buf_pos += 2 * map->format.val_bytes; in regmap_read_debugfs() 265 buf[buf_pos++] = '\n'; in regmap_read_debugfs() 270 ret = buf_pos; in regmap_read_debugfs() 272 if (copy_to_user(user_buf, buf, buf_pos)) { in regmap_read_debugfs() [all …]
|
/linux/drivers/gpu/drm/amd/display/modules/hdcp/ |
H A D | hdcp_log.c | 40 uint32_t buf_pos = 0; in mod_hdcp_dump_binary_message() local 46 buf[buf_pos++] = '\n'; in mod_hdcp_dump_binary_message() 47 sprintf(&buf[buf_pos], "%02X ", msg[i]); in mod_hdcp_dump_binary_message() 48 buf_pos += byte_size; in mod_hdcp_dump_binary_message() 50 buf[buf_pos++] = '\0'; in mod_hdcp_dump_binary_message()
|
/linux/drivers/media/pci/mantis/ |
H A D | mantis_dma.c | 140 u32 buf_pos = 0; in mantis_risc_program() local 161 RISC_INSTR(risc_pos, mantis->buf_dma + buf_pos); in mantis_risc_program() 162 buf_pos += MANTIS_DMA_TR_BYTES; in mantis_risc_program()
|
/linux/drivers/media/pci/bt8xx/ |
H A D | bt878.c | 145 u32 buf_pos = 0; in bt878_risc_program() local 156 if (!(buf_pos % bt->block_bytes)) in bt878_risc_program() 159 RISC_STATUS(((buf_pos / in bt878_risc_program() 168 RISC_INSTR(bt->buf_dma + buf_pos); in bt878_risc_program() 169 buf_pos += bt->line_bytes; in bt878_risc_program()
|
/linux/drivers/crypto/ |
H A D | hifn_795x.c | 1036 u8 *buf_pos = buf; in hifn_setup_base_command() local 1038 base_cmd = (struct hifn_base_command *)buf_pos; in hifn_setup_base_command() 1060 u8 *buf_pos = buf; in hifn_setup_crypto_command() local 1063 cry_cmd = (struct hifn_crypt_command *)buf_pos; in hifn_setup_crypto_command() 1073 buf_pos += sizeof(struct hifn_crypt_command); in hifn_setup_crypto_command() 1082 memcpy(buf_pos, key, keylen); in hifn_setup_crypto_command() 1083 buf_pos += keylen; in hifn_setup_crypto_command() 1086 memcpy(buf_pos, iv, ivsize); in hifn_setup_crypto_command() 1087 buf_pos += ivsize; in hifn_setup_crypto_command() 1090 cmd_len = buf_pos - buf; in hifn_setup_crypto_command() [all …]
|
/linux/drivers/net/wireless/ath/ath11k/ |
H A D | testmode.c | 103 u8 const *buf_pos; in ath11k_tm_process_event() local 132 buf_pos = ftm_msg->data; in ath11k_tm_process_event() 150 memcpy(&ab->testmode.eventdata[data_pos], buf_pos, datalen); in ath11k_tm_process_event()
|
/linux/sound/drivers/ |
H A D | aloop.c | 145 unsigned int buf_pos; /* position in buffer */ member 497 dpcm->buf_pos = 0; in loopback_prepare() 528 unsigned int dst_off = dpcm->buf_pos; in clear_capture_buf() 573 unsigned int src_off = play->buf_pos; in copy_play_buf() 574 unsigned int dst_off = capt->buf_pos; in copy_play_buf() 584 appl_ptr1 += play->buf_pos / play->pcm_salign; in copy_play_buf() 640 dpcm->buf_pos += delta; in bytepos_finish() 641 dpcm->buf_pos %= dpcm->pcm_buffer_size; in bytepos_finish() 915 pos = dpcm->buf_pos; in loopback_pointer() 1698 snd_iprintf(buffer, " buffer_pos:\t\t%u\n", dpcm->buf_pos); in print_dpcm_info()
|