Home
last modified time | relevance | path

Searched refs:odata (Results 1 – 5 of 5) sorted by relevance

/linux-4.1.27/drivers/input/joystick/
Dxpad.c335 unsigned char *odata; /* output data */ member
734 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN, in xpad_init_output()
736 if (!xpad->odata) { in xpad_init_output()
755 xpad->odata, XPAD_PKT_LEN, in xpad_init_output()
762 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma); in xpad_init_output()
777 xpad->odata, xpad->odata_dma); in xpad_deinit_output()
793 xpad->odata[0] = 0x00; in xpad_play_effect()
794 xpad->odata[1] = 0x06; in xpad_play_effect()
795 xpad->odata[2] = 0x00; in xpad_play_effect()
796 xpad->odata[3] = strong / 256; /* left actuator */ in xpad_play_effect()
[all …]
/linux-4.1.27/crypto/
Dccm.c40 u8 odata[16]; member
168 u8 *odata = pctx->odata; in compute_mac() local
178 crypto_xor(odata, idata, bs); in compute_mac()
179 crypto_cipher_encrypt_one(tfm, odata, odata); in compute_mac()
187 crypto_xor(odata, data, bs); in compute_mac()
188 crypto_cipher_encrypt_one(tfm, odata, odata); in compute_mac()
234 u8 *odata = pctx->odata; in get_data_to_compute() local
239 crypto_xor(odata, idata, 16); in get_data_to_compute()
240 crypto_cipher_encrypt_one(tfm, odata, odata); in get_data_to_compute()
253 u8 *odata = pctx->odata; in crypto_ccm_auth() local
[all …]
/linux-4.1.27/drivers/net/wireless/ath/ar5523/
Dar5523.c75 if (cmd->odata) { in ar5523_read_reply()
83 memcpy(cmd->odata, &rp[1], olen); in ar5523_read_reply()
156 memcpy(cmd->odata, hdr + 1, sizeof(u32)); in ar5523_cmd_rx_cb()
241 int ilen, void *odata, int olen, int flags) in ar5523_cmd() argument
260 cmd->odata = odata; in ar5523_cmd()
278 cmd->odata = NULL; in ar5523_cmd()
294 int ilen, void *odata, int olen, int flags) in ar5523_cmd_read() argument
297 return ar5523_cmd(ar, code, idata, ilen, odata, olen, flags); in ar5523_cmd_read()
335 static int ar5523_get_status(struct ar5523 *ar, u32 which, void *odata, in ar5523_get_status() argument
343 &which_be, sizeof(which_be), odata, olen, AR5523_CMD_FLAG_MAGIC); in ar5523_get_status()
Dar5523.h64 void *odata; member
/linux-4.1.27/fs/
Dcompat_ioctl.c478 struct ppp_option_data __user *odata; in ppp_scompress() local
482 odata = compat_alloc_user_space(sizeof(*odata)); in ppp_scompress()
488 if (put_user(datap, &odata->ptr)) in ppp_scompress()
491 if (copy_in_user(&odata->length, &odata32->length, in ppp_scompress()
495 return sys_ioctl(fd, PPPIOCSCOMPRESS, (unsigned long) odata); in ppp_scompress()