Searched refs:odata (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/drivers/input/joystick/ |
D | xpad.c | 332 unsigned char *odata; /* output data */ member 724 xpad->odata = usb_alloc_coherent(xpad->udev, XPAD_PKT_LEN, in xpad_init_output() 726 if (!xpad->odata) { in xpad_init_output() 745 xpad->odata, XPAD_PKT_LEN, in xpad_init_output() 752 fail2: usb_free_coherent(xpad->udev, XPAD_PKT_LEN, xpad->odata, xpad->odata_dma); in xpad_init_output() 767 xpad->odata, xpad->odata_dma); in xpad_deinit_output() 777 xpad->odata[0] = 0x08; in xpad_inquiry_pad_presence() 778 xpad->odata[1] = 0x00; in xpad_inquiry_pad_presence() 779 xpad->odata[2] = 0x0F; in xpad_inquiry_pad_presence() 780 xpad->odata[3] = 0xC0; in xpad_inquiry_pad_presence() [all …]
|
/linux-4.4.14/crypto/ |
D | ccm.c | 46 u8 odata[16]; member 174 u8 *odata = pctx->odata; in compute_mac() local 184 crypto_xor(odata, idata, bs); in compute_mac() 185 crypto_cipher_encrypt_one(tfm, odata, odata); in compute_mac() 193 crypto_xor(odata, data, bs); in compute_mac() 194 crypto_cipher_encrypt_one(tfm, odata, odata); in compute_mac() 240 u8 *odata = pctx->odata; in get_data_to_compute() local 245 crypto_xor(odata, idata, 16); in get_data_to_compute() 246 crypto_cipher_encrypt_one(tfm, odata, odata); in get_data_to_compute() 259 u8 *odata = pctx->odata; in crypto_ccm_auth() local [all …]
|
/linux-4.4.14/drivers/net/wireless/ath/ar5523/ |
D | ar5523.c | 75 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()
|
D | ar5523.h | 64 void *odata; member
|
/linux-4.4.14/fs/ |
D | compat_ioctl.c | 478 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()
|