Searched refs:temp_buf (Results 1 - 12 of 12) sorted by relevance

/linux-master/drivers/hid/
H A Dhid-roccat-arvo.c33 struct arvo_mode_key temp_buf; local
38 &temp_buf, sizeof(struct arvo_mode_key));
43 return sysfs_emit(buf, "%d\n", temp_buf.state);
53 struct arvo_mode_key temp_buf; local
61 temp_buf.command = ARVO_COMMAND_MODE_KEY;
62 temp_buf.state = state;
66 &temp_buf, sizeof(struct arvo_mode_key));
83 struct arvo_key_mask temp_buf; local
88 &temp_buf, sizeof(struct arvo_key_mask));
93 return sysfs_emit(buf, "%d\n", temp_buf
103 struct arvo_key_mask temp_buf; local
129 struct arvo_actual_profile temp_buf; local
157 struct arvo_actual_profile temp_buf; local
[all...]
/linux-master/drivers/char/tpm/
H A Dtpm_ftpm_tee.c77 u8 *temp_buf; local
111 temp_buf = tee_shm_get_va(shm, 0);
112 if (IS_ERR(temp_buf)) {
115 return PTR_ERR(temp_buf);
117 memset(temp_buf, 0, (MAX_COMMAND_SIZE + MAX_RESPONSE_SIZE));
118 memcpy(temp_buf, buf, len);
137 temp_buf = tee_shm_get_va(shm, command_params[1].u.memref.shm_offs);
138 if (IS_ERR(temp_buf)) {
141 return PTR_ERR(temp_buf);
144 resp_header = (struct tpm_header *)temp_buf;
[all...]
/linux-master/arch/powerpc/platforms/pseries/
H A Dpapr_platform_attributes.c98 char *temp_buf; local
103 temp_buf = krealloc(buf, esi_buf_size, GFP_KERNEL);
104 if (temp_buf) {
105 buf = temp_buf;
/linux-master/include/linux/platform_data/
H A Dcros_ec_sensorhub.h76 * @temp_buf: Temporary buffer used when updating the filter.
88 s64 temp_buf[CROS_EC_SENSORHUB_TS_HISTORY_SIZE]; member in struct:cros_ec_sensors_ts_filter_state
/linux-master/drivers/net/wireless/rsi/
H A Drsi_91x_usb.c510 u8 temp_buf[256]; local
517 memcpy(temp_buf, ta_firmware + cur_indx, block_size);
519 (u8 *)(temp_buf),
529 memset(temp_buf, 0, block_size);
530 memcpy(temp_buf, ta_firmware + cur_indx,
534 (u8 *)temp_buf,
H A Drsi_91x_sdio.c564 u8 *temp_buf; local
573 temp_buf = kmalloc(block_size, GFP_KERNEL);
574 if (!temp_buf)
585 memcpy(temp_buf, ta_firmware + offset, block_size);
590 temp_buf, block_size);
614 memset(temp_buf, 0, block_size);
615 memcpy(temp_buf, ta_firmware + offset,
621 temp_buf,
632 kfree(temp_buf);
/linux-master/drivers/rtc/
H A Drtc-ds3232.c289 u8 temp_buf[2]; local
293 ret = regmap_bulk_read(ds3232->regmap, DS3232_REG_TEMPERATURE, temp_buf,
294 sizeof(temp_buf));
302 temp = (temp_buf[0] << 8) | temp_buf[1];
H A Drtc-ds1307.c1334 u8 temp_buf[2]; local
1339 temp_buf, sizeof(temp_buf));
1346 temp = (temp_buf[0] << 8) | temp_buf[1];
/linux-master/arch/s390/kernel/
H A Ddebug.c49 char temp_buf[2048]; /* buffer for output */ member in struct:file_private_info
396 len += view->prolog_proc(id_snap, view, p_info->temp_buf);
408 act_entry, p_info->temp_buf + len);
410 len += view->format_proc(id_snap, view, p_info->temp_buf + len,
481 if (copy_to_user(user_buf + count, p_info->temp_buf
/linux-master/drivers/platform/chrome/
H A Dcros_ec_sensorhub_ring.c260 s64 *m_history_copy = state->temp_buf;
261 s64 *error = state->temp_buf;
/linux-master/drivers/vfio/pci/mlx5/
H A Dcmd.c507 struct mlx5_vhca_data_buffer *buf, *temp_buf; local
517 list_for_each_entry_safe(buf, temp_buf, &migf->avail_list, buf_elm) {
537 while ((temp_buf = list_first_entry_or_null(&free_list,
539 list_del(&temp_buf->buf_elm);
540 mlx5vf_free_data_buffer(temp_buf);
/linux-master/tools/perf/util/intel-pt-decoder/
H A Dintel-pt-decoder.c240 unsigned char temp_buf[INTEL_PT_PKT_MAX_SZ]; member in struct:intel_pt_decoder
680 unsigned char *buf = decoder->temp_buf;
3862 memcpy(decoder->temp_buf, INTEL_PT_PSB_STR, INTEL_PT_PSB_LEN);
3863 decoder->buf = decoder->temp_buf;

Completed in 189 milliseconds