| /freebsd/crypto/openssl/crypto/bn/asm/ |
| H A D | via-mont.pl | 110 # &DWP(64+(4*$num+$pad)*0,"esp") # padded tp[num] 111 # &DWP(64+(4*$num+$pad)*1,"esp") # padded copy of ap[num] 112 # &DWP(64+(4*$num+$pad)*2,"esp") # padded copy of bp[num] 113 # &DWP(64+(4*$num+$pad)*3,"esp") # padded copy of np[num] 164 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch 173 # edi points at the end of padded ap copy... 181 # edi points at the end of padded bp copy... 189 # edi points at the end of padded np copy... 200 # edi still points at the end of padded np copy...
|
| /freebsd/lib/libc/stdlib/ |
| H A D | strfmon.c | 89 *--bufend = *(avalue + avalue_size + padded); \ 530 int padded; in __format_grouped_double() local 586 padded = 0; in __format_grouped_double() 587 while (avalue[padded] == ' ') { in __format_grouped_double() 588 padded++; in __format_grouped_double() 594 memcpy(bufend, avalue + avalue_size + padded - right_prec, in __format_grouped_double() 623 padded -= groups; in __format_grouped_double() 626 memcpy(bufend, avalue + padded, avalue_size); in __format_grouped_double() 629 padded -= decimal_point_size; in __format_grouped_double() 633 if (padded > 0) { in __format_grouped_double() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
| H A D | ObjectContainerBSDArchive.cpp | |
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 104 bool Padded = false; in printInfoComment() local 107 Padded = true; in printInfoComment() 113 if (!Padded) { in printInfoComment() 115 Padded = true; in printInfoComment() 123 if (!Padded) { in printInfoComment() 130 if (!Padded) { in printInfoComment()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_blocksize.3 | 61 If this value is zero, the last block will be padded to the same size 63 Otherwise, the final block will be padded to a multiple of this size. 64 In particular, setting it to 1 will cause the final block to not be padded.
|
| /freebsd/contrib/bearssl/src/rsa/ |
| H A D | rsa_pss_sig_pad.c | 41 * The padded string is one bit smaller than the modulus; in br_rsa_pss_sig_pad() 43 * the padded string will be one _byte_ smaller, and the first in br_rsa_pss_sig_pad() 82 * Prepare string PS (padded salt). The salt is already at the in br_rsa_pss_sig_pad()
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_MD-MDC2.pod | 31 Normally the final MDC2 block is padded with zeros. 32 If the pad type is set to 2 then the final block is padded with 0x80 followed by
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 70-test_sslcbcpadding.t | 42 # Test that maximally-padded records are accepted. 49 ok(TLSProxy::Message->success(), "Maximally-padded record test"); 90 # Insert a maximally-padded record. Assume a block size of 16 (AES) and
|
| /freebsd/sys/net/ |
| H A D | sff8436.h | 162 SFF_8436_VENDOR_START = 148, /* Vendor name, 16 bytes, padded 169 SFF_8436_PN_START = 168, /* Vendor PN, padded right with 0x20 */ 171 SFF_8436_REV_START = 184, /* Vendor Revision, padded right 0x20 */ 188 SFF_8436_SN_START = 196, /* Vendor SN, riwght padded with 0x20 */
|
| /freebsd/crypto/openssh/ |
| H A D | PROTOCOL.key | 19 string encrypted, padded list of private keys 32 The list of privatekey/comment pairs is padded with the
|
| H A D | sshkey-xmss.c | 893 struct sshbuf *encrypted = NULL, *encoded = NULL, *padded = NULL; in sshkey_xmss_encrypt_state() local 921 (padded = sshbuf_new()) == NULL || in sshkey_xmss_encrypt_state() 935 /* padded state will be encrypted */ in sshkey_xmss_encrypt_state() 936 if ((r = sshbuf_putb(padded, b)) != 0) in sshkey_xmss_encrypt_state() 939 while (sshbuf_len(padded) % blocksize) { in sshkey_xmss_encrypt_state() 940 if ((r = sshbuf_put_u8(padded, ++i & 0xff)) != 0) in sshkey_xmss_encrypt_state() 943 encrypted_len = sshbuf_len(padded); in sshkey_xmss_encrypt_state() 951 if ((r = sshbuf_putb(encoded, padded)) != 0) in sshkey_xmss_encrypt_state() 971 sshbuf_free(padded); in sshkey_xmss_encrypt_state()
|
| /freebsd/crypto/openssl/crypto/bn/ |
| H A D | bn_div.c | 247 * may not be zero-padded, yet claim this subroutine "constant-time"(*). 248 * This is because zero-padded dividend, |num|, is tolerated, so that 252 * padded accordingly. Returned remainder, |rm|, will have same bit length 253 * as divisor, also zero-padded if needed. These actually leave sign bits 255 * zero-padded zeros would retain sign. 260 * - dividend is at least as "wide" as divisor, limb-wise, zero-padded
|
| /freebsd/sys/contrib/device-tree/Bindings/display/ti/ |
| H A D | ti,am625-oldi.yaml | 19 padded and un-padded 18-bit RGB bus formats as input.
|
| /freebsd/secure/lib/libcrypto/man/man7/ |
| H A D | EVP_MD-MDC2.7 | 83 Normally the final MDC2 block is padded with zeros. 84 If the pad type is set to 2 then the final block is padded with 0x80 followed by
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/ |
| H A D | cmac.c | 130 unsigned char Y[BLOCK_SIZE], M_last[BLOCK_SIZE], padded[BLOCK_SIZE]; in krb5int_cmac_checksum() local 186 padding(input, padded, length % BLOCK_SIZE); in krb5int_cmac_checksum() 187 xor_128(padded, K2, M_last); in krb5int_cmac_checksum()
|
| H A D | hmac.c | 80 /* Create the inner padded key. */ in krb5int_hmac_keyblock() 94 /* Create the outer padded key. */ in krb5int_hmac_keyblock()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugSubsectionRecord.cpp | 62 // The length of the entire subsection is always padded to 4 bytes, in calculateSerializedLength() 74 // The value written into the Header's Length field is only padded to the in commit()
|
| /freebsd/crypto/krb5/src/lib/crypto/krb/ |
| H A D | enc_raw.c | 61 /* Check that the input data is correctly padded */ in krb5int_raw_encrypt() 103 /* Check that the input data is correctly padded */ in krb5int_raw_decrypt()
|
| /freebsd/lib/libc/stdio/ |
| H A D | wprintf.3 | 174 the converted value is padded on the left with zeros rather than blanks. 187 conversions, the converted value is padded on the right with blanks, 222 be padded with spaces on the left (or right, if the left-adjustment 359 appear; if the converted value requires fewer digits, it is padded on
|
| /freebsd/sys/contrib/edk2/Include/Library/ |
| H A D | PrintLib.h | 79 - The argument is an unsigned hexadecimal number and the number is padded with 105 month zero padded, dd is the day zero padded, yyyy is the year zero 106 padded, hh is the hour zero padded, and mm is minutes zero padded. 508 Buffer is padded with '0' characters so the combination of the optional '-' 849 Buffer is padded with '0' characters so the combination of the optional '-'
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
| H A D | blake3_avx512.c | 1111 __m512i padded[16] = { in blake3_hash16_avx512() local 1117 transpose_vecs_512(padded); in blake3_hash16_avx512() 1118 …_mm256_mask_storeu_epi32(&out[0 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[0]… in blake3_hash16_avx512() 1119 …_mm256_mask_storeu_epi32(&out[1 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[1]… in blake3_hash16_avx512() 1120 …_mm256_mask_storeu_epi32(&out[2 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[2]… in blake3_hash16_avx512() 1121 …_mm256_mask_storeu_epi32(&out[3 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[3]… in blake3_hash16_avx512() 1122 …_mm256_mask_storeu_epi32(&out[4 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[4]… in blake3_hash16_avx512() 1123 …_mm256_mask_storeu_epi32(&out[5 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[5]… in blake3_hash16_avx512() 1124 …_mm256_mask_storeu_epi32(&out[6 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[6]… in blake3_hash16_avx512() 1125 …_mm256_mask_storeu_epi32(&out[7 * sizeof(__m256i)], (__mmask8)-1, _mm512_castsi512_si256(padded[7]… in blake3_hash16_avx512() [all …]
|
| /freebsd/crypto/openssl/crypto/modes/ |
| H A D | wrap128.c | 188 /* n: number of 64-bit blocks in the padded key data in CRYPTO_128_wrap_pad() 218 * Section 4.1 - special case in step 2: If the padded plaintext in CRYPTO_128_wrap_pad() 226 ret = 16; /* AIV + padded input */ in CRYPTO_128_wrap_pad() 256 /* n: number of 64-bit blocks in the padded key data */ in CRYPTO_128_unwrap_pad()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | modem | 39 >>>>>>>>-0 offset !32034 raw G3 (Group 3) FAX, byte-padded 40 # version 5.25 labeled the entry above "raw G3 data, byte-padded"
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/RegisterTypeBuilder/ |
| H A D | RegisterTypeBuilderClang.cpp | 66 // We assume that RegisterFlags has padded and sorted the fields in GetRegisterType() 118 // This should be true if RegisterFlags padded correctly. in GetRegisterType()
|
| /freebsd/contrib/wpa/src/utils/ |
| H A D | wpabuf.c | 265 * @buf: Buffer to be padded 266 * @len: Length for the padded buffer 267 * Returns: wpabuf padded to len octets or %NULL on failure
|