| /openbsd/src/sys/arch/arm64/arm64/ |
| D | cpuswitch.S | 46 ldr x5, [x2, #(CI_CURPCB)] 47 str x3, [x5, #(PCB_SP) ] // save to old pcb 57 ldr x5, [x1, #(P_ADDR) ] // load new pcb 58 str x5, [x2, #(CI_CURPCB)] 61 ldr x4, [x5, #(PCB_TCB)] 64 ldr x19, [x5, #(PCB_SP) ] // load new stack pointer
|
| D | copy.S | 52 adr x5, .Lcopyfault 53 str x5, [x3, #(PCB_ONFAULT)] // set handler 105 adr x5, .Lcopyfault 106 str x5, [x3, #(PCB_ONFAULT)] // set handler 142 adr x5, .Lcopyfault 143 str x5, [x3, #(PCB_ONFAULT)] // set handler 187 adr x5, .Lcopyfault 188 str x5, [x3, #(PCB_ONFAULT)] // set handler
|
| D | copystr.S | 38 ldr x5, [x6, #(PCB_ONFAULT)] 70 str x5, [x6, #(PCB_ONFAULT)] 86 ldr x5, [x6, #(PCB_ONFAULT)]
|
| D | locore0.S | 205 mov x5, x30 276 mov x30, x5
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| D | trampoline-1.c | 21 double x5 (void) {return 0; } in foo() 25 double a (int k, pfun x1, pfun x2, pfun x3, pfun x4, pfun x5) in foo() 34 return x4 () + x5 (); in foo() 41 if (fabs(a( i, x1, x2, x3, x4, x5 ) - correct [i]) > 0.1) in foo()
|
| /openbsd/src/libexec/ld.so/ |
| D | chacha_private.h | 91 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local 128 x5 = j5; in chacha_encrypt_bytes() 141 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 144 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 154 x5 = PLUS(x5,j5); in chacha_encrypt_bytes() 172 x5 = XOR(x5,U8TO32_LITTLE(m + 20)); in chacha_encrypt_bytes() 196 U32TO8_LITTLE(c + 20,x5); in chacha_encrypt_bytes()
|
| /openbsd/src/usr.bin/ssh/ |
| D | chacha.c | 89 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local 126 x5 = j5; in chacha_encrypt_bytes() 139 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 142 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 152 x5 = PLUS(x5,j5); in chacha_encrypt_bytes() 169 x5 = XOR(x5,U8TO32_LITTLE(m + 20)); in chacha_encrypt_bytes() 192 U32TO8_LITTLE(c + 20,x5); in chacha_encrypt_bytes()
|
| /openbsd/src/lib/libc/crypt/ |
| D | chacha_private.h | 91 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local 128 x5 = j5; in chacha_encrypt_bytes() 141 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 144 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 154 x5 = PLUS(x5,j5); in chacha_encrypt_bytes() 172 x5 = XOR(x5,U8TO32_LITTLE(m + 20)); in chacha_encrypt_bytes() 196 U32TO8_LITTLE(c + 20,x5); in chacha_encrypt_bytes()
|
| /openbsd/src/sys/crypto/ |
| D | chacha_private.h | 130 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local 167 x5 = j5; in chacha_encrypt_bytes() 180 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 183 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 193 x5 = PLUS(x5,j5); in chacha_encrypt_bytes() 211 x5 = XOR(x5,U8TO32_LITTLE(m + 20)); in chacha_encrypt_bytes() 235 U32TO8_LITTLE(c + 20,x5); in chacha_encrypt_bytes()
|
| D | curve25519.c | 268 const uint32_t x5 = in1[0]; in fe_add_impl() local 279 out[0] = (x5 + x23); in fe_add_impl() 310 const uint32_t x5 = in1[0]; in fe_sub_impl() local 321 out[0] = ((0x7ffffda + x5) - x23); in fe_sub_impl() 352 const uint32_t x5 = in1[0]; in fe_mul_impl() local 363 uint64_t x40 = ((uint64_t)x23 * x5); in fe_mul_impl() 364 uint64_t x41 = (((uint64_t)x23 * x7) + ((uint64_t)x25 * x5)); in fe_mul_impl() 365 uint64_t x42 = ((((uint64_t)(0x2 * x25) * x7) + ((uint64_t)x23 * x9)) + ((uint64_t)x27 * x5)); in fe_mul_impl() 366 …= (((((uint64_t)x25 * x9) + ((uint64_t)x27 * x7)) + ((uint64_t)x23 * x11)) + ((uint64_t)x29 * x5)); in fe_mul_impl() 367 … (((uint64_t)x25 * x11) + ((uint64_t)x29 * x7)))) + ((uint64_t)x23 * x13)) + ((uint64_t)x31 * x5)); in fe_mul_impl() [all …]
|
| /openbsd/src/gnu/gcc/libgomp/testsuite/libgomp.c/ |
| D | atomic-10.c | 5 int x1, x2, x3, x4, x5; variable 22 x5 += 1; in f1() 32 x5 *= 3; in f1() 124 if (x1 != -2 || x2 != 0 || x3 != 8 || x4 != -1 || x5 != 3) in main()
|
| /openbsd/src/lib/libcrypto/chacha/ |
| D | chacha-merged.c | 121 u32 x0, x1, x2, x3, x4, x5, x6, x7; in chacha_encrypt_bytes() local 162 x5 = j5; in chacha_encrypt_bytes() 175 QUARTERROUND(x1, x5, x9, x13) in chacha_encrypt_bytes() 178 QUARTERROUND(x0, x5, x10, x15) in chacha_encrypt_bytes() 188 x5 = PLUS(x5, j5); in chacha_encrypt_bytes() 206 U32TO8_LITTLE(x->ks + 20, x5); in chacha_encrypt_bytes() 224 x5 = XOR(x5, U8TO32_LITTLE(m + 20)); in chacha_encrypt_bytes() 250 U32TO8_LITTLE(c + 20, x5); in chacha_encrypt_bytes()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/BPF/ |
| D | BPFInstrFormats.td | 18 def BPF_JMP : BPFOpClass<0x5>; 38 def BPF_AND : BPFArithOp<0x5>; 66 def BPF_JNE : BPFJumpOp<0x5>;
|
| /openbsd/src/libexec/ld.so/aarch64/ |
| D | ldasm.S | 84 stp x4, x5, [sp, #-16]! 105 ldp x4, x5, [sp], #16
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_syscall_linux_aarch64.inc | 108 register u64 x5 asm("x5") = arg6; 111 : "r"(x8), "0"(x0), "r"(x1), "r"(x2), "r"(x3), "r"(x4), "r"(x5)
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| D | spec37.C | 17 int x5; member
|
| /openbsd/src/gnu/usr.bin/perl/dist/Attribute-Handlers/t/ |
| D | multi.t | 98 my $x5 :Dokay(1,21); 100 sub x5 :Dokay(1,23);
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| D | 20021118-1.c | 3 int foo (struct s s, int x1, int x2, int x3, int x4, int x5, int x6, int x7) in foo() argument
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.warn/ |
| D | impint.C | 29 X x5(3.5, 1); // WARNING - double to int in fn()
|
| /openbsd/src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| D | 299.crt | 19 x5/sIFKnqyL90ol++NHsnH25xb2envr8L3sC0rs2pxqzkr94IFkfgzSwkvLvoDq1
|
| D | 2820.key | 15 OJLa576yBMNoW1T1bmzG9d/7x5+k8fuehRc7L/PPwyFpI9ex2IquN48CgYEAnsBJ
|
| D | 3400.key | 18 SQjY9otu8laWext6Etbr7VfABmdXJICGOOLYpu8CgYAp5FChWZb/J7TCv+x5+8Tw
|
| D | 3017.key | 20 x5/8jYF0HjdpksAE6WdXvuSACI5JyBCMaWbuU+UHLiewAi2ZVu/dQzSIB7GAWT1r
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
| D | vararg2.c | 19 #define _gnu_count2(_,x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,n,ys...) n argument 57 #define _c99_count2(_,x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,n,...) n argument
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/hwasan/ |
| D | hwasan_tag_mismatch_riscv64.S | 113 sd x5, 40(sp)
|