/linux-4.4.14/drivers/crypto/nx/ |
D | nx-842-powernv.c | 170 static int wait_for_csb(struct nx842_workmem *wmem, in wait_for_csb() argument 173 ktime_t start = wmem->start, now = ktime_get(); in wait_for_csb() 393 struct nx842_workmem *wmem; in nx842_powernv_function() local 399 wmem = PTR_ALIGN(workmem, WORKMEM_ALIGN); in nx842_powernv_function() 409 crb = &wmem->crb; in nx842_powernv_function() 416 ret = setup_ddl(&crb->source, wmem->ddl_in, in nx842_powernv_function() 420 ret = setup_ddl(&crb->target, wmem->ddl_out, in nx842_powernv_function() 436 wmem->start = ktime_get(); in nx842_powernv_function() 447 ret = wait_for_csb(wmem, csb); in nx842_powernv_function() 491 void *wmem) in nx842_powernv_compress() argument [all …]
|
D | nx-842.c | 119 ctx->wmem = kmalloc(driver->workmem_size, GFP_KERNEL); in nx842_crypto_init() 122 if (!ctx->wmem || !ctx->sbounce || !ctx->dbounce) { in nx842_crypto_init() 123 kfree(ctx->wmem); in nx842_crypto_init() 137 kfree(ctx->wmem); in nx842_crypto_exit() 228 ret = ctx->driver->compress(src, slen, dst, &dlen, ctx->wmem); in compress() 406 ret = ctx->driver->decompress(src, slen, dst, &dlen, ctx->wmem); in decompress()
|
D | nx-842.h | 167 u8 *wmem; member
|
D | nx-842-pseries.c | 292 void *wmem) in nx842_pseries_compress() argument 326 workmem = PTR_ALIGN(wmem, WORKMEM_ALIGN); in nx842_pseries_compress() 423 void *wmem) in nx842_pseries_decompress() argument 457 workmem = PTR_ALIGN(wmem, WORKMEM_ALIGN); in nx842_pseries_decompress()
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | usb_ops.h | 34 u32 cnt, u8 *wmem); 36 u32 cnt, u8 *wmem);
|
D | usb_ops_linux.c | 169 void r8712_usb_write_mem(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *wmem) in r8712_usb_write_mem() argument 187 wmem, cnt, usb_write_mem_complete, in r8712_usb_write_mem() 397 u32 r8712_usb_write_port(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *wmem) in r8712_usb_write_port() argument 407 struct xmit_frame *pxmitframe = (struct xmit_frame *)wmem; in r8712_usb_write_port()
|
/linux-4.4.14/crypto/ |
D | 842.c | 36 char wmem[SW842_MEM_COMPRESS]; /* working memory for compress */ member 45 return sw842_compress(src, slen, dst, dlen, ctx->wmem); in crypto842_compress()
|
/linux-4.4.14/drivers/hid/ |
D | hid-wiimote-core.c | 366 const __u8 *wmem, __u8 size) in wiimote_cmd_write() argument 373 wiiproto_req_wreg(wdata, offset, wmem, size); in wiimote_cmd_write() 416 __u8 wmem; in wiimote_cmd_init_ext() local 420 wmem = 0x55; in wiimote_cmd_init_ext() 421 ret = wiimote_cmd_write(wdata, 0xa400f0, &wmem, sizeof(wmem)); in wiimote_cmd_init_ext() 426 wmem = 0x0; in wiimote_cmd_init_ext() 427 ret = wiimote_cmd_write(wdata, 0xa400fb, &wmem, sizeof(wmem)); in wiimote_cmd_init_ext() 465 __u8 wmem; in wiimote_cmd_init_mp() local 469 wmem = 0x55; in wiimote_cmd_init_mp() 470 ret = wiimote_cmd_write(wdata, 0xa600f0, &wmem, sizeof(wmem)); in wiimote_cmd_init_mp() [all …]
|
D | hid-wiimote.h | 272 const __u8 *wmem, __u8 size);
|
/linux-4.4.14/drivers/base/regmap/ |
D | regcache-lzo.c | 22 void *wmem; member 40 lzo_ctx->wmem = kmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL); in regcache_lzo_prepare() 41 if (!lzo_ctx->wmem) in regcache_lzo_prepare() 52 lzo_ctx->dst, &compress_size, lzo_ctx->wmem); in regcache_lzo_compress() 223 kfree(lzo_blocks[i]->wmem); in regcache_lzo_exit()
|
/linux-4.4.14/include/linux/ |
D | sw842.h | 7 u8 *dst, unsigned int *destlen, void *wmem);
|
/linux-4.4.14/Documentation/sound/oss/ |
D | MultiSound | 706 X WORD wmem; 710 X wmem = (WORD)mem; 713 X if (msnd_write_cfg(cfg, IREG_MEMBASEHI, HIBYTE(wmem))) 715 X if (msnd_write_cfg(cfg, IREG_MEMBASELO, LOBYTE(wmem))) 717 X if (wmem && msnd_write_cfg(cfg, IREG_MEMCONTROL, (MEMTYPE_HIADDR | MEMTYPE_16BIT)))
|
/linux-4.4.14/sound/isa/msnd/ |
D | msnd_pinnacle.c | 699 u16 wmem; in snd_msnd_write_cfg_mem() local 702 wmem = (u16)(mem & 0xfff); in snd_msnd_write_cfg_mem() 705 if (snd_msnd_write_cfg(cfg, IREG_MEMBASEHI, HIBYTE(wmem))) in snd_msnd_write_cfg_mem() 707 if (snd_msnd_write_cfg(cfg, IREG_MEMBASELO, LOBYTE(wmem))) in snd_msnd_write_cfg_mem() 709 if (wmem && snd_msnd_write_cfg(cfg, IREG_MEMCONTROL, in snd_msnd_write_cfg_mem()
|
/linux-4.4.14/drivers/net/ethernet/cavium/thunder/ |
D | q_struct.h | 519 u64 wmem:1; member 528 u64 wmem:1;
|
/linux-4.4.14/lib/842/ |
D | 842_compress.c | 487 u8 *out, unsigned int *olen, void *wmem) in sw842_compress() argument 489 struct sw842_param *p = (struct sw842_param *)wmem; in sw842_compress()
|
/linux-4.4.14/sound/oss/ |
D | msnd_pinnacle.c | 1519 WORD wmem; in msnd_write_cfg_mem() local 1523 wmem = (WORD)mem; in msnd_write_cfg_mem() 1526 if (msnd_write_cfg(cfg, IREG_MEMBASEHI, HIBYTE(wmem))) in msnd_write_cfg_mem() 1528 if (msnd_write_cfg(cfg, IREG_MEMBASELO, LOBYTE(wmem))) in msnd_write_cfg_mem() 1530 if (wmem && msnd_write_cfg(cfg, IREG_MEMCONTROL, (MEMTYPE_HIADDR | MEMTYPE_16BIT))) in msnd_write_cfg_mem()
|
/linux-4.4.14/drivers/staging/rtl8188eu/os_dep/ |
D | usb_ops_linux.c | 698 u32 usb_write_port(struct adapter *padapter, u32 addr, u32 cnt, u8 *wmem) in usb_write_port() argument 707 struct xmit_buf *pxmitbuf = (struct xmit_buf *)wmem; in usb_write_port()
|
/linux-4.4.14/net/ipv4/ |
D | tcp_output.c | 858 int wmem; in tcp_wfree() local 863 wmem = atomic_sub_return(skb->truesize - 1, &sk->sk_wmem_alloc); in tcp_wfree() 872 if (wmem >= SKB_TRUESIZE(1) && this_cpu_ksoftirqd() == current) in tcp_wfree()
|
/linux-4.4.14/Documentation/DocBook/ |
D | networking.xml.db | 81 API-sk-wmem-alloc-get
|