| /freebsd-12-stable/sys/kern/ |
| D | md4c.c | 88 #define HH(a, b, c, d, x, s) { \ macro 228 HH (a, b, c, d, x[ 0], S31); /* 33 */ in MD4Transform() 229 HH (d, a, b, c, x[ 8], S32); /* 34 */ in MD4Transform() 230 HH (c, d, a, b, x[ 4], S33); /* 35 */ in MD4Transform() 231 HH (b, c, d, a, x[12], S34); /* 36 */ in MD4Transform() 232 HH (a, b, c, d, x[ 2], S31); /* 37 */ in MD4Transform() 233 HH (d, a, b, c, x[10], S32); /* 38 */ in MD4Transform() 234 HH (c, d, a, b, x[ 6], S33); /* 39 */ in MD4Transform() 235 HH (b, c, d, a, x[14], S34); /* 40 */ in MD4Transform() 236 HH (a, b, c, d, x[ 1], S31); /* 41 */ in MD4Transform() [all …]
|
| D | md5c.c | 120 #define HH(a, b, c, d, x, s, ac) { \ macro 292 HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */ 293 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ 294 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ 295 HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ 296 HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */ 297 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ 298 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ 299 HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ 300 HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ [all …]
|
| /freebsd-12-stable/lib/libmd/ |
| D | md4c.c | 89 #define HH(a, b, c, d, x, s) { \ macro 236 HH (a, b, c, d, x[ 0], S31); /* 33 */ 237 HH (d, a, b, c, x[ 8], S32); /* 34 */ 238 HH (c, d, a, b, x[ 4], S33); /* 35 */ 239 HH (b, c, d, a, x[12], S34); /* 36 */ 240 HH (a, b, c, d, x[ 2], S31); /* 37 */ 241 HH (d, a, b, c, x[10], S32); /* 38 */ 242 HH (c, d, a, b, x[ 6], S33); /* 39 */ 243 HH (b, c, d, a, x[14], S34); /* 40 */ 244 HH (a, b, c, d, x[ 1], S31); /* 41 */ [all …]
|
| D | md5c.c | 118 #define HH(a, b, c, d, x, s, ac) { \ macro 284 HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */ in MD5Transform() 285 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ in MD5Transform() 286 HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ in MD5Transform() 287 HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ in MD5Transform() 288 HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */ in MD5Transform() 289 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ in MD5Transform() 290 HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */ in MD5Transform() 291 HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ in MD5Transform() 292 HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ in MD5Transform() [all …]
|
| /freebsd-12-stable/contrib/opie/libopie/ |
| D | md4c.c | 94 #define HH(a, b, c, d, x, s) { \ macro 216 HH(a, b, c, d, x[0], S31); /* 33 */ 217 HH(d, a, b, c, x[8], S32); /* 34 */ 218 HH(c, d, a, b, x[4], S33); /* 35 */ 219 HH(b, c, d, a, x[12], S34); /* 36 */ 220 HH(a, b, c, d, x[2], S31); /* 37 */ 221 HH(d, a, b, c, x[10], S32); /* 38 */ 222 HH(c, d, a, b, x[6], S33); /* 39 */ 223 HH(b, c, d, a, x[14], S34); /* 40 */ 224 HH(a, b, c, d, x[1], S31); /* 41 */ [all …]
|
| D | md5c.c | 132 #define HH(a, b, c, d, x, s, ac) { \ macro 262 HH(a, b, c, d, x[5], S31, 0xfffa3942); /* 33 */ 263 HH(d, a, b, c, x[8], S32, 0x8771f681); /* 34 */ 264 HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ 265 HH(b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ 266 HH(a, b, c, d, x[1], S31, 0xa4beea44); /* 37 */ 267 HH(d, a, b, c, x[4], S32, 0x4bdecfa9); /* 38 */ 268 HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */ 269 HH(b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ 270 HH(a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ [all …]
|
| /freebsd-12-stable/contrib/apr-util/crypto/ |
| D | apr_md4.c | 106 #define HH(a, b, c, d, x, s) { \ macro 339 HH (a, b, c, d, x[ 0], S31); /* 33 */ in MD4Transform() 340 HH (d, a, b, c, x[ 8], S32); /* 34 */ in MD4Transform() 341 HH (c, d, a, b, x[ 4], S33); /* 35 */ in MD4Transform() 342 HH (b, c, d, a, x[12], S34); /* 36 */ in MD4Transform() 343 HH (a, b, c, d, x[ 2], S31); /* 37 */ in MD4Transform() 344 HH (d, a, b, c, x[10], S32); /* 38 */ in MD4Transform() 345 HH (c, d, a, b, x[ 6], S33); /* 39 */ in MD4Transform() 346 HH (b, c, d, a, x[14], S34); /* 40 */ in MD4Transform() 347 HH (a, b, c, d, x[ 1], S31); /* 41 */ in MD4Transform() [all …]
|
| D | apr_md5.c | 132 #define HH(a, b, c, d, x, s, ac) { \ macro 391 HH(a, b, c, d, x[5], S31, 0xfffa3942); /* 33 */ in MD5Transform() 392 HH(d, a, b, c, x[8], S32, 0x8771f681); /* 34 */ in MD5Transform() 393 HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */ in MD5Transform() 394 HH(b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */ in MD5Transform() 395 HH(a, b, c, d, x[1], S31, 0xa4beea44); /* 37 */ in MD5Transform() 396 HH(d, a, b, c, x[4], S32, 0x4bdecfa9); /* 38 */ in MD5Transform() 397 HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */ in MD5Transform() 398 HH(b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */ in MD5Transform() 399 HH(a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */ in MD5Transform() [all …]
|
| /freebsd-12-stable/sbin/ipf/ipftest/ |
| D | md5.c | 92 #define HH(a, b, c, d, x, s, ac) \ macro 253 HH ( a, b, c, d, in[ 5], S31, UL(4294588738)); /* 33 */ in Transform() 254 HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */ in Transform() 255 HH ( c, d, a, b, in[11], S33, UL(1839030562)); /* 35 */ in Transform() 256 HH ( b, c, d, a, in[14], S34, UL(4259657740)); /* 36 */ in Transform() 257 HH ( a, b, c, d, in[ 1], S31, UL(2763975236)); /* 37 */ in Transform() 258 HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */ in Transform() 259 HH ( c, d, a, b, in[ 7], S33, UL(4139469664)); /* 39 */ in Transform() 260 HH ( b, c, d, a, in[10], S34, UL(3200236656)); /* 40 */ in Transform() 261 HH ( a, b, c, d, in[13], S31, UL( 681279174)); /* 41 */ in Transform() [all …]
|
| /freebsd-12-stable/sys/fs/ext2fs/ |
| D | ext2_hash.c | 101 #define HH(a, b, c, d, x, s) { \ macro 143 HH(a, b, c, d, data[3], 3); in ext2_half_md4() 144 HH(d, a, b, c, data[7], 9); in ext2_half_md4() 145 HH(c, d, a, b, data[2], 11); in ext2_half_md4() 146 HH(b, c, d, a, data[6], 15); in ext2_half_md4() 147 HH(a, b, c, d, data[1], 3); in ext2_half_md4() 148 HH(d, a, b, c, data[5], 9); in ext2_half_md4() 149 HH(c, d, a, b, data[0], 11); in ext2_half_md4() 150 HH(b, c, d, a, data[4], 15); in ext2_half_md4()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
| D | dfsqrt.S | 164 #define HH r7:6 macro 260 HH = mpyu(ROOTHI,ROOTHI) define 265 HH += lsr(HL,#31) 274 REM_HI = sub(FRACRAD,HH,P_CARRY0):carry 277 #undef HH
|
| /freebsd-12-stable/contrib/netbsd-tests/bin/ps/ |
| D | t_ps.sh | 341 check_heading_regexp '-o holdcnt -o holdcnt=HH -o holdcnt' \ 342 '^HOLDCNT HH HOLDCNT$'
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| D | NVPTXRegisterInfo.td | 39 def HH#i : NVPTXReg<"%hh"#i>; // 2x16-bit float 62 def Float16x2Regs : NVPTXRegClass<[v2f16], 32, (add (sequence "HH%u", 0, 4))>;
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | aes | 27 # tag CREATED_TIME like HH:MM:SS
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64SchedTSV110.td | 415 def : InstRW<[TSV110Wr_4cyc_1LdSt], (instregex "^LDR(BB|HH|W|X)ui$")>; 418 def : InstRW<[TSV110Wr_4cyc_1LdSt, WriteAdr], (instregex "^LDR(BB|HH|W|X)(post|pre)$")>; 422 def : InstRW<[TSV110Wr_4cyc_1LdSt], (instregex "^LDUR(BB|HH|W|X)i$")>; 445 def : InstRW<[TSV110Wr_1cyc_1LdSt], (instregex "^STUR(BB|HH|W|X)i$")>; 447 def : InstRW<[TSV110Wr_1cyc_1LdSt], (instregex "^STR(BB|HH|W|X)ui$")>; 449 def : InstRW<[TSV110Wr_1cyc_1LdSt, WriteAdr], (instregex "^STR(BB|HH|W|X)(post|pre)$")>; 450 def : InstRW<[TSV110Wr_1cyc_1LdSt, WriteAdr], (instregex "^STR(BB|HH|W|X)ro(W|X)$")>;
|
| D | AArch64SchedFalkorDetails.td | 1174 (instregex "^LDR(BB|HH|W|X)ui$")>; 1176 (instregex "^LDR(BB|HH|W|X)(post|pre)$")>; 1178 (instregex "^LDR(BB|HH|W|X)ro(W|X)$")>; 1184 (instregex "^LDUR(BB|HH|W|X)i$")>; 1282 (instregex "^STR(BB|HH|W|X)ui$")>; 1284 (instregex "^STR(BB|HH|W|X)(post|pre)$")>; 1286 (instregex "^STR(BB|HH|W|X)ro(W|X)$")>; 1290 (instregex "^STUR(BB|HH|W|X)i$")>;
|
| D | AArch64SchedExynosM3.td | 519 ReadAdrBase], (instregex "^LDR(BB|SBW|SBX|HH|SHW|SHX|SW|W|X)roW")>; 521 ReadAdrBase], (instregex "^LDR(BB|SBW|SBX|HH|SHW|SHX|SW|W|X)roX")>; 529 ReadAdrBase], (instregex "^STR(BB|HH|W|X)roW")>; 531 ReadAdrBase], (instregex "^STR(BB|HH|W|X)roX")>;
|
| D | AArch64SchedKryoDetails.td | 1486 (instregex "LDR(BB|HH|W|X)ui")>; 1492 (instregex "LDR(BB|HH|W|X)(post|pre)")>; 1498 (instregex "(LDR(BB|HH|W|X)ro(W|X)|PRFMro(W|X))")>; 1558 (instregex "LDUR(BB|HH|W|X)i")>; 2135 (instregex "STR(BB|HH|W|X)ui")>; 2141 (instregex "STR(BB|HH|W|X)ro(W|X)")>; 2147 (instregex "STR(BB|HH|W|X)(post|pre)")>; 2165 (instregex "STUR(BB|HH|W|X)i")>;
|
| D | AArch64SchedExynosM5.td | 673 ReadAdrBase], (instregex "^LDR(BB|SBW|SBX|HH|SHW|SHX|SW|W|X)roW")>; 675 ReadAdrBase], (instregex "^LDR(BB|SBW|SBX|HH|SHW|SHX|SW|W|X)roX")>; 683 ReadAdrBase], (instregex "^STR(BB|HH|W|X)roW")>; 685 ReadAdrBase], (instregex "^STR(BB|HH|W|X)roX")>;
|
| /freebsd-12-stable/crypto/openssl/crypto/bn/asm/ |
| D | mips.pl | 939 $HH=$ta1; 952 $SRL $HH,$a0,4*$BNSZ # bits 954 beq $DH,$HH,.L_bn_div_words_skip_div1 966 seq $t8,$HH,$t1 967 sltu $at,$HH,$t1 985 $SRL $HH,$a0,4*$BNSZ # bits 987 beq $DH,$HH,.L_bn_div_words_skip_div2 999 seq $t8,$HH,$t1 1000 sltu $at,$HH,$t1 1034 undef $HH; undef $QT; undef $DH;
|
| D | ia64.S | 1395 #define HH r20 macro 1467 shr.u HH=H,32;; 1468 cmp.eq p6,p7=HH,DH };; 1484 (p0) cmp.eq equ,cont=HH,r31 };; 1488 { .mib; (cont) cmp.leu cont,break=HH,r31 1497 shr.u HH=H,32;; 1498 cmp.eq p6,p7=HH,DH };; 1514 (p0) cmp.eq equ,cont=HH,r31 };; 1518 { .mib; (cont) cmp.leu cont,break=HH,r31
|
| /freebsd-12-stable/contrib/ntp/sntp/ |
| D | sntp.texi | 61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
|
| /freebsd-12-stable/contrib/ntp/ntpdc/ |
| D | ntpdc.texi | 61 YYYY-MM-DD HH:MM:SS.SUBSEC is the local date and time,
|
| /freebsd-12-stable/secure/caroot/trusted/ |
| D | TWCA_Root_Certification_Authority.pem | 81 AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH
|
| /freebsd-12-stable/tools/kerneldoc/subsys/ |
| D | common-Doxyfile | 117 *.HH \
|