/freebsd/crypto/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppc.pl | 256 my ($h0,$h1,$h2,$h3,$h4,$t0) = map("r$_",(7..12)); 266 lwz $h4,16($ctx) 275 sldi $t0,$h4,40 276 srdi $h4,$h4,24 279 addze $h2,$h4 282 ld $h4,8($ctx) 287 xor $h1,$h1,$h4 293 xor $h1,$h1,$h4 297 addze $h4,$h1 306 and $h4,$h4,$t0 [all …]
|
H A D | poly1305-x86_64.pl | 346 my ($H0,$H1,$H2,$H3,$H4, $T0,$T1,$T2,$T3,$T4, $D0,$D1,$D2,$D3,$D4, $MASK) = 642 vmovd $h2#d,$H4 745 vmovd $h2#d,$H4 779 vmovd 4*4($ctx),$H4 898 # d4 = h4*r0 + h3*r1 + h2*r2 + h1*r3 + h0*r4 899 # d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*5*r4 900 # d2 = h2*r0 + h1*r1 + h0*r2 + h4*5*r3 + h3*5*r4 901 # d1 = h1*r0 + h0*r1 + h4*5*r2 + h3*5*r3 + h2*5*r4 902 # d0 = h0*r0 + h4*5*r1 + h3*5*r2 + h2*5*r3 + h1*5*r4 913 vpmuludq $T4,$D4,$D4 # d4 = h4*r0 [all …]
|
H A D | poly1305-armv4.pl | 177 my ($h0,$h1,$h2,$h3,$h4,$r0,$r1,$r2,$r3)=map("r$_",(4..12)); 210 addhi $h4,$h4,#1 @ 1<<128 251 addhi $h4,$h4,#1 @ padbit 272 adc $h4,$h4,#0 274 umlal r2,r3,$h4,$s1 283 mul r0,$s2,$h4 290 mul r2,$s3,$h4 302 mul $h4,$r0,$h4 311 add $h4,$h4,r3 @ h4+=d3>>32 313 and r1,$h4,#-4 [all …]
|
H A D | poly1305-s390x.pl | 225 my ($H0, $H1, $H2, $H3, $H4) = map("%v$_",(0..4)); 313 vmalof ($ACC0,$H4,$S1,$ACC0); 314 vmalof ($ACC1,$H4,$S2,$ACC1); 315 vmalof ($ACC2,$H4,$S3,$ACC2); 316 vmalof ($ACC3,$H4,$S4,$ACC3); 317 vmalof ($ACC4,$H4,$R0,$ACC4); 322 vesrlg ($H4,$ACC3,26); 326 vag ($H4,$H4,$ACC4); # h3 -> h4 329 vesrlg ($ACC4,$H4,26); 331 vn ($H4,$H4,$mask26); [all …]
|
H A D | poly1305-c64xplus.pl | 32 ($H0,$H1,$H2,$H3,$H4,$H4a)=("A8","B8","A10","B10","B2",$LEN); 71 STW B8,*${CTXA}[4] ; initialize h4 142 LDW *${CTXA}[4],$H4 ; load h4 170 || ADD $PADBIT,$H4,$H4 ; h4+=padbit 173 || ADD $D3,$H4,$H4 191 MPY32 $H4,$S1,B20 192 || MPY32 $H4,$S2a,A20 198 MPY32 $H4,$S3b,B22 205 MPY32 $H4,$R0b,$H4 231 ADD B31,$H4,$H4 [all …]
|
/freebsd/contrib/ntp/html/hints/ |
H A D | winnt.html | 14 <h4>Introduction</h4> 17 <h4>Authentication Keys</h4> 24 <h4>Reference Clocks</h4> 26 <h4>Functions Supported</h4> 28 <h4>Accuracy</h4> 31 <h4>Binaries</h4> 36 <h4 id="ToDo">ToDo</h4> 43 <h4>Compiling Requirements</h4> 65 <h4>Configuration File</h4> 68 <h4>Installation Instructions</h4> [all …]
|
H A D | sco.html | 17 <h4>Older SCO Unix versions</h4> 19 <h4>Compiling NTP</h4> 21 <h4>Running NTP</h4> 24 <h4>More information</h4>
|
/freebsd/crypto/openssh/ |
H A D | poly1305.c | 35 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local 69 h4 = 0; in poly1305_auth() 86 h4 += (t3 >> 8) | (1 << 24); in poly1305_auth() 90 …2x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1); in poly1305_auth() 91 …2x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2); in poly1305_auth() 92 …2x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3); in poly1305_auth() 93 …2x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4); in poly1305_auth() 94 …2x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0); in poly1305_auth() 100 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26); in poly1305_auth() 123 h4 += (t3 >> 8); in poly1305_auth() [all …]
|
/freebsd/contrib/ntp/html/ |
H A D | history.html | 15 <h4>Historical Notes on NTP Upgrades</h4> 19 <h4>1. Transparent Design</h4> 21 <h4>2. Documentation</h4> 24 <h4>3. Bulletproofing</h4> 26 <h4>4. Rate Management</h4> 31 <h4>5. Frequency File</h4> 36 <h4>6. Leapseconds</h4> 39 <h4>7. Orphan Mode and Local Clock Driver</h4> 42 <h4>8. Poll Rate Control</h4> 46 <h4>9. Autokey</h4> [all …]
|
H A D | build.html | 17 <h4>Related Links</h4> 19 <h4>Table of Contents</h4> 29 <h4 id="build">Building and Installing the Distribution</h4> 33 <h4 id="unix">Building and Installing for Unix</h4> 37 <h4 id="win">Building and Installing for Windows</h4> 39 <h4 id="conf">Configuration</h4> 41 <h4 id="prob">If You Have Problems</h4> 45 <h4 id="make">Additional <tt>make</tt> commands</h4>
|
H A D | pps.html | 17 <h4>Related Links</h4> 19 <h4>Table of Contents</h4> 27 <h4 id="intro">Introduction</h4> 34 <h4 id="gadget">Gadget Box</h4> 37 <h4 id="opsys">Operating System Support</h4> 39 <h4>PPS Driver</h4> 41 <h4 id="use">Using the Pulse-per-Second (PPS) Signal</h4>
|
H A D | tickadj.html | 15 <h4>Synopsis</h4> 17 <h4>Description</h4> 22 <h4>Command Line Options</h4> 35 <h4>Files</h4> 40 <h4>Bugs</h4>
|
H A D | index.html | 17 <h4>Related Links</h4> 21 <h4>Table of Contents</h4> 30 <h4 id="intro">Introduction</h4> 38 <h4 id="hand">The Handbook</h4> 59 <h4 id="build">Building and Installing NTP</h4> 61 <h4 id="prob">Resolving Problems</h4> 65 <h4 id="info">Further Information</h4>
|
H A D | ntpdsim.html | 17 <h4>Related Links</h4> 19 <h4>Table of Contents</h4> 27 <h4 id="synop">Synopsis</h4> 29 <h4 id="descr">Description</h4> 44 <h4 id="cmd">Command Line Options</h4> 64 <h4 id="files">Files</h4>
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/ |
H A D | poly1305_donna32.h | 62 unsigned long h0, h1, h2, h3, h4; in poly1305_blocks() local 81 h4 = st->h[4]; in poly1305_blocks() 89 h4 += (LOAD32_LE(m + 12) >> 8) | hibit; in poly1305_blocks() 94 ((unsigned long long) h4 * s1); in poly1305_blocks() 97 ((unsigned long long) h4 * s2); in poly1305_blocks() 100 ((unsigned long long) h4 * s3); in poly1305_blocks() 103 ((unsigned long long) h4 * s4); in poly1305_blocks() 106 ((unsigned long long) h4 * r0); in poly1305_blocks() 122 h4 = (unsigned long) d4 & 0x3ffffff; in poly1305_blocks() 136 st->h[4] = h4; in poly1305_blocks() [all …]
|
/freebsd/contrib/ntp/html/drivers/ |
H A D | driver28.html | 22 <h4>Synopsis</h4> 27 <h4>Description</h4> 36 <h4>Structure of shared memory-segment</h4> 60 <h4>Operation mode=0</h4> 64 <h4>Operation mode=1</h4> 69 <h4>Mode-independent post-processing</h4> 82 <h4>GPSD</h4> 105 <h4>Clockstats</h4> 133 <h4>The 'mode' word</h4> 166 <h4>Fudge Factors</h4> [all …]
|
H A D | driver5.html | 14 <h4>Synopsis</h4> 20 <h4>Description</h4> 43 <h4>Notes on 468-DC and OMEGA receiver:</h4> 45 <h4>Notes on the 468-DC receiver:</h4> 50 <h4>Notes on the TL-3 receiver:</h4> 56 <h4>Monitor Data</h4> 58 <h4>Fudge Factors</h4> 77 <h4>Additional Information</h4>
|
H A D | driver43.html | 18 <h4>Synopsis</h4> 22 <h4>Description</h4> 24 <h4>Why this driver?</h4> 29 <h4>RIPE NCC clock card</h4> 34 <h4>Monitor Data</h4> 62 <h4>Additional Information</h4>
|
H A D | driver9.html | 18 <h4>Synopsis</h4> 24 <h4>Description</h4> 29 <h4>Operating Modes</h4> 33 <h4>Monitor Data</h4> 35 <h4>Fudge Factors</h4> 54 <h4>Additional Information</h4>
|
H A D | driver34.html | 17 <h4>Synopsis</h4> 23 <h4>Description</h4> 25 <h4>Model 325 timecode format</h4> 47 <h4>Model 320 timecode format</h4> 61 <h4>Model 33x timecode format</h4> 77 <h4>Fudge factors</h4>
|
H A D | driver1.html | 16 <h4>Synopsis</h4> 20 <h4>Description</h4> 24 <h4>Monitor Data</h4> 26 <h4>Fudge Factors</h4> 45 <h4>Additional Information</h4>
|
H A D | driver10.html | 16 <h4>Synopsis</h4> 22 <h4>Description</h4> 27 <h4>Monitor Data</h4> 29 <h4>Fudge Factors</h4> 48 <h4>Additional Information</h4>
|
/freebsd/contrib/expat/doc/ |
H A D | reference.html | 974 <h4 id="XML_ParserCreate">XML_ParserCreate</h4> 996 <h4 id="XML_ParserCreateNS">XML_ParserCreateNS</h4> 1024 <h4 id="XML_ParserCreate_MM">XML_ParserCreate_MM</h4> 1047 <h4 id="XML_ExternalEntityParserCreate">XML_ExternalEntityParserCreate</h4> 1064 <h4 id="XML_ParserFree">XML_ParserFree</h4> [all...] |
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | hash.h | 131 uint32_t h4 = seed; in hash_x86_128() local 161 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128() 164 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128() 166 h4 = hash_rotl_32(h4, 13); h4 += h1; in hash_x86_128() 167 h4 = h4*5 + 0x32ac3b17; in hash_x86_128() 183 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128() 207 h1 ^= len; h2 ^= len; h3 ^= len; h4 in hash_x86_128() [all...] |
/freebsd/contrib/ntp/ntpd/ |
H A D | ntpd.html | 281 <span id="ntpd-help_002fusage-_0028_002d_002dhelp_0029"></span><h4 class="subsection">1.1.1 ntpd help/usage (<samp>--help</samp>)</h4> 371 <span id="ipv4-option-_0028_002d4_0029"></span><h4 class="subsection">1.1.2 ipv4 option (-4)</h4> 389 <span id="ipv6-option-_0028_002d6_0029"></span><h4 class="subsection">1.1.3 ipv6 option (-6)</h4> 407 <span id="authreq-option-_0028_002da_0029"></span><h4 class="subsection">1.1.4 authreq option (-a)</h4> 426 <span id="authnoreq-option-_0028_002dA_0029"></span><h4 class="subsection">1.1.5 authnoreq option (-A)</h4> [all...] |