| /arch/powerpc/crypto/ |
| A D | aesp10-ppc.pl | 208 addi $out,$out,16 228 addi $out,$out,16 245 addi $out,$out,16 272 addi $out,$out,16 306 addi $out,$out,16 318 addi $out,$out,16 332 addi $out,$out,16 348 addi $out,$out,16 360 addi $out,$out,16 374 addi $out,$out,16 [all …]
|
| A D | aesp8-ppc.pl | 209 addi $out,$out,16 229 addi $out,$out,16 246 addi $out,$out,16 273 addi $out,$out,16 307 addi $out,$out,16 319 addi $out,$out,16 333 addi $out,$out,16 349 addi $out,$out,16 361 addi $out,$out,16 438 subi $out,$out,16 [all …]
|
| A D | aesp8-ppc.h | 20 void aes_p8_encrypt(const u8 *in, u8 *out, const struct aes_key *key); 21 void aes_p8_decrypt(const u8 *in, u8 *out, const struct aes_key *key); 22 void aes_p8_cbc_encrypt(const u8 *in, u8 *out, size_t len, 24 void aes_p8_ctr32_encrypt_blocks(const u8 *in, u8 *out, 27 void aes_p8_xts_encrypt(const u8 *in, u8 *out, size_t len, 29 void aes_p8_xts_decrypt(const u8 *in, u8 *out, size_t len,
|
| /arch/x86/entry/syscalls/ |
| A D | Makefile | 2 out := arch/$(SRCARCH)/include/generated/asm macro 6 $(shell mkdir -p $(out) $(uapi)) 31 $(out)/unistd_32_ia32.h: abis := i386 32 $(out)/unistd_32_ia32.h: prefix := ia32_ 45 $(out)/unistd_64_x32.h: abis := x32 46 $(out)/unistd_64_x32.h: prefix := x32_ 50 $(out)/syscalls_32.h: abis := i386 51 $(out)/syscalls_32.h: $(syscall32) $(systbl) FORCE 53 $(out)/syscalls_64.h: abis := common,64 56 $(out)/syscalls_x32.h: abis := common,x32 [all …]
|
| /arch/powerpc/include/asm/ |
| A D | epapr_hcalls.h | 489 out[0] = r4; in epapr_hypercall() 490 out[1] = r5; in epapr_hypercall() 491 out[2] = r6; in epapr_hypercall() 492 out[3] = r7; in epapr_hypercall() 493 out[4] = r8; in epapr_hypercall() 494 out[5] = r9; in epapr_hypercall() 495 out[6] = r10; in epapr_hypercall() 496 out[7] = r11; in epapr_hypercall() 512 unsigned long out[8]; in epapr_hypercall0_1() local 516 *r2 = out[0]; in epapr_hypercall0_1() [all …]
|
| /arch/powerpc/boot/ |
| A D | wii.c | 56 goto out; in mipc_get_infohdr() 63 goto out; in mipc_get_infohdr() 68 goto out; in mipc_get_infohdr() 71 out: in mipc_get_infohdr() 83 goto out; in mipc_get_mem2_boundary() 90 goto out; in mipc_get_mem2_boundary() 94 out: in mipc_get_mem2_boundary() 115 goto out; in platform_fixups() 131 out: in platform_fixups()
|
| /arch/powerpc/kexec/ |
| A D | ranges.c | 445 goto out; in get_reserved_memory_ranges() 449 goto out; in get_reserved_memory_ranges() 452 out: in get_reserved_memory_ranges() 473 goto out; in get_exclude_memory_ranges() 477 goto out; in get_exclude_memory_ranges() 481 goto out; in get_exclude_memory_ranges() 485 goto out; in get_exclude_memory_ranges() 501 out: in get_exclude_memory_ranges() 540 out: in get_usable_memory_ranges() 618 out: in get_crash_memory_ranges() [all …]
|
| A D | file_load_64.c | 216 goto out; in add_usable_mem_property() 222 goto out; in add_usable_mem_property() 236 goto out; in add_usable_mem_property() 241 goto out; in add_usable_mem_property() 257 out: in add_usable_mem_property() 332 out: in update_usable_mem_fdt() 438 goto out; in load_elfcorehdr_segment() 444 goto out; in load_elfcorehdr_segment() 465 out: in load_elfcorehdr_segment() 571 out: in setup_purgatory_ppc64() [all …]
|
| A D | elf_64.c | 62 goto out; in elf64_load() 69 goto out; in elf64_load() 79 goto out; in elf64_load() 88 goto out; in elf64_load() 101 goto out; in elf64_load() 109 goto out; in elf64_load() 117 goto out; in elf64_load() 149 goto out; in elf64_load() 153 out: in elf64_load()
|
| /arch/arm64/crypto/ |
| A D | sm4-ce-cipher-glue.c | 18 asmlinkage void sm4_ce_do_crypt(const u32 *rk, void *out, const void *in); 28 static void sm4_ce_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in sm4_ce_encrypt() argument 33 sm4_crypt_block(ctx->rkey_enc, out, in); in sm4_ce_encrypt() 36 sm4_ce_do_crypt(ctx->rkey_enc, out, in); in sm4_ce_encrypt() 41 static void sm4_ce_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in sm4_ce_decrypt() argument 46 sm4_crypt_block(ctx->rkey_dec, out, in); in sm4_ce_decrypt() 49 sm4_ce_do_crypt(ctx->rkey_dec, out, in); in sm4_ce_decrypt()
|
| A D | aes-cipher-glue.c | 12 asmlinkage void __aes_arm64_encrypt(u32 *rk, u8 *out, const u8 *in, int rounds); 13 asmlinkage void __aes_arm64_decrypt(u32 *rk, u8 *out, const u8 *in, int rounds); 15 static void aes_arm64_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in aes_arm64_encrypt() argument 20 __aes_arm64_encrypt(ctx->key_enc, out, in, rounds); in aes_arm64_encrypt() 23 static void aes_arm64_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in aes_arm64_decrypt() argument 28 __aes_arm64_decrypt(ctx->key_dec, out, in, rounds); in aes_arm64_decrypt()
|
| A D | aes-neonbs-glue.c | 52 asmlinkage void neon_aes_xts_encrypt(u8 out[], u8 const in[], 55 asmlinkage void neon_aes_xts_decrypt(u8 out[], u8 const in[], 96 void (*fn)(u8 out[], u8 const in[], u8 const rk[], in __ecb_crypt() argument 278 void (*fn)(u8 out[], u8 const in[], u8 const rk[], in __xts_crypt() argument 291 u8 *out; in __xts_crypt() local 319 out = walk.dst.virt.addr; in __xts_crypt() 331 fn(out, in, ctx->key.rk, ctx->key.rounds, blocks, in __xts_crypt() 334 out += blocks * AES_BLOCK_SIZE; in __xts_crypt() 340 neon_aes_xts_encrypt(out, in, ctx->cts.key_enc, in __xts_crypt() 344 neon_aes_xts_decrypt(out, in, ctx->cts.key_dec, in __xts_crypt() [all …]
|
| /arch/arm/mach-bcm/ |
| A D | bcm63xx_pmb.c | 147 goto out; in bcm63xx_pmb_power_on_cpu() 152 goto out; in bcm63xx_pmb_power_on_cpu() 158 goto out; in bcm63xx_pmb_power_on_cpu() 165 goto out; in bcm63xx_pmb_power_on_cpu() 172 goto out; in bcm63xx_pmb_power_on_cpu() 178 goto out; in bcm63xx_pmb_power_on_cpu() 185 goto out; in bcm63xx_pmb_power_on_cpu() 192 goto out; in bcm63xx_pmb_power_on_cpu() 199 goto out; in bcm63xx_pmb_power_on_cpu() 205 goto out; in bcm63xx_pmb_power_on_cpu() [all …]
|
| /arch/arm/boot/dts/qcom/ |
| A D | qcom-mdm9615-wp8548-mangoh-green.dts | 123 * - 3: LED_ON (out active high) 126 * - 6: PCM_ANALOG_SELECT (out active high) 130 * - 10: UART_EXP1_ENn (out active low / pull-down) 131 * - 11: UART_EXP1_IN (out pull-down) 132 * - 12: UART_EXP2_IN (out pull-down) 133 * - 13: SDIO_SEL (out pull-down) 134 * - 14: SPI_EXP1_ENn (out active low / pull-down) 135 * - 15: SPI_EXP1_IN (out pull-down) 208 * - 9: PCM_EXP1_ENn (out active low) 209 * - 10: PCM_EXP1_SEL (out) [all …]
|
| /arch/arm/mach-meson/ |
| A D | platsmp.c | 173 goto out; in meson8_smp_boot_secondary() 181 goto out; in meson8_smp_boot_secondary() 191 goto out; in meson8_smp_boot_secondary() 198 goto out; in meson8_smp_boot_secondary() 203 goto out; in meson8_smp_boot_secondary() 205 out: in meson8_smp_boot_secondary() 231 goto out; in meson8b_smp_boot_secondary() 240 goto out; in meson8b_smp_boot_secondary() 248 goto out; in meson8b_smp_boot_secondary() 256 goto out; in meson8b_smp_boot_secondary() [all …]
|
| /arch/s390/crypto/ |
| A D | phmac_s390.c | 328 out: in convert_key() 501 out: in phmac_kmac_update() 545 out: in phmac_kmac_final() 568 goto out; in phmac_init() 581 out: in phmac_init() 624 out: in phmac_update() 658 out: in phmac_final() 707 out: in phmac_finup() 724 out: in phmac_digest() 799 out: in phmac_setkey() [all …]
|
| A D | paes_s390.c | 216 out: in convert_key() 310 out: in pxts_convert_key() 379 out: in ecb_paes_setkey() 443 out: in ecb_paes_do_crypt() 492 out: in ecb_paes_crypt() 638 out: in cbc_paes_setkey() 706 out: in cbc_paes_do_crypt() 755 out: in cbc_paes_crypt() 901 out: in ctr_paes_setkey() 1022 out: in ctr_paes_do_crypt() [all …]
|
| /arch/s390/mm/ |
| A D | vmem.c | 198 out: in modify_pte_table() 288 goto out; in modify_pmd_table() 293 out: in modify_pmd_table() 353 goto out; in modify_pud_table() 358 out: in modify_pud_table() 400 goto out; in modify_p4d_table() 405 out: in modify_p4d_table() 456 out: in modify_pagetable() 598 goto out; in vmem_get_alloc_pte() 609 goto out; in vmem_get_alloc_pte() [all …]
|
| /arch/um/drivers/ |
| A D | cow_user.c | 207 goto out; in write_cow_header() 215 goto out; in write_cow_header() 265 out: in write_cow_header() 298 goto out; in read_cow_header() 388 goto out; in read_cow_header() 395 goto out; in read_cow_header() 398 out: in read_cow_header() 414 goto out; in init_cow_file() 424 goto out; in init_cow_file() 438 goto out; in init_cow_file() [all …]
|
| /arch/x86/entry/vdso/ |
| A D | Makefile | 117 KBUILD_AFLAGS_32 := $(filter-out -m64,$(KBUILD_AFLAGS)) -DBUILD_VDSO 121 KBUILD_CFLAGS_32 := $(filter-out -m64,$(KBUILD_CFLAGS)) 122 KBUILD_CFLAGS_32 := $(filter-out -mcmodel=kernel,$(KBUILD_CFLAGS_32)) 123 KBUILD_CFLAGS_32 := $(filter-out -fno-pic,$(KBUILD_CFLAGS_32)) 124 KBUILD_CFLAGS_32 := $(filter-out -mfentry,$(KBUILD_CFLAGS_32)) 125 KBUILD_CFLAGS_32 := $(filter-out $(RANDSTRUCT_CFLAGS),$(KBUILD_CFLAGS_32)) 127 KBUILD_CFLAGS_32 := $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS_32)) 128 KBUILD_CFLAGS_32 := $(filter-out $(RETPOLINE_CFLAGS),$(KBUILD_CFLAGS_32)) 129 KBUILD_CFLAGS_32 := $(filter-out $(CC_FLAGS_LTO),$(KBUILD_CFLAGS_32)) 130 KBUILD_CFLAGS_32 := $(filter-out $(CC_FLAGS_CFI),$(KBUILD_CFLAGS_32)) [all …]
|
| /arch/powerpc/platforms/powernv/ |
| A D | opal-tracepoints.c | 57 goto out; in __trace_opal_entry() 64 out: in __trace_opal_entry() 78 goto out; in __trace_opal_exit() 85 out: in __trace_opal_exit()
|
| /arch/arm64/boot/dts/hisilicon/ |
| A D | hi3660-coresight.dtsi | 22 out-ports { 40 out-ports { 58 out-ports { 76 out-ports { 92 out-ports { 150 out-ports { 169 out-ports { 187 out-ports { 205 out-ports { 223 out-ports { [all …]
|
| /arch/sparc/vdso/ |
| A D | Makefile | 51 $(vobjs): KBUILD_CFLAGS := $(filter-out $(RANDSTRUCT_CFLAGS) $(KSTACK_ERASE_CFLAGS) $(GCC_PLUGINS_C… 74 KBUILD_AFLAGS_32 := $(filter-out -m64,$(KBUILD_AFLAGS)) -DBUILD_VDSO 78 KBUILD_CFLAGS_32 := $(filter-out -m64,$(KBUILD_CFLAGS)) 79 KBUILD_CFLAGS_32 := $(filter-out -mcmodel=medlow,$(KBUILD_CFLAGS_32)) 80 KBUILD_CFLAGS_32 := $(filter-out -fno-pic,$(KBUILD_CFLAGS_32)) 81 KBUILD_CFLAGS_32 := $(filter-out $(RANDSTRUCT_CFLAGS),$(KBUILD_CFLAGS_32)) 82 KBUILD_CFLAGS_32 := $(filter-out $(KSTACK_ERASE_CFLAGS),$(KBUILD_CFLAGS_32)) 83 KBUILD_CFLAGS_32 := $(filter-out $(GCC_PLUGINS_CFLAGS),$(KBUILD_CFLAGS_32)) 84 KBUILD_CFLAGS_32 := $(filter-out $(SPARC_REG_CFLAGS),$(KBUILD_CFLAGS_32))
|
| /arch/arm/crypto/ |
| A D | aes-cipher-core.S | 19 out .req r3 26 .macro __select, out, in, idx 28 and \out, \in, #0xff << (8 * \idx) 30 ubfx \out, \in, #(8 * \idx), #8 34 .macro __load, out, in, idx, sz, op 38 ldr\op \out, [ttab, \in, lsl #\sz] 181 ldr out, [sp] 183 str r4, [out] 184 str r5, [out, #4] 185 str r6, [out, #8] [all …]
|
| /arch/mips/kernel/ |
| A D | vdso.c | 97 goto out; in arch_setup_additional_pages() 122 goto out; in arch_setup_additional_pages() 142 goto out; in arch_setup_additional_pages() 158 goto out; in arch_setup_additional_pages() 164 goto out; in arch_setup_additional_pages() 174 goto out; in arch_setup_additional_pages() 180 out: in arch_setup_additional_pages()
|