/freebsd/crypto/openssl/crypto/sha/asm/ |
H A D | keccak1600-s390x.pl | 21 # sha/keccak1600.c) with C[5] and D[5] held in register bank. Though 48 my @A = map([ 8*$_, 8*($_+1), 8*($_+2), 8*($_+3), 8*($_+4) ], (0,5,10,15,20)); 50 my @C = map("%r$_",(0,1,5..7)); 53 my ($src,$dst,$iotas) = map("%r$_",(2..4)); 63 [ 18, 2, 61, 56, 14 ]); 65 { my @C = @C; # copy, because we mess them up... 75 lg @C[0],$A[4][0]($src) 76 lg @C[1],$A[4][1]($src) 77 lg @C[2],$A[4][2]($src) 78 lg @C[3],$A[4][3]($src) [all …]
|
H A D | keccak1600-x86_64.pl | 21 # sha/keccak1600.c) with C[5] and D[5] held in register bank. Though 34 # Core 2 12.9 69 my @A = map([ 8*$_-100, 8*($_+1)-100, 8*($_+2)-100, 72 my @C = ("%rax","%rbx","%rcx","%rdx","%rbp"); 81 [ 18, 2, 61, 56, 14 ]); 90 mov $A[4][0](%rdi),@C[0] 91 mov $A[4][1](%rdi),@C[1] 92 mov $A[4][2](%rdi),@C[2] 93 mov $A[4][3](%rdi),@C[3] 94 mov $A[4][4](%rdi),@C[4] [all …]
|
H A D | keccak1600-c64x.pl | 20 # This is straightforward KECCAK_1X_ALT variant (see sha/keccak1600.c) 30 my @A = map([ $_, ($_+1), ($_+2), ($_+3), ($_+4) ], (5,10,16,21,26)); 33 my @C = (0..4,$A[3][0],$A[4][0]); 40 [ 18, 2, 61, 56, 14 ]); 47 $p ROTL B$src,$rot/2+1,A$dst 48 || ROTL A$src,$rot/2, B$dst 52 $p ROTL A$src,$rot/2,A$dst 53 || ROTL B$src,$rot/2,B$dst 65 # +2--->+------+------+<- -8 77 # +8--->+------+------+<- -2 [all …]
|
H A D | keccak1600-armv4.pl | 20 # Non-NEON code is KECCAK_1X variant (see sha/keccak1600.c) with bit 24 # be assembled even as Thumb-2. NEON code path is KECCAK_1X_ALT with 30 # Switch to KECCAK_2X variant for non-NEON code and merge almost 1/2 39 # e.g. 'eor a,b>>>x,c>>>y'. This conundrum is resolved by using 40 # 'eor a,b,c>>>(x-y)' and then merge-rotating 'a' in next operation 44 # is the keyword, i.e. "almost 1/2" is kind of complexity cap [for the 47 # Reduce per-round instruction count in Thumb-2 case by 16%. This is 57 # r=1088(*) Thumb-2(**) NEON 69 # (**) Thumb-2 results for Cortex-A5/A7 are likely to apply even to 90 my @C = map("r$_",(0..9)); [all …]
|
H A D | keccak1600-armv8.pl | 31 # Add hardware-assisted ARMv8.2 implementation. It's KECCAK_1X_ALT 60 # compiler this code is at least 2x faster... 80 [ 18, 2, 61, 56, 14 ]); 119 my @A = map([ "x$_", "x".($_+1), "x".($_+2), "x".($_+3), "x".($_+4) ], 123 my @C = map("x$_", (26,27,28,30)); 130 adr $C[2],iotas 131 stp $C[2],x30,[sp,#16] // 32 bytes on top are mine 136 eor $C[0],$A[0][0],$A[1][0] 138 eor $C[1],$A[0][1],$A[1][1] 139 eor $C[2],$A[0][2],$A[1][2] [all …]
|
H A D | keccak1600-mmx.pl | 20 # Below code is KECCAK_2X implementation (see sha/keccak1600.c) with 21 # C[5] held in register bank and D[5] offloaded to memory. Though 48 # Core 2 19/+170% 72 my @C = map("mm$_",(0..4)); 74 my @A = map([ 8*$_-100, 8*($_+1)-100, 8*($_+2)-100, 81 [ 18, 2, 61, 56, 14 ]); 86 &movq (@C[0],&QWP($A[4][0],"esi")); 87 &movq (@C[1],&QWP($A[4][1],"esi")); 88 &movq (@C[2],&QWP($A[4][2],"esi")); 89 &movq (@C[3],&QWP($A[4][3],"esi")); [all …]
|
H A D | keccak1600-ppc64.pl | 21 # *any* PPC64. Then PowerISA 2.07 adds 2x64-bit vector rotate, and 47 $LRSAVE =2*$SIZE_T; 68 my @A = map([ "r$_", "r".($_+1), "r".($_+2), "r".($_+3), "r".($_+4) ], 72 my @C = map("r$_", (0,3,4,5)); 78 [ 18, 2, 61, 56, 14 ]); 91 xor $C[0],$A[0][0],$A[1][0] ; Theta 93 xor $C[1],$A[0][1],$A[1][1] 95 xor $C[2],$A[0][2],$A[1][2] 96 std $A[2][4],`$TEMP+16`($sp) 97 xor $C[3],$A[0][3],$A[1][3] [all …]
|
/freebsd/crypto/openssl/crypto/sha/ |
H A D | keccak1600.c | 84 { 18, 2, 61, 56, 14 } 119 * possible. With one caveat. Because of the way C stores matrices, 126 uint64_t C[5], D[5]; in Theta() local 129 C[0] = A[0][0]; in Theta() 130 C[1] = A[0][1]; in Theta() 131 C[2] = A[0][2]; in Theta() 132 C[3] = A[0][3]; in Theta() 133 C[4] = A[0][4]; in Theta() 136 C[0] ^= A[y][0]; in Theta() 137 C[1] ^= A[y][1]; in Theta() [all …]
|
/freebsd/contrib/ntp/ |
H A D | CommitLog | 14 ntpd/invoke-ntpd.texi@1.528 +2 -2 17 ntpd/ntp.conf.5man@1.265 +2 -2 20 ntpd/ntp.conf.5mdoc@1.265 +2 -2 26 ntpd/ntp.conf.man.in@1.265 +2 -2 29 ntpd/ntp.conf.mdoc.in@1.265 +2 -2 [all...] |
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | cert-onecolumn.pem | 8 C 9 C 13 C 14 C 16 C 48 C 49 C 74 c 79 C 95 2 [all …]
|
/freebsd/contrib/libucl/doc/ |
H A D | libucl.3 | 16 \f[C]#include\ <ucl.h>\f[] 19 Libucl is a parser and \f[C]C\f[] API to parse and generate \f[C]ucl\f[] 24 Used to parse \f[C]ucl\f[] files and provide interface to extract 25 \f[C]ucl\f[] object. 26 Currently, \f[C]libucl\f[] can parse only full \f[C]ucl\f[] documents, 28 it is impossible to use \f[C]libucl\f[] as a streaming parser. 32 Convert \f[C]ucl\f[] objects to some textual or binary representation. 34 .IP \[bu] 2 35 \f[C]JSON\f[] \- valid json format (can possibly lose some original 37 .IP \[bu] 2 [all …]
|
/freebsd/sys/crypto/openssl/arm/ |
H A D | keccak1600-armv4.S | 48 ldmia r9,{r4,r5,r6,r7,r8,r9} @ A[4][2..4] 120 ldmia r10,{r10,r11,r12,r14} @ A[1][2..3] 126 ldmia r10,{r10,r11,r12,r14} @ A[1][4]..A[2][0] 132 ldmia r10,{r10,r11,r12,r14} @ A[2][1..2] 138 ldmia r10,{r10,r11,r12,r14} @ A[2][3..4] 150 ldmia r10,{r10,r11,r12,r14} @ A[3][2..3] 162 ldr r12,[sp,#16] @ A[0][2] 177 eor r10,r0,r5,ror#32-1 @ E[0] = ROL64(C[2], 1) ^ C[0]; 187 eor r12,r6,r1,ror#32-1 @ E[1] = ROL64(C[0], 1) ^ C[3]; 192 eor r0,r8,r3,ror#32-1 @ C[0] = ROL64(C[1], 1) ^ C[4]; [all …]
|
/freebsd/contrib/ntp/sntp/scripts/ |
H A D | genLocInfo | 12 -d) sdir="$2" ; shift 2 ;; 13 -f) locfile="$2" ; shift 2 ;; 47 CVO_OSVER=$2 57 ${V}echo "Looking for <$lf>" >&2 71 ${V}echo "Looking for <$lf>" >&2 84 ${V}echo "Looking for <$lf>" >&2 92 ${V}echo "Looking for <$lf>" >&2 109 ${V}echo "Looking for <$lf>" >&2 123 ${V}echo "Looking for <$lf>" >&2 133 echo "No loc/XXX file found!" >&2 [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-subst-regex.mk | 3 # Tests for the :C,from,to, variable modifier. 16 .if ${:Ua b b c:C,a b,,} != "a b b c" 22 .if ${:Ua b b c:C,a b,,1} != "a b b c" 29 .if ${:Ua b b c:C,a b,,W} != " b c" 35 .if ${:Ua b b c:C,b,,g} != "a c" 39 # The first :C modifier has the 'W' modifier, which makes the whole 41 # of "1 2" with "___". The 'W' modifier only applies to this single :C 42 # modifier. This is demonstrated by the :C modifier that follows. If the 45 .if ${:U1 2 3 1 2 3:C,1 2,___,Wg:C,_,x,} != "x__ 3 x__ 3" 56 .if ${:U1 23 456:C,..,\0\0,} != "1 2323 45456" [all …]
|
/freebsd/contrib/netbsd-tests/ipf/expected/ |
H A D | ni5 | 1 4500 002c 0000 4000 ff06 02fc 0101 0101 96cb e002 8032 0015 bd6b c9c8 0000 0000 6002 2238 f5a2 0000… 3 4500 002c ffdd 4000 ef06 5374 96cb e002 c0a8 0103 0015 8032 3786 76c4 bd6b c9c9 6012 269c 8369 0000… 5 4500 0028 0001 4000 ff06 02ff 0101 0101 96cb e002 8032 0015 bd6b c9c9 3786 76c5 5010 269c 5aa0 0000 8 …c 967e 0000 3232 302d 636f 6f6d 6273 2e61 6e75 2e65 6475 2e61 7520 4e63 4654 5064 2053 6572 7665 7… 10 4500 0028 0002 4000 ff06 02fe 0101 0101 96cb e002 8032 0015 bd6b c9c9 3786 770c 5010 269c 5a59 0000 12 …c bd6b c9c9 5018 269c 1087 0000 3232 302d 0d0a 3232 302d 4d61 696e 7461 696e 6564 2062 7920 5253 5… 14 4500 0028 0003 4000 ff06 02fd 0101 0101 96cb e002 8032 0015 bd6b c9c9 3786 77ab 5010 269c 59ba 0000 16 4500 0038 0004 4000 ff06 02ec 0101 0101 96cb e002 8032 0015 bd6b c9c9 3786 77ab 5018 269c d1c5 0000… 18 4500 0028 ffe0 4000 ef06 5375 96cb e002 c0a8 0103 0015 8032 3786 77ab bd6b c9d9 5010 269c 9a00 0000 20 …c ffe1 4000 ef06 5330 96cb e002 c0a8 0103 0015 8032 3786 77ab bd6b c9d9 5018 269c b00f 0000 3333 3… [all …]
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-cardinalities_test.cc | 30 // Google Mock - a framework for writing C++ mock classes. 64 TEST(CardinalityTest, IsDefaultConstructable) { Cardinality c; } in TEST() local 69 Cardinality c = Exactly(1); in TEST() local 70 EXPECT_FALSE(c.IsSatisfiedByCallCount(0)); in TEST() 71 EXPECT_TRUE(c.IsSatisfiedByCallCount(1)); in TEST() 72 EXPECT_TRUE(c.IsSaturatedByCallCount(1)); in TEST() 75 c = Exactly(2); in TEST() 76 EXPECT_FALSE(c.IsSatisfiedByCallCount(1)); in TEST() 77 EXPECT_TRUE(c.IsSatisfiedByCallCount(2)); in TEST() 78 EXPECT_TRUE(c.IsSaturatedByCallCount(2)); in TEST() [all …]
|
/freebsd/stand/ficl/softwords/ |
H A D | classes.fr | 3 \ ** F I C L 2 . 0 C L A S S E S 13 object subclass c-ref 18 drop 2@ ; 20 drop 2! ; 23 object subclass c-byte 26 : get drop c@ ; 27 : set drop c! ; 30 object subclass c-2byte 31 2 chars: .payload 37 object subclass c-4byte [all …]
|
/freebsd/bin/sh/tests/builtins/ |
H A D | read1.0 | 3 echo "1 2 3" | { read a; echo "x${a}x"; } 4 echo "1 2 3" | { read a b; echo "x${a}x${b}x"; } 5 echo "1 2 3" | { read a b c; echo "x${a}x${b}x${c}x"; } 6 echo "1 2 3" | { read a b c d; echo "x${a}x${b}x${c}x${d}x"; } 8 echo " 1 2 3 " | { read a b c; echo "x${a}x${b}x${c}x"; } 9 echo " 1 2 3 " | { unset IFS; read a b c; echo "x${a}x${b}x${c}x"; } 10 echo " 1 2 3 " | { IFS=$(printf ' \t\n') read a b c; echo "x${a}x${b}x${c}x"; } 11 echo " 1 2 3 " | { IFS= read a b; echo "x${a}x${b}x"; } 13 echo " 1,2 3 " | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } 14 echo ", 2 ,3" | { IFS=' ,' read a b c; echo "x${a}x${b}x${c}x"; } [all …]
|
/freebsd/secure/caroot/untrusted/ |
H A D | GeoTrust_Universal_CA_2.pem | 2 ## GeoTrust Universal CA 2 18 Issuer: C = US, O = GeoTrust Inc., CN = GeoTrust Universal CA 2 22 Subject: C = US, O = GeoTrust Inc., CN = GeoTrust Universal CA 2 29 7b:57:af:4a:26:fc:d8:f5:5e:a7:6e:19:db:74:0c: 32 1e:5c:4e:2b:85:26:74:82:7a:0c:76:a0:6f:4d:ce: 33 41:2d:a0:15:06:14:5f:b7:42:cd:7b:8f:58:61:34: 34 dc:2a:08:f9:2e:c3:01:a6:22:44:1c:4c:07:82:e6: 35 5b:ce:d0:4a:7c:04:d3:19:73:27:f0:aa:98:7f:2e: 37 c3:a1:05:6f:56:8e:8f:10:26:a5:49:c3:2e:d7:41: 39 79:bd:00:3c:12:6d:2b:15:b1:ac:4b:b1:ee:18:b9: [all …]
|
/freebsd/secure/caroot/trusted/ |
H A D | ANF_Secure_Server_Root_CA.pem | 19 …Issuer: serialNumber = G63287510, C = ES, O = ANF Autoridad de Certificacion, OU = ANF CA Raiz, CN… 23 …Subject: serialNumber = G63287510, C = ES, O = ANF Autoridad de Certificacion, OU = ANF CA Raiz, C… 28 00:db:eb:6b:2b:e6:64:54:95:82:90:a3:72:a4:19: 29 01:9d:9c:0b:81:5f:73:49:ba:a7:ac:f3:04:4e:7b: 30 96:0b:ec:11:e0:5b:a6:1c:ce:1b:d2:0d:83:1c:2b: 32 c8:61:4e:b6:26:c1:4c:8d:ff:4c:ef:34:b2:1f:65: 34 20:97:a1:ed:68:4c:de:92:17:4b:bc:ab:ff:65:9a: 35 9e:fb:47:d9:57:72:f3:09:a1:ae:76:44:13:6e:9c: 36 2d:44:39:bc:f9:c7:3b:a4:58:3d:41:bd:b4:c2:49: 37 a3:c8:0d:d2:97:2f:07:65:52:00:a7:6e:c8:af:68: [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | UnicodeCaseFold.cpp | 16 int llvm::sys::unicode::foldCharSimple(int C) { in foldCharSimple() argument 17 if (C < 0x0041) in foldCharSimple() 18 return C; in foldCharSimple() 20 if (C <= 0x005a) in foldCharSimple() 21 return C + 32; in foldCharSimple() 23 if (C == 0x00b5) in foldCharSimple() 25 if (C < 0x00c0) in foldCharSimple() 26 return C; in foldCharSimple() 28 if (C <= 0x00d6) in foldCharSimple() 29 return C in foldCharSimple() [all...] |
/freebsd/stand/forth/ |
H A D | menu.4th | 1 \ Copyright (c) 2003 Scott Long <scottl@FreeBSD.org> 2 \ Copyright (c) 2003 Aleksander Fafula <alex@fafula.com> 3 \ Copyright (c) 2006-2015 Devin Teske <dteske@FreeBSD.org> 11 \ 2. Redistributions in binary form must reproduce the above copyright 154 2drop 170 : +c! ( N C-ADDR/U K -- C-ADDR/U ) 171 3 pick 3 pick ( n c-addr/u k -- n c-addr/u k n c-addr ) 172 rot + c! ( n c-addr/u k n c-addr -- n c-addr/u ) 173 rot drop ( n c-addr/u -- c-addr/u ) 179 : namespace ( C-ADDR/U N -- ) also menu-namespace +c! evaluate previous ; [all …]
|
/freebsd/contrib/netbsd-tests/bin/sh/ |
H A D | t_arith.sh | 3 # Copyright (c) 2016 The NetBSD Foundation, Inc. 11 # 2. Redistributions in binary form must reproduce the above copyright 34 # only digits to examine, and it is good to be sure that 1 + 1 really gives 2 35 # and that 42 or 123 don't look like success because there is a 2 in them. 44 if ! ${TEST_SH} -c ': $(( 0x10000 ))' 2>/dev/null 49 test $( ${TEST_SH} -c 'echo $(( 0x1FFFF ))' ) = 131071 || return 54 # 2. represent a positive number input as negative value 64 if ! ${TEST_SH} -c ': $(( 0xC0000000 ))' 2>/dev/null 70 if ${TEST_SH} 2>/dev/null \ 71 -c 'case $(( 0xC0000000 )); in (-*) exit 0;; esac; exit 1' [all …]
|
/freebsd/share/doc/papers/diskperf/ |
H A D | results.ms | 1 .\" Copyright (c) 1983 The Regents of the University of California. 9 .\" 2. Redistributions in binary form must reproduce the above copyright 50 c s s s s 51 c s s s s 52 c s s s s 56 l | c c | c c. 64 1 Drive 2 Drives 1 Drive 2 Drives 72 c s s s s 73 c s s s s 77 l | c c | c c. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | sm4intrin.h | 26 /// This intrinsic corresponds to the \c VSM4KEY4 instruction. 47 /// tmp.byte[2] := SBOX_BYTE(dword, 2) 63 /// P[2] := __B.xmm[i].dword[2] 65 /// C[0] := F_KEY(P[0], P[1], P[2], P[3], __A.xmm[i].dword[0]) 66 /// C[1] := F_KEY(P[1], P[2], P[3], C[0], __A.xmm[i].dword[1]) 67 /// C[2] := F_KEY(P[2], P[3], C[0], C[1], __A.xmm[i].dword[2]) 68 /// C[3] := F_KEY(P[3], C[0], C[1], C[2], __A.xmm[i].dword[3]) 69 /// DEST.xmm[i].dword[0] := C[0] 70 /// DEST.xmm[i].dword[1] := C[1] 71 /// DEST.xmm[i].dword[2] := C[2] [all …]
|