/freebsd/share/doc/papers/sysperf/ |
H A D | appendix.ms | 10 'ds / \\h'\\w' 'u-\\w'/'u'/ 11 'ds /* \\h'\\w' 'u-\\w'/'u'/* 23 \f2\s12\h'\\n(.lu-\w'\\*(=f'u'\\*(=f\fP\s0\h'|0u' 59 \f2\s14\h'\\n(.lu-\w'\\$1'u'\\$1\fP\s0\h'|0u'\c 124 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 128 \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c 133 \h'|11n'\*(+Kchar\*(-K \fI*\fPargv[]; 135 \h'|11n'\*(+Kregister\*(-K \*(+Kint\*(-K ncalls; 137 \h'|11n'\*(+Kif\*(-K (argc < 2) \*(+K{\*(-K 140 \h'|11n'\*(+K}\*(-K [all …]
|
/freebsd/share/doc/papers/kernmalloc/ |
H A D | appendix.ms | 10 'ds / \\h'\\w' 'u-\\w'/'u'/ 11 'ds /* \\h'\\w' 'u-\\w'/'u'/* 23 \f2\s12\h'\\n(.lu-\w'\\*(=f'u'\\*(=f\fP\s0\h'|0u' 59 \f2\s14\h'\\n(.lu-\w'\\$1'u'\\$1\fP\s0\h'|0u'\c 105 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 120 \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c 123 \*(+K#define\*(-K MINBUCKET\h'|31n'4\h'|51n'\fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 125 4 => min allocation of 16 bytes \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c 131 \fI\h'\w' 'u-\w'/'u'/\fP\fI*\fP\c\c 136 \fI*\fP\fI\h'\w' 'u-\w'/'u'/\fP\c [all …]
|
/freebsd/crypto/openssl/crypto/chacha/asm/ |
H A D | chacha-loongarch64.pl | 16 my ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$r$_",(4..11)); 42 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 77 ld.w $t0,$t0,0 115 add.w @x[$a0],@x[$a0],@x[$b0] 117 rotri.w @x[$d0],@x[$d0],16 # rotate left 16 bits 118 add.w @x[$a1],@x[$a1],@x[$b1] 120 rotri.w @x[$d1],@x[$d1],16 122 add.w @x[$c0],@x[$c0],@x[$d0] 124 rotri.w @x[$b0],@x[$b0],20 # rotate left 12 bits 125 add.w @x[$c1],@x[$c1],@x[$d1] [all …]
|
/freebsd/contrib/bearssl/src/ec/ |
H A D | ec_c25519_m15.c | 49 uint32_t w; 52 w = x[u]; 56 w <<= k; 60 tmp[35 - k] |= (unsigned char)w; 61 tmp[34 - k] |= (unsigned char)(w >> 8); 62 tmp[33 - k] |= (unsigned char)(w >> 16); 63 tmp[32 - k] |= (unsigned char)(w >> 24); 140 * value is the resulting carry. The source (w) and destination (d) 144 norm13(uint32_t *d, const uint32_t *w, size_t len) in norm13() argument 153 z = w[u] + cc; in norm13() [all …]
|
H A D | ec_p256_m15.c | 95 * value is the resulting carry. The source (w) and destination (d) 99 norm13(uint32_t *d, const uint32_t *w, size_t len) in norm13() argument 108 z = w[u] + cc; in norm13() 148 uint32_t u[45], v[45], w[90]; in mul20() local 186 #define CPR1(w, cprcc) do { \ in mul20() argument 187 uint32_t cprz = (w) + cprcc; \ in mul20() 188 (w) = cprz & 0x1FFF; \ in mul20() 227 w[(i << 1) + 0] = MUL15(u[i + 0], v[i + 0]); in mul20() 228 w[(i << 1) + 1] = MUL15(u[i + 0], v[i + 1]) in mul20() 230 w[(i << 1) + 2] = MUL15(u[i + 0], v[i + 2]) in mul20() [all …]
|
/freebsd/crypto/openssl/crypto/md5/asm/ |
H A D | md5-loongarch64.pl | 18 my ($a0,$a1,$a2,$a3,$a4,$a5,$a6,$a7)=map("\$r$_",(4..11)); 23 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 36 # In LoongArch we have to use two instructions of lu12i.w and ori to load a 37 # 32-bit immediate into a general register. Meanwhile, the instruction lu12i.w 39 # than or equal to (1<<19), we need provide lu12i.w a corresponding negative 42 # The details of the instruction lu12i.w can be found as following: 47 $code .= " ld.w $t0,$a1,0 /* (NEXT STEP) X[0] */\n" if ($pos == -1); 49 $code .= " add.w $t2,$dst,$t0 /* dst + X[k] */\n" if ($pos == -1); 51 lu12i.w $t8,$T_i_h /* load bits [31:12] of constant */ 53 ori $t8,$t8,$T_i_l /* load bits [11:0] of constant */ [all …]
|
/freebsd/sys/crypto/skein/ |
H A D | skein_block.c | 82 u64b_t w [WCNT]; /* local copy of input block */ in Skein_256_Process_Block() local 103 Skein_Get64_LSB_First(w,blkPtr,WCNT); /* get input block in little-endian format */ in Skein_256_Process_Block() 105 Skein_Show_Block(BLK_BITS,&ctx->h,ctx->X,blkPtr,w,ks,ts); in Skein_256_Process_Block() 107 X0 = w[0] + ks[0]; /* do the first full key injection */ in Skein_256_Process_Block() 108 X1 = w[1] + ks[1] + ts[0]; in Skein_256_Process_Block() 109 X2 = w[2] + ks[2] + ts[1]; in Skein_256_Process_Block() 110 X3 = w[3] + ks[3]; in Skein_256_Process_Block() 196 #if R256_Unroll_R(11) in Skein_256_Process_Block() 197 R256_8_rounds(11); in Skein_256_Process_Block() 213 ctx->X[0] = X0 ^ w[0]; in Skein_256_Process_Block() [all …]
|
/freebsd/sys/contrib/openzfs/module/icp/algs/skein/ |
H A D | skein_block.c | 91 uint64_t w[WCNT]; /* local copy of input block */ in Skein_256_Process_Block() local 120 Skein_Get64_LSB_First(w, blkPtr, WCNT); in Skein_256_Process_Block() 122 Skein_Show_Block(BLK_BITS, &ctx->h, ctx->X, blkPtr, w, ks, ts); in Skein_256_Process_Block() 124 X0 = w[0] + ks[0]; /* do the first full key injection */ in Skein_256_Process_Block() 125 X1 = w[1] + ks[1] + ts[0]; in Skein_256_Process_Block() 126 X2 = w[2] + ks[2] + ts[1]; in Skein_256_Process_Block() 127 X3 = w[3] + ks[3]; in Skein_256_Process_Block() 217 #if R256_Unroll_R(11) in Skein_256_Process_Block() 218 R256_8_rounds(11); in Skein_256_Process_Block() 236 ctx->X[0] = X0 ^ w[0]; in Skein_256_Process_Block() [all …]
|
/freebsd/crypto/libecc/src/hash/ |
H A D | ripemd160.c | 77 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }, 78 { 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8 }, 79 { 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12 }, 80 { 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2 }, 81 { 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13 } 84 { 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8 }, 85 { 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12 }, 86 { 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5 }, 87 { 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12 }, 88 { 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6 } [all …]
|
/freebsd/libexec/bootpd/ |
H A D | Changes | 8 03/27/96 gwr@mc.com (Gordon W. Ross) 13 03/25/95 gwr@mc.com (Gordon W. Ross) 28 11/30/94 Tonny van Lankveld <A.L.M.G.v.Lankveld@urc.tue.nl> 44 08/24/94 gwr@mc.com (Gordon W. Ross) 50 08/24/94 gwr@mc.com (Gordon W. Ross) 55 08/20/94 gwr@mc.com (Gordon W. Ross) 73 05/27/94 gwr@mc.com (Gordon W. Ross) 84 04/30/94 gwr@mc.com (Gordon W. Ross) 100 04/16/94 gwr@mc.com (Gordon W. Ross) 134 02/20/94 gwr@mc.com (Gordon W. Ross) [all …]
|
/freebsd/usr.bin/tail/tests/ |
H A D | tail_test.sh | 158 jot -w "%0511d" 1030 0 > infile 159 jot -w "%0511d" 1030 1029 0 -1 > expectfile 178 jot -w "%01023d" 32768 0 | tail -r > outfile ; 186 jot -w "%01023d" 10 32767 0 -1 > expectfile 199 jot -s " " -w "%07d" 18000 0 > infile 200 jot -s " " -w "%07d" 18000 18000 >> infile 201 jot -s " " -w "%07d" 18000 36000 >> infile 202 jot -s " " -w "%07d" 18000 36000 > expectfile 203 jot -s " " -w "%07d" 18000 18000 >> expectfile 204 jot -s " " -w "%07d" 18000 0 >> expectfile [all …]
|
/freebsd/sys/crypto/sha2/ |
H A D | sha512c_arm64.c | 40 uint64x2_t W[8]; in SHA512_Transform_arm64_impl() local 47 W[x] = vld1q_u64((const uint64_t *)(&block[(x) * 16])); \ in SHA512_Transform_arm64_impl() 48 W[x] = vreinterpretq_u64_u8(vrev64q_u8(vreinterpretq_u8_u64(W[x]))) in SHA512_Transform_arm64_impl() 50 /* 1. Prepare the first part of the message schedule W. */ in SHA512_Transform_arm64_impl() 78 * gh = S[(11 - i) % 4] in SHA512_Transform_arm64_impl() 93 #define A64_RNDr(S, W, i, ii) \ in SHA512_Transform_arm64_impl() argument 95 K_tmp = vaddq_u64(W[i], K_tmp); \ in SHA512_Transform_arm64_impl() 97 K_tmp = vaddq_u64(K_tmp, S[(11 - i) % 4]); \ in SHA512_Transform_arm64_impl() 99 vextq_u64(S[(10 - i) % 4], S[(11 - i) % 4], 1), \ in SHA512_Transform_arm64_impl() 101 S[(11 - i) % 4] = vsha512h2q_u64(S_tmp, S[(9 - i) % 4], S[(8 - i) % 4]); \ in SHA512_Transform_arm64_impl() [all …]
|
/freebsd/crypto/openssl/crypto/aes/asm/ |
H A D | aes-riscv64-zvkned.pl | 52 my $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 67 # Load all 11 round keys to v1-v11 registers. 178 @{[vaesz_vs $V24, $V1]} # with round key w[ 0, 3] 179 @{[vaesem_vs $V24, $V2]} # with round key w[ 4, 7] 180 @{[vaesem_vs $V24, $V3]} # with round key w[ 8,11] 181 @{[vaesem_vs $V24, $V4]} # with round key w[12,15] 182 @{[vaesem_vs $V24, $V5]} # with round key w[16,19] 183 @{[vaesem_vs $V24, $V6]} # with round key w[20,23] 184 @{[vaesem_vs $V24, $V7]} # with round key w[24,27] 185 @{[vaesem_vs $V24, $V8]} # with round key w[28,31] [all …]
|
/freebsd/bin/date/tests/ |
H A D | format_string_test.sh | 17 TEST2=1005600000 # 2001-11-12 21:11:12 120 format_string_test D D 02/07/70 11/12/01 123 format_string_test F F "1970-02-07" "2001-11-12" 133 format_string_test m m 02 11 144 format_string_test W W 05 46 145 format_string_test w w 6 1 147 format_string_test x x "02/07/70" "11/12/01" 155 iso8601_string_test default "" "" "1970-02-07" "2001-11-12" 156 iso8601_string_test date date "" "1970-02-07" "2001-11-12" 157 iso8601_string_test hours hours "" "1970-02-07T07+00:00" "2001-11-12T21+00:00" [all …]
|
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha_local.h | 159 const SHA_LONG *W = (const SHA_LONG *)data; in HASH_BLOCK_DATA_ORDER() local 161 X(0) = W[0]; in HASH_BLOCK_DATA_ORDER() 162 X(1) = W[1]; in HASH_BLOCK_DATA_ORDER() 164 X(2) = W[2]; in HASH_BLOCK_DATA_ORDER() 166 X(3) = W[3]; in HASH_BLOCK_DATA_ORDER() 168 X(4) = W[4]; in HASH_BLOCK_DATA_ORDER() 170 X(5) = W[5]; in HASH_BLOCK_DATA_ORDER() 172 X(6) = W[6]; in HASH_BLOCK_DATA_ORDER() 174 X(7) = W[7]; in HASH_BLOCK_DATA_ORDER() 176 X(8) = W[8]; in HASH_BLOCK_DATA_ORDER() [all …]
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | vdev_raidz_math_powerpc_altivec_common.h | 33 #define VR0_(REG, ...) "%[w"#REG"]" 34 #define VR1_(_1, REG, ...) "%[w"#REG"]" 35 #define VR2_(_1, _2, REG, ...) "%[w"#REG"]" 36 #define VR3_(_1, _2, _3, REG, ...) "%[w"#REG"]" 37 #define VR4_(_1, _2, _3, _4, REG, ...) "%[w"#REG"]" 38 #define VR5_(_1, _2, _3, _4, _5, REG, ...) "%[w"#REG"]" 39 #define VR6_(_1, _2, _3, _4, _5, _6, REG, ...) "%[w"#REG"]" 40 #define VR7_(_1, _2, _3, _4, _5, _6, _7, REG, ...) "%[w"#REG"]" 60 #define VR(X) "%[w"#X"]" 62 #define RVR0_(REG, ...) [w##REG] "v" (w##REG) [all …]
|
/freebsd/share/doc/papers/timecounter/ |
H A D | tmac.usenix | 4 .nr VS 11 50 . nr Ia \w\\$1\ \ u 98 ' nr QS 11i+0.5v-1u+\\nyu 123 .nr QQ 11i-\\nb 163 .nr QR 11i-1v-1u+\\nyu \" y is negative 210 .pl 11i 211 .nr QQ 11i+\ny 234 .nr QQ 11i+\\ny 256 .nr DL \w\\*(TT 483 .nr QQ 11i-\\nb-\\$1 [all …]
|
/freebsd/lib/msun/src/ |
H A D | s_atan.c | 20 * [7/16,11/16] atan(x) = atan(1/2) + atan( (t-0.5)/(1+t/2) ) 21 * [11/16.19/16] atan(x) = atan( 1 ) + atan( (t-1)/(1+t) ) 72 double w,s1,s2,z; in atan() local 93 if (ix < 0x3fe60000) { /* 7/16 <=|x|<11/16 */ in atan() 95 } else { /* 11/16<=|x|< 19/16 */ in atan() 107 w = z*z; in atan() 109 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10]))))); in atan() 110 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9])))); in atan()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrThumb2.td | 388 let PredicateMethod = "isUnsignedOffset<11, 1>"; 392 def wlslabel_u11 : BFLabelOp<"false", "false", "true", "11", "ARM::fixup_wls"> { 402 def lelabel_u11 : BFLabelOp<"false", "true", "true", "11", "ARM::fixup_le"> { 448 let Inst{11-8} = Rd; 449 let Inst{26} = imm{11}; 462 let Inst{11-8} = Rd; 463 let Inst{26} = imm{11}; 475 let Inst{26} = imm{11}; 487 let Inst{11-8} = Rd; 490 let Inst{14-12} = ShiftedRm{11-9}; [all …]
|
/freebsd/crypto/libecc/src/examples/hash/ |
H A D | md4.c | 15 0, 4, 8, 12, 0, 1, 2, 3, 3, 7, 11, 19, 0 21 0, 2, 1, 3, 0, 8, 4, 12, 3, 9, 11, 15, 0x6ed9eba1 33 u32 W[16]; in md4_process() local 49 GET_UINT32_LE(W[i], data, (4 * i)); in md4_process() 54 A = ROTL_MD4((A + F_MD4(B, C, D) + W[idx] + C1_MD4[12]), C1_MD4[8]); in md4_process() 56 D = ROTL_MD4((D + F_MD4(A, B, C) + W[idx] + C1_MD4[12]), C1_MD4[9]); in md4_process() 58 C = ROTL_MD4((C + F_MD4(D, A, B) + W[idx] + C1_MD4[12]), C1_MD4[10]); in md4_process() 60 B = ROTL_MD4((B + F_MD4(C, D, A) + W[idx] + C1_MD4[12]), C1_MD4[11]); in md4_process() 64 A = ROTL_MD4((A + G_MD4(B, C, D) + W[idx] + C2_MD4[12]), C2_MD4[8]); in md4_process() 66 D = ROTL_MD4((D + G_MD4(A, B, C) + W[idx] + C2_MD4[12]), C2_MD4[9]); in md4_process() [all …]
|
/freebsd/lib/libc/nls/ |
H A D | pl_PL.ISO8859-2.msg | 20 7 Zbyt d�uga lista argument�w 26 10 Brak proces�w potomnych 28 11 Unikni�to zakleszczenia zasob�w 52 23 Zbyt wiele otwartych plik�w w systemie 54 24 Zbyt wiele otwartych plik�w 66 30 System plik�w tylko do odczytu 78 36 Operacja jest w�a�nie wykonywana 98 46 Nieobs�ugiwana rodzina protoko��w 100 47 Rodzina adres�w nie jest obs�ugiwana przez rodzin� protoko��w 102 48 Adres jest ju� w u�yciu [all …]
|
/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/ |
H A D | blake3_impl.h | 84 {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, 85 {2, 6, 3, 10, 7, 0, 4, 13, 1, 11, 12, 5, 9, 14, 15, 8}, 86 {3, 4, 10, 12, 13, 2, 7, 14, 6, 5, 9, 0, 11, 15, 8, 1}, 87 {10, 7, 12, 9, 14, 3, 13, 15, 4, 0, 11, 2, 5, 8, 1, 6}, 88 {12, 13, 9, 11, 15, 10, 14, 8, 7, 2, 5, 3, 0, 1, 6, 4}, 89 {9, 14, 11, 5, 8, 12, 15, 1, 13, 3, 0, 10, 2, 6, 4, 7}, 90 {11, 15, 5, 0, 1, 9, 8, 6, 14, 10, 2, 12, 3, 4, 7, 13}, 169 static inline void store32(void *dst, uint32_t w) { in store32() argument 171 p[0] = (uint8_t)(w >> 0); in store32() 172 p[1] = (uint8_t)(w >> 8); in store32() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/ |
H A D | hash_sha256_cp.c | 79 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) 88 #define RNDr(S, W, i, ii) \ argument 91 W[i + ii] + Krnd[i + ii]) 93 #define MSCH(W, ii, i) \ argument 94 W[i + ii + 16] = \ 95 s1(W[i + ii + 14]) + W[i + ii + 9] + s0(W[i + ii + 1]) + W[i + ii] 98 SHA256_Transform(uint32_t state[8], const uint8_t block[64], uint32_t W[64], in SHA256_Transform() 103 be32dec_vect(W, block, 64); in SHA256_Transform() 106 RNDr(S, W, 0, i); in SHA256_Transform() 107 RNDr(S, W, 1, i); in SHA256_Transform() [all …]
|
/freebsd/crypto/openssh/ |
H A D | nchan.ms | 1 .\" $OpenBSD: nchan.ms,v 1.8 2003/11/21 11:57:03 djm Exp $ 44 arrow "" "rcvd OCLOSE/" "shutdown_read" "send IEOF" from S1.e to S4.w 45 arrow "ibuf_empty/" "send IEOF" from S2.e to S3.w 49 box invis "rcvd OCLOSE/" "-" with .w at last arrow.c 51 arrow "start" "" from S1.w+(-0.5,0) to S1.w 54 box invis " send IEOF" with .w at last arrow.c 66 arrow "" "write_failed/" "shutdown_write" "send OCLOSE" from S1.e to S3.w 67 arrow "obuf_empty ||" "write_failed/" "shutdown_write" "send OCLOSE" from S2.e to S4.w 71 box invis "rcvd IEOF/" "-" with .w at last arrow.c 73 arrow "start" "" from S1.w+(-0.5,0) to S1.w
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | operations_test.cpp | 123 (F("20110221-181003 W %s f4:4: Warning message") % pid).str(), line); in ATF_TEST_CASE_BODY() 178 datetime::set_mock_now(2011, 3, 19, 11, 40, 0, 100); in create_log() 179 logging::log(logging::level_debug, "file1", 11, "Debug 1"); in create_log() 181 datetime::set_mock_now(2011, 3, 19, 11, 40, 1, 200); in create_log() 184 datetime::set_mock_now(2011, 3, 19, 11, 40, 2, 300); in create_log() 187 datetime::set_mock_now(2011, 3, 19, 11, 40, 3, 400); in create_log() 192 datetime::set_mock_now(2011, 3, 19, 11, 40, 4, 500); in create_log() 193 logging::log(logging::level_debug, "file1", 11, "Debug 2"); in create_log() 195 datetime::set_mock_now(2011, 3, 19, 11, 40, 5, 600); in create_log() 198 datetime::set_mock_now(2011, 3, 19, 11, 40, 6, 700); in create_log() [all …]
|