Home
last modified time | relevance | path

Searched refs:nx (Results 1 – 7 of 7) sorted by relevance

/drivers/crypto/nx/
DMakefile1 obj-$(CONFIG_CRYPTO_DEV_NX_ENCRYPT) += nx-crypto.o
2 nx-crypto-objs := nx.o \
4 nx-aes-cbc.o \
5 nx-aes-ecb.o \
6 nx-aes-gcm.o \
7 nx-aes-ccm.o \
8 nx-aes-ctr.o \
9 nx-aes-xcbc.o \
10 nx-sha256.o \
11 nx-sha512.o
[all …]
/drivers/input/mouse/
Damimouse.c42 int nx, ny, dx, dy; in amimouse_interrupt() local
46 nx = joy0dat & 0xff; in amimouse_interrupt()
49 dx = nx - amimouse_lastx; in amimouse_interrupt()
52 if (dx < -127) dx = (256 + nx) - amimouse_lastx; in amimouse_interrupt()
53 if (dx > 127) dx = (nx - 256) - amimouse_lastx; in amimouse_interrupt()
57 amimouse_lastx = nx; in amimouse_interrupt()
/drivers/media/common/
Dbtcx-risc.c133 s32 nx,nw,dx; in btcx_align() local
137 nx = (win->left + mask) & ~mask; in btcx_align()
139 if (nx + nw > win->left + win->width) in btcx_align()
141 dx = nx - win->left; in btcx_align()
142 win->left = nx; in btcx_align()
150 nx = (clips[i].c.left-dx) & ~mask; in btcx_align()
152 if (nx + nw < clips[i].c.left-dx + clips[i].c.width) in btcx_align()
154 clips[i].c.left = nx; in btcx_align()
/drivers/block/aoe/
Daoedev.c200 struct list_head *head, *pos, *nx; in aoedev_downdev() local
209 list_for_each_safe(pos, nx, head) in aoedev_downdev()
213 list_for_each_safe(pos, nx, head) in aoedev_downdev()
496 struct list_head *pos, *nx, *head; in freetgt() local
506 list_for_each_safe(pos, nx, head) { in freetgt()
Daoecmd.c81 struct list_head *head, *pos, *nx; in getframe_deferred() local
85 list_for_each_safe(pos, nx, head) { in getframe_deferred()
99 struct list_head *head, *pos, *nx; in getframe() local
104 list_for_each_safe(pos, nx, head) { in getframe()
663 struct list_head *pos, *nx, *head; in rexmit_deferred() local
670 list_for_each_safe(pos, nx, head) { in rexmit_deferred()
753 struct list_head *head, *pos, *nx; in rexmit_timer() local
778 list_for_each_safe(pos, nx, head) { in rexmit_timer()
/drivers/crypto/
DMakefile14 obj-$(CONFIG_CRYPTO_DEV_NX) += nx/
DKconfig322 source "drivers/crypto/nx/Kconfig"