Home
last modified time | relevance | path

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

/linux/drivers/crypto/nx/
H A DMakefile2 obj-$(CONFIG_CRYPTO_DEV_NX_ENCRYPT) += nx-crypto.o
3 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 …]
/linux/tools/testing/selftests/powerpc/nx-gzip/
H A DREADME1 Test the nx-gzip function:
5 /dev/crypto/nx-gzip
7 sudo chmod go+rw /dev/crypto/nx-gzip
10 /etc/udev/rules.d/99-nx-gzip.rules
18 Compress any file using Fixed Huffman mode. Output will have a .nx.gz suffix:
24 Uncompress the previous output. Output will have a .nx.gunzip suffix:
25 ./gunz_test gzip_vas.c.nx.gz
35 $ sha1sum gzip_vas.c.nx.gz.nx.gunzip gzip_vas.c
36 bf43e3c0c3651f5f22b6f9784cd9b1eeab4120b6 gzip_vas.c.nx.gz.nx.gunzip
40 Note that the code here are intended for testing the nx-gzip hardware function.
H A Dnx-gzip-test.sh4 if [[ ! -w /dev/crypto/nx-gzip ]]; then
14 rm -f nx-tempfile*
29 ./gunz_test ${fname}.nx.gz
H A D99-nx-gzip.rules1 SUBSYSTEM=="nxgzip", KERNEL=="nx-gzip", MODE="0666"
H A DMakefile2 TEST_PROGS := nx-gzip-test.sh
/linux/drivers/input/mouse/
H A Damimouse.c38 int nx, ny, dx, dy; in amimouse_interrupt() local
42 nx = joy0dat & 0xff; in amimouse_interrupt()
45 dx = nx - amimouse_lastx; in amimouse_interrupt()
48 if (dx < -127) dx = (256 + nx) - amimouse_lastx; in amimouse_interrupt()
49 if (dx > 127) dx = (nx - 256) - amimouse_lastx; in amimouse_interrupt()
53 amimouse_lastx = nx; in amimouse_interrupt()
/linux/tools/testing/selftests/powerpc/nx-gzip/include/
H A Dcrb.h136 #define crb_nx_fault_addr(c) __be64_to_cpu(c->stamp.nx.fault_storage_addr)
137 #define crb_nx_flags(c) c->stamp.nx.flags
138 #define crb_nx_fault_status(c) c->stamp.nx.fault_status
139 #define crb_nx_pswid(c) c->stamp.nx.pswid
H A Dnxu.h207 struct nx_stamped_fault_crb_t nx; member
/linux/arch/powerpc/platforms/powernv/
H A Dvas-fault.c107 if ((entry->stamp.nx.pswid == cpu_to_be32(FIFO_INVALID_ENTRY)) in vas_fault_thread_fn()
120 entry->stamp.nx.pswid = cpu_to_be32(FIFO_INVALID_ENTRY); in vas_fault_thread_fn()
133 be32_to_cpu(crb->stamp.nx.pswid)); in vas_fault_thread_fn()
147 be32_to_cpu(crb->stamp.nx.pswid), in vas_fault_thread_fn()
/linux/Documentation/ABI/testing/
H A Ddebugfs-pfo-nx-crypto1 What: /sys/kernel/debug/nx-crypto/*
7 These debugfs interfaces are built by the nx-crypto driver, built in
8 arch/powerpc/crypto/nx.
/linux/drivers/block/aoe/
H A Daoedev.c200 struct list_head *head, *pos, *nx; in aoedev_downdev() local
212 list_for_each_safe(pos, nx, head) in aoedev_downdev()
216 list_for_each_safe(pos, nx, head) in aoedev_downdev()
513 struct list_head *pos, *nx, *head; in freetgt() local
523 list_for_each_safe(pos, nx, head) { in freetgt()
H A Daoecmd.c80 struct list_head *head, *pos, *nx; in getframe_deferred() local
84 list_for_each_safe(pos, nx, head) { in getframe_deferred()
98 struct list_head *head, *pos, *nx; in getframe() local
103 list_for_each_safe(pos, nx, head) { in getframe()
650 struct list_head *pos, *nx, *head; in rexmit_deferred() local
657 list_for_each_safe(pos, nx, head) { in rexmit_deferred()
740 struct list_head *head, *pos, *nx; in rexmit_timer() local
765 list_for_each_safe(pos, nx, head) { in rexmit_timer()
/linux/tools/testing/selftests/arm64/abi/
H A Dsyscall-abi-asm.S56 .macro _ldr_zt nx argument
58 | (((\nx) & 0x1f) << 5)
66 .macro _str_zt nx argument
68 | (((\nx) & 0x1f) << 5)
/linux/tools/testing/selftests/kvm/include/x86/
H A Dkvm_util_arch.h22 u64 nx; member
H A Dprocessor.h1562 #define PTE_NX_MASK(mmu) ((mmu)->arch.pte_masks.nx)
/linux/tools/testing/selftests/powerpc/
H A DMakefile17 nx-gzip \
/linux/arch/powerpc/include/asm/
H A Dicswx.h152 struct nx_fault_stamp nx; member
/linux/net/can/
H A Dgw.c617 struct hlist_node *nx; in cgw_notifier() local
621 hlist_for_each_entry_safe(gwj, nx, &net->can.cgw_list, list) { in cgw_notifier()
1198 struct hlist_node *nx; in cgw_remove_all_jobs() local
1202 hlist_for_each_entry_safe(gwj, nx, &net->can.cgw_list, list) { in cgw_remove_all_jobs()
1214 struct hlist_node *nx; in cgw_remove_job() local
1250 hlist_for_each_entry_safe(gwj, nx, &net->can.cgw_list, list) { in cgw_remove_job()
/linux/tools/perf/util/
H A Ddemangle-rust-v0.c327 char nx = *punycode_start++; in punycode_decode() local
329 if ('a' <= nx && nx <= 'z') { in punycode_decode()
330 d = nx - 'a'; in punycode_decode()
331 } else if ('0' <= nx && nx <= '9') { in punycode_decode()
332 d = 26 + (nx - '0'); in punycode_decode()
/linux/net/xfrm/
H A Dxfrm_policy.c2484 int nx; in xfrm_tmpl_resolve_one() local
2490 for (nx = 0, i = 0; i < policy->xfrm_nr; i++) { in xfrm_tmpl_resolve_one()
2526 xfrm[nx++] = x; in xfrm_tmpl_resolve_one()
2542 return nx; in xfrm_tmpl_resolve_one()
2545 for (nx--; nx >= 0; nx--) in xfrm_tmpl_resolve_one()
2546 xfrm_state_put(xfrm[nx]); in xfrm_tmpl_resolve_one()
2663 int nx, in xfrm_bundle_create() argument
2689 for (; i < nx; i++) { in xfrm_bundle_create()
2778 xfrm_init_pmtu(bundle, nx); in xfrm_bundle_create()
2795 for (; i < nx; i++) in xfrm_bundle_create()
/linux/tools/testing/selftests/kvm/lib/x86/
H A Dvmx.c63 .nx = 0, in vm_enable_ept()
H A Dprocessor.c194 .nx = BIT_ULL(63), in virt_arch_pgd_alloc()
/linux/arch/powerpc/kvm/
H A Dbook3s_64_mmu.c387 slbe->nx = (rs & SLB_VSID_N) ? 1 : 0; in kvmppc_mmu_book3s_64_slbmte()
/linux/tools/arch/x86/kcpuid/
H A Dcpuid.csv712 0x80000001, 0, edx, 20, nx , No-execute page protection
/linux/
H A DMAINTAINERS12457 F: drivers/crypto/nx/Kconfig
12458 F: drivers/crypto/nx/Makefile
12459 F: drivers/crypto/nx/nx-842*
12469 F: drivers/crypto/nx/Kconfig
12470 F: drivers/crypto/nx/Makefile
12471 F: drivers/crypto/nx/nx-aes*
12472 F: drivers/crypto/nx/nx-sha*
12473 F: drivers/crypto/nx/nx.*
12474 F: drivers/crypto/nx/nx_csbcpb.h
12475 F: drivers/crypto/nx/nx_debugfs.c
[all …]