repo_id
string
size
int64
file_path
string
content
string
klausz65/rust
29
tests/codegen/asm/foo.s
.global foo foo: jmp baz
klausz65/rust
136
tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/foo_asm.s
.text .global cc_plus_one_asm .type cc_plus_one_asm, @function cc_plus_one_asm: movl (%rdi), %eax inc %eax retq
klausz65/rust
145
tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/libcmake_foo/src/foo_asm.s
.text .global cmake_plus_one_asm .type cmake_plus_one_asm, @function cmake_plus_one_asm: movl (%rdi), %eax inc %eax retq
k-moonblade/sp1-sample
8,450
crates/zkvm/entrypoint/src/memset.s
// This is musl-libc memset commit 37e18b7bf307fa4a8c745feebfcba54a0ba74f30: // // src/string/memset.c // // This was compiled into assembly with: // // clang-14 -target riscv32 -march=rv32im -O3 -S memset.c -nostdlib -fno-builtin -funroll-loops // // and labels manually updated to not conflict. // // musl as a wh...
k-moonblade/sp1-sample
11,855
crates/zkvm/entrypoint/src/memcpy.s
// This is musl-libc commit 37e18b7bf307fa4a8c745feebfcba54a0ba74f30: // // src/string/memcpy.c // // This was compiled into assembly with: // // clang-14 -target riscv32 -march=rv32im -O3 -S memcpy.c -nostdlib -fno-builtin -funroll-loops // // and labels manually updated to not conflict. // // musl as a whole is ...
KMSorSMS/rcore-lab-citest
676
os/src/task/switch.S
.altmacro .macro SAVE_SN n sd s\n, (\n+2)*8(a0) .endm .macro LOAD_SN n ld s\n, (\n+2)*8(a1) .endm .section .text .globl __switch __switch: # __switch( # current_task_cx_ptr: *mut TaskContext, # next_task_cx_ptr: *const TaskContext # ) # save kernel stack of current task s...
KMSorSMS/rcore-lab-citest
1,488
os/src/trap/trap.S
.altmacro .macro SAVE_GP n sd x\n, \n*8(sp) .endm .macro LOAD_GP n ld x\n, \n*8(sp) .endm .section .text .globl __alltraps .globl __restore .align 2 __alltraps: csrrw sp, sscratch, sp # now sp->kernel stack, sscratch->user stack # allocate a TrapContext on kernel stack addi sp, s...
KMSorSMS/stm32f401_embassy
3,122
src/uc_thread/os_cpu.S
.extern OS_CPU_EXCEPT_STK_BASE .extern OS_TCB_HIGH_RDY .extern OS_TCB_CUR .extern OS_PRIO_CUR .extern OS_PRIO_HIGH_RDY .extern OS_IS_RUNNING .global OSStartHighRdy .global OSIntCtxSw .global OSCtxSw .global PendSV_Hand...
knightmar/knightos
729
src/boot/boot.s
.set ALIGN, 1<<0 /* align loaded modules on page boundaries */ .set MEMINFO, 1<<1 /* provide memory map */ .set FLAGS, ALIGN | MEMINFO /* this is the Multiboot 'flag' field */ .set MAGIC, 0x1BADB002 /* 'magic number' lets bootloader find the header */ .set CHECKSUM, -(MAGIC + FL...
koba-micchie/trykernel-rust
1,683
src/dispatch.S
.align 2 .thumb_func .global dispatch_entry dispatch_entry: movs r0, #1 msr primask, r0 // disable interrupt ldr r1, =disp_running str r0, [r1] // disp_running = 1 // save context of executing task to stack push {r4-r7} mov r0, r8 mov r1, r9 mov r2, r10 mov ...
koba-micchie/trykernel-rust
1,957
src/boot/asm.S
.cfi_sections .debug_frame .section .Reset, "ax" .global Reset .type Reset,%function .thumb_func .cfi_startproc # Main entry point after reset. This jumps to the user __pre_init function, # which cannot be called from Rust code without invoking UB, then # initialises RAM. If the target has an FPU, it...
kobradag/koda-miner-gpu
5,802
src/keccakf1600_x86-64-osx.s
# Source: https://github.com/dot-asm/cryptogams/blob/master/x86_64/keccak1600-x86_64.pl .text .p2align 5 __KeccakF1600: .cfi_startproc .byte 0xf3,0x0f,0x1e,0xfa movq 60(%rdi),%rax movq 68(%rdi),%rbx movq 76(%rdi),%rcx movq 84(%rdi),%rdx movq 92(%rdi),%rbp jmp L$oop .p2align 5 L$oop: movq -100(%rdi),%r8 mo...
kobradag/koda-miner-gpu
6,073
src/keccakf1600_x86-64.s
# Source: https://github.com/dot-asm/cryptogams/blob/master/x86_64/keccak1600-x86_64.pl .text .type __KeccakF1600,@function .align 32 __KeccakF1600: .cfi_startproc .byte 0xf3,0x0f,0x1e,0xfa movq 60(%rdi),%rax movq 68(%rdi),%rbx movq 76(%rdi),%rcx movq 84(%rdi),%rdx movq 92(%rdi),%rbp jmp .Loop .align 32 .Loo...
Koisuji02/MIPS64
1,294
factorial.s
; ; Factorial example ; returns number! in r10 ; .data number: .word 10 title: .asciiz "factorial program n= " CONTROL: .word32 0x10000 DATA: .word32 0x10008 .text lwu r21,CONTROL(r0) lwu r22,DATA(r0) daddi r24,r0,4 ; ascii output daddi r1,r0,title sd r1...
Koisuji02/MIPS64
1,278
mult.s
; ; Unsigned multiplication of two 64-bit numbers on MIPS64 processor ; Result is 128-bits w=x*y ; .data x: .word 0xFFFFFFFFFFFFFFFF y: .word 0xFFFFFFFFFFFFFFFF w: .word 0,0 .text start: jal mul ; call subroutine nop halt mul: daddi r1,r0,64 ; r1=64 bits ...
Koisuji02/MIPS64
501
series.s
; MIPs version of series.cpp .data x: .double 0.6 s: .double 1.0 .text L.D F0,x(R0) ;F0=x L.D F2,x(R0) ;F2=y L.D F4,s(R0) ;F4=s DADDI R1,R0,2 ;n=2 Loop: MTC1 R1,F11 ; convert R1... CVT.D.L F6,F11 ; to double precision MU...
Koisuji02/MIPS64
2,404
hail.s
; ; Hailstone numbers iteration ; If number is odd, multiply by 3 and add 1 ; If number is even, divide it by 2 ; repeat this iteration until number is 1 ; What is the maximum value during this process? ; .data max: .word 0 ; max number so far title: .asciiz "Hailstone Numbers\n" prompt: .asciiz "...
Koisuji02/MIPS64
2,884
testio.s
; ; Example IO program ; .data int: .word 0xF9876543987625aa ; a 64-bit integer mes: .asciiz "Hello World\n" ; the message key: .asciiz "Press any key to exit\n" dub: .double 32.786 ; a double x: .byte 0 ; coordinates of a point y: .byte 0 col: .byte 255,0,255,0 ; the colour magenta ; ...
Koisuji02/MIPS64
3,156
isort.s
# # Insertion sort algorithm # See http://www.cs.ubc.ca/spider/harrison/Java/InsertionSortAlgorithm.java.html # Note use of MIPS register pseudo-names, and # for comments # .data array: .word 0x4F6961869342DC99,0x7A0B67101C85D9EE,0x5EF87A2B37CA911D,0x47EF58E8B7E01DD9 .word 0x79A74EAB20CB53C9,0x6D26753D0...
Koisuji02/MIPS64
1,060
LAB/lab_02/program_1.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
2,514
LAB/lab_03/program_1_a.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
2,586
LAB/lab_03/program_1_b.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
2,514
LAB/lab_03/program_1.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
2,586
LAB/lab_03/program_1_c.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
1,060
LAB/lab_01/program_1.s
.data v1: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v2: .double 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32 v3: .double 1, 2, ...
Koisuji02/MIPS64
2,712
LAB/lab_01/program_0.s
.data v1: .byte 2, 6, -3, 11, 9, 18, -13, 16, 5, 1 v2: .byte 4, 2, -13, 3, 9, 9, 7, 16, 4, 7 v3: .space 10 ; alloca 10 byte = 10 elementi * 1 byte ciascuno flag1: .byte 0 flag2: .byte 0 flag3: .byte 0 .text main: ...
Kori-Sama/KoriCore
860
os/src/link_app.S
.align 3 .section .data .global _num_app _num_app: .quad 4 .quad app_0_start .quad app_1_start .quad app_2_start .quad app_3_start .quad app_3_end .section .data .global app_0_start .global app_0_end app_0_start: .incbin "../user/target/riscv64gc-unknown-none-elf/re...
Kori-Sama/KoriCore
1,589
os/src/trap/trap.S
.altmacro .macro SAVE_GP n sd x\n, \n*8(sp) .endm .macro LOAD_GP n ld x\n, \n*8(sp) .endm .section .text .globl __alltraps .globl __restore .align 2 __alltraps: csrrw sp, sscratch, sp # now sp->kernel stack, sscratch->user stack # allocate a TrapContext on kernel stack addi sp, s...
krazey/raviole-device
931
drivers/trusty/trusty-smc-arm.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2020 Google, Inc. */ #include <linux/linkage.h> .arch_extension sec ENTRY(trusty_smc8) /* Save stack location where r3-r7 smc arguments are stored */ mov r12, sp /* Save original r4-r7 values as caller expects these to be preserved */ ...
krazey/raviole-device
742
drivers/trusty/trusty-smc-arm64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2020 Google, Inc. */ #include <linux/linkage.h> .macro push ra, rb stp \ra, \rb, [sp,#-16]! .endm .macro pop ra, rb ldp \ra, \rb, [sp], #16 .endm lr .req x30 SYM_FUNC_START(trusty_smc8) /* * Save x8 (return value ptr) and lr. The SMC calling...
krazey/raviole-device
2,420
drivers/soc/google/debug/cache.S
/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2020 Samsung Electronics Co., Ltd. * http://www.samsung.com */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/asm-uaccess.h> /* * flush_cache_all() * Corrupted registers: x0-x7, x9-x11 * * Flush the entire cache system. The data...
kresovicmilan/ColorLibShapeDescriptor-Replication-Archive
32,112
lib/fast-lzma2/src/lzma_dec_x86_64.S
# LzmaDecOpt.asm -- ASM version of LZMA_decodeReal_3() function # 2018-02-06: Igor Pavlov : Public domain # # 3 - is the code compatibility version of LZMA_decodeReal_*() # function for check at link time. # That code is tightly coupled with LZMA_tryDummy() # and with another functions in lzma2_dec.c file. # CLzmaDec s...
krsnik02/annwn
514
src/start.s
.section .text.init .global _start _start: # set gp .option push .option norelax la gp, __global_pointer$ .option pop # set sp la sp, _sstack # move data to ram la t0, _sidata la t1, _sdata la t2, _edata 1: beq t1, t2, 2f ld t3, 0(t0) sd t3, 0(t1) addi t0, t0,...
Kumaresankp21/infinite_storage
3,647
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/x86_64.s
// Assembly code for making x86-64 syscalls. // // x86-64 syscall argument register ordering is the same as the x86-64 // userspace argument register ordering except that a3 is passed in r10 // instead of rcx, and the syscall number (nr) is passed in eax. // // outline.rs takes care of reordering the nr argument to the...
Kumaresankp21/infinite_storage
3,423
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/riscv64.s
# Assembly code for making riscv64 syscalls. # # riscv64 syscall argument register ordering is the same as the riscv64 # userspace argument register ordering except that the syscall number # (nr) is passed in a7. # # nr_last.rs takes care of reordering the nr argument to the end for us, # so we only need to move nr int...
Kumaresankp21/infinite_storage
6,458
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/mips.s
# Assembly code for making mips64 syscalls. # # mips64 syscall argument register ordering is the same as the mips64 # userspace argument register ordering except that the syscall number # (nr) is passed in v0. # # outline.rs takes care of reordering the nr argument to the end for us, # so we only need to move nr into v...
Kumaresankp21/infinite_storage
3,979
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/arm.s
// Assembly code for making arm syscalls. // // arm syscall argument register ordering is the similar to the arm // userspace argument register ordering except that the syscall number // (nr) is passed in r7. // // nr_last.rs takes care of reordering the nr argument to the end for us, // so we only need to move nr into...
Kumaresankp21/infinite_storage
12,301
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/x86.s
// Assembly code for making x86 syscalls. // // On x86 we use the "fastcall" convention which passes the first two // arguments in ecx and edx. Outline.rs reorders the arguments to put // a1 and a2 in those registers so they we don't have to move them to // set up the kernel convention. // // "fastcall" expects callee ...
Kumaresankp21/infinite_storage
5,749
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/mips64.s
# Assembly code for making mips64 syscalls. # # mips64 syscall argument register ordering is the same as the mips64 # userspace argument register ordering except that the syscall number # (nr) is passed in v0. # # outline.rs takes care of reordering the nr argument to the end for us, # so we only need to move nr into v...
Kumaresankp21/infinite_storage
3,525
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/aarch64.s
// Assembly code for making aarch64 syscalls. // // aarch64 syscall argument register ordering is the same as the aarch64 // userspace argument register ordering except that the syscall number // (nr) is passed in w8. // // outline.rs takes care of reordering the nr argument to the end for us, // so we only need to mov...
Kumaresankp21/infinite_storage
3,592
cargo_home/registry/src/index.crates.io-6f17d22bba15001f/rustix-0.36.8/src/backend/linux_raw/arch/outline/powerpc64.s
# Assembly code for making powerpc64le syscalls. # # powerpc64le syscall argument register ordering is the same as the # powerpc64le userspace argument register ordering except that the syscall # number (nr) is passed in r0. # # outline.rs takes care of reordering the nr argument to the end for us, # so we only need to...
kushurox/lingangu_os
280
src/boot.s
.section .init .option norvc .global cringe .section .kernel_entry cringe: csrw satp, x0 la sp, stack_top la gp, global_pointer la t0, kmain csrw mepc, t0 csrr t1, mhartid beq t1, x0, A B: tail do_nothing A: tail kmain
kushdevteam/bunproj
30,683
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/armv8-mont-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .text .globl bn_mul_mont_nohw .def bn_mul_mont_nohw .type...
kushdevteam/bunproj
28,813
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha-armv4-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
kushdevteam/bunproj
48,988
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha512-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed unde...
kushdevteam/bunproj
21,653
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _gcm_init_clmul .private_extern _gcm_init_clmul .p2align 4 _gcm_init_clmul: ...
kushdevteam/bunproj
40,454
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .section .rodata .align 5 .Lsigma: .quad 0x3320646e61707865,...
kushdevteam/bunproj
49,206
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha512-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under ...
kushdevteam/bunproj
74,349
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha20_poly1305_armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .section .rodata .align 7 .Lchacha20_consts: .byte 'e','x','p...
kushdevteam/bunproj
4,299
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghashv8-armx-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .globl gcm...
kushdevteam/bunproj
18,647
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/x86_64-mont-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _bn_mul_mont_nohw .private_extern _bn_mul_mont_nohw .p2align 4 _bn_mul_mont_n...
kushdevteam/bunproj
30,674
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/armv8-mont-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .text .globl _bn_mul_mont_nohw .private_extern _bn_mul_mon...
kushdevteam/bunproj
69,148
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _sha256_block_data_order_nohw .private_extern _sha256_block_data_order_nohw ....
kushdevteam/bunproj
4,192
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghashv8-armx-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .globl gcm_...
kushdevteam/bunproj
19,873
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesni-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .p2align 4 _aesni_encrypt2: movups (%rcx),%xmm0 shll $4,%eax movups 16(%rcx),%xmm...
kushdevteam/bunproj
48,645
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha512-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .globl sha512_block_data_order_nohw .hidden sha512_block_data_order_nohw .type sha512_b...
kushdevteam/bunproj
6,302
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-armv4-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
kushdevteam/bunproj
33,986
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed unde...
kushdevteam/bunproj
20,463
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/x86_64-mont-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .globl bn_mul_mont_nohw .hidden bn_mul_mont_nohw .type bn_mul_mont_nohw,@function .alig...
kushdevteam/bunproj
7,693
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesv8-armx-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .section .r...
kushdevteam/bunproj
10,908
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-neon-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .text .globl _gcm_init_neon .private_extern _gcm_init_neon...
kushdevteam/bunproj
21,844
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/armv4-mont-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
kushdevteam/bunproj
68,707
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/p256-x86_64-asm-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .section __DATA,__const .p2align 6 L$poly: .quad 0xffffffffffffffff, 0x00000000fffff...
kushdevteam/bunproj
25,199
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .section __TEXT,__const .align 7 // totally strategic ali...
kushdevteam/bunproj
15,121
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesni-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .hidden _aesni_encrypt2 .type _aesni_encrypt2,@functio...
kushdevteam/bunproj
70,675
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .globl sha256_block_data_order_nohw .hidden sha256_block_data_order_nohw .type sha256_b...
kushdevteam/bunproj
82,184
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesv8-gcm-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .text .globl _aes_gcm_enc_kernel...
kushdevteam/bunproj
48,620
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/x86_64-mont5-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _bn_mul4x_mont_gather5 .private_extern _bn_mul4x_mont_gather5 .p2align 5 _bn_...
kushdevteam/bunproj
82,384
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesv8-gcm-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .arch armv8-a+crypto .text .globl a...
kushdevteam/bunproj
10,896
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-neon-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .text .globl gcm_init_neon .def gcm_init_neon .type 32 .e...
kushdevteam/bunproj
9,958
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .align 64 .L_vpaes_consts: .long 218628480,235210255,1...
kushdevteam/bunproj
47,706
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha512-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _sha512_block_data_order_nohw .private_extern _sha512_block_data_order_nohw ....
kushdevteam/bunproj
12,622
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl ChaCha20_ctr32_ssse3 .hidden ChaCha20_ctr32_ssse3 .type ChaCha20_ctr32_ssse3,@functio...
kushdevteam/bunproj
19,660
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesni-gcm-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .type _aesni_ctr32_ghash_6x,@function .align 32 _aesni_ctr32_ghash_6x: .cfi_startproc ...
kushdevteam/bunproj
7,888
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesv8-armx-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .section ....
kushdevteam/bunproj
11,047
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .p2align 4 _vpaes_encrypt_core: movq %rdx,%r9 movq $16,%r11 movl ...
kushdevteam/bunproj
4,168
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghashv8-armx-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .globl _gcm_init_clmul .priv...
kushdevteam/bunproj
74,004
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha20_poly1305_armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .section __TEXT,__const .align 7 Lchacha20_consts: .byte 'e...
kushdevteam/bunproj
5,546
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl gcm_init_clmul .hidden gcm_init_clmul .type gcm_init_clmul,@function .align 16 gcm_in...
kushdevteam/bunproj
74,019
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha20_poly1305_armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .section .rodata .align 7 Lchacha20_consts: .byte 'e','x','p',...
kushdevteam/bunproj
25,531
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .section .rodata .align 7 // totally strategic alignment _vp...
kushdevteam/bunproj
17,747
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/bsaes-armv7-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) @ Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. @ @ Licensed under the Ope...
kushdevteam/bunproj
33,969
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under t...
kushdevteam/bunproj
82,208
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesv8-gcm-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .arch armv8-a+crypto .text .globl ae...
kushdevteam/bunproj
21,961
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .globl gcm_init_clmul .hidden gcm_init_clmul .type gcm_init_clmul,@function .align 16 gc...
kushdevteam/bunproj
193,277
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha20_poly1305_x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .section .rodata .align 64 chacha20_poly1305_constants: .Lchacha20_consts: .byte 'e','x','p','a...
kushdevteam/bunproj
20,965
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesni-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .type _aesni_encrypt2,@function .align 16 _aesni_encrypt2: .cfi_startproc movups (%rcx...
kushdevteam/bunproj
35,434
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/p256-armv8-asm-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include "ring-core/arm_arch.h" .section __TEXT,__const .align 5 Lpoly: .quad 0xfffffffffff...
kushdevteam/bunproj
30,909
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/armv8-mont-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .text .globl bn_mul_mont_nohw .hidden bn_mul_mont_nohw .type...
kushdevteam/bunproj
48,971
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha512-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under t...
kushdevteam/bunproj
26,239
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .section .rodata .type _vpaes_consts,%object .align 7 // tot...
kushdevteam/bunproj
4,229
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/x86-mont-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl bn_mul_mont .hidden bn_mul_mont .type bn_mul_mont,@function .align 16 bn_mul_mont: .L...
kushdevteam/bunproj
18,316
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/aesni-gcm-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .p2align 5 _aesni_ctr32_ghash_6x: vmovdqu 32(%r11),%xmm2 subq $6,%rdx vpxor %xmm...
kushdevteam/bunproj
12,170
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/vpaes-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .type _vpaes_encrypt_core,@function .align 16 _vpaes_encrypt_core: .cfi_...
kushdevteam/bunproj
31,065
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .section .rodata .align 64 .Lzero: .long 0,0,0,0 .Lone: .long 1,0,0,0 .Linc: .long 0,1,...
kushdevteam/bunproj
36,779
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/p256-armv8-asm-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include "ring-core/arm_arch.h" .section .rodata .align 5 .Lpoly: .quad 0xffffffffffffffff,0x...
kushdevteam/bunproj
40,218
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/chacha-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .section __TEXT,__const .align 5 Lsigma: .quad 0x3320646e6...
kushdevteam/bunproj
60,166
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-armv4-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) @ Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. @ @ Licensed under the Ope...
kushdevteam/bunproj
34,203
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/sha256-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under ...
kushdevteam/bunproj
11,057
.local/share/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.9/pregenerated/ghash-neon-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .text .globl gcm_init_neon .hidden gcm_init_neon .type gcm_i...