Home
last modified time | relevance | path

Searched refs:lengths (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/puff/
H A Dpuff.c546 short lengths[FIXLCODES]; in fixed() local
556 lengths[symbol] = 8; in fixed()
558 lengths[symbol] = 9; in fixed()
560 lengths[symbol] = 7; in fixed()
562 lengths[symbol] = 8; in fixed()
563 construct(&lencode, lengths, FIXLCODES); in fixed()
567 lengths[symbol] = 5; in fixed()
568 construct(&distcode, lengths, MAXDCODES); in fixed()
670 short lengths[MAXCODES]; /* descriptor code lengths */ in dynamic() local
692 lengths[order[index]] = bits(s, 3); in dynamic()
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/puff/
H A Dpuff.c546 short lengths[FIXLCODES]; in fixed() local
556 lengths[symbol] = 8; in fixed()
558 lengths[symbol] = 9; in fixed()
560 lengths[symbol] = 7; in fixed()
562 lengths[symbol] = 8; in fixed()
563 construct(&lencode, lengths, FIXLCODES); in fixed()
567 lengths[symbol] = 5; in fixed()
568 construct(&distcode, lengths, MAXDCODES); in fixed()
670 short lengths[MAXCODES]; /* descriptor code lengths */ in dynamic() local
692 lengths[order[index]] = bits(s, 3); in dynamic()
[all …]
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/puff/
H A Dpuff.c546 short lengths[FIXLCODES]; in fixed() local
556 lengths[symbol] = 8; in fixed()
558 lengths[symbol] = 9; in fixed()
560 lengths[symbol] = 7; in fixed()
562 lengths[symbol] = 8; in fixed()
563 construct(&lencode, lengths, FIXLCODES); in fixed()
567 lengths[symbol] = 5; in fixed()
568 construct(&distcode, lengths, MAXDCODES); in fixed()
670 short lengths[MAXCODES]; /* descriptor code lengths */ in dynamic() local
692 lengths[order[index]] = bits(s, 3); in dynamic()
[all …]
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/puff/
H A Dpuff.c546 short lengths[FIXLCODES]; in fixed() local
556 lengths[symbol] = 8; in fixed()
558 lengths[symbol] = 9; in fixed()
560 lengths[symbol] = 7; in fixed()
562 lengths[symbol] = 8; in fixed()
563 construct(&lencode, lengths, FIXLCODES); in fixed()
567 lengths[symbol] = 5; in fixed()
568 construct(&distcode, lengths, MAXDCODES); in fixed()
670 short lengths[MAXCODES]; /* descriptor code lengths */ in dynamic() local
692 lengths[order[index]] = bits(s, 3); in dynamic()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/
H A Dspeed.c203 static const int *lengths = lengths_list; variable
648 if (!EVP_Digest(buf, (size_t)lengths[testnum], md2, NULL, EVP_md2(), in EVP_Digest_MD2_loop()
665 if (!EVP_Digest(buf, (size_t)lengths[testnum], mdc2, NULL, EVP_mdc2(), in EVP_Digest_MDC2_loop()
682 if (!EVP_Digest(buf, (size_t)lengths[testnum], md4, NULL, EVP_md4(), in EVP_Digest_MD4_loop()
698 MD5(buf, lengths[testnum], md5); in MD5_loop()
712 HMAC_Update(hctx, buf, lengths[testnum]); in HMAC_loop()
726 SHA1(buf, lengths[testnum], sha); in SHA1_loop()
737 SHA256(buf, lengths[testnum], sha256); in SHA256_loop()
748 SHA512(buf, lengths[testnum], sha512); in SHA512_loop()
760 WHIRLPOOL(buf, lengths[testnum], whirlpool); in WHIRLPOOL_loop()
[all …]
/netbsd-src/games/colorbars/
H A Dcolorbars.c53 size_t lengths[__arraycount(colorInfo)]; in main() local
83 lengths[i] = strlen(colorInfo[i].name); in main()
84 if (lengths[i] > labelwidth) in main()
85 labelwidth = lengths[i]; in main()
107 for (size_t line = 0; line < lengths[i]; line++) in main()
/netbsd-src/external/zlib/pigz/dist/zopfli/
H A Dtree.c30 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits, in ZopfliLengthsToSymbols() argument
47 assert(lengths[i] <= maxbits); in ZopfliLengthsToSymbols()
48 bl_count[lengths[i]]++; in ZopfliLengthsToSymbols()
60 unsigned len = lengths[i]; in ZopfliLengthsToSymbols()
H A Dtree.h39 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits,
/netbsd-src/external/gpl2/xcvs/dist/diff/
H A Ddiff3.c88 size_t *lengths[2]; /* Line lengths (including newlines, if any) */ member
98 size_t *lengths[3]; /* Line lengths (including newlines, if any) */ member
120 ((diff)->lengths[filenum][linenum])
128 ((diff)->lengths[filenum])
1096 bptr->lengths[0] = bptr->lengths[1] = 0;
1134 bptr->lengths[0] = ALLOCATE (numlines, size_t);
1138 &(bptr->lengths[0][i]),
1157 bptr->lengths[1] = ALLOCATE (numlines, size_t);
1161 &(bptr->lengths[1][i]),
1908 if (p->lengths[0]) free(p->lengths[0]);
[all …]
/netbsd-src/external/bsd/openldap/dist/include/
H A Dlber_types.hin36 /* LBER lengths (32 bits or larger) */
54 /* lengths */
57 /* signed lengths */
/netbsd-src/crypto/external/bsd/openssl/dist/apps/
H A Dspeed.c118 static const int *lengths = lengths_list; variable
552 if (!EVP_Digest(buf, (size_t)lengths[testnum], digest, NULL, md, in EVP_Digest_loop()
599 || !EVP_MAC_update(mctx, buf, lengths[testnum]) in EVP_MAC_loop()
652 if (EVP_Cipher(tempargs->ctx, buf, buf, (size_t)lengths[testnum]) <= 0) in EVP_Cipher_loop()
666 if (!EVP_MAC_update(mctx, buf, lengths[testnum])) in GHASH_loop()
719 RAND_bytes(buf, lengths[testnum]); in RAND_bytes_loop()
737 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
745 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop()
779 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]); in EVP_Update_loop_ccm()
784 (void)EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]); in EVP_Update_loop_ccm()
[all …]
/netbsd-src/external/gpl3/binutils/dist/zlib/doc/
H A Drfc1951.txt207 "deflate" format limits distances to 32K bytes and lengths to 258
211 Each type of value (literals, distances, and lengths) in the
213 tree for literals and lengths and a separate code tree for distances.
289 lengths, not a sequence of bytes. We must therefore specify
318 sequences of different lengths, but a parser can always parse
367 various alphabets must not exceed certain maximum code lengths.
369 lengths from symbol frequencies. Again, see Chapter 5,
413 just by giving the bit lengths of the codes for each symbol of
416 by the sequence of bit lengths (2, 1, 3, 3). The following
418 from most- to least-significant bit. The code lengths are
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/zlib/doc/
H A Drfc1951.txt207 "deflate" format limits distances to 32K bytes and lengths to 258
211 Each type of value (literals, distances, and lengths) in the
213 tree for literals and lengths and a separate code tree for distances.
289 lengths, not a sequence of bytes. We must therefore specify
318 sequences of different lengths, but a parser can always parse
367 various alphabets must not exceed certain maximum code lengths.
369 lengths from symbol frequencies. Again, see Chapter 5,
413 just by giving the bit lengths of the codes for each symbol of
416 by the sequence of bit lengths (2, 1, 3, 3). The following
418 from most- to least-significant bit. The code lengths are
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/zlib/doc/
H A Drfc1951.txt207 "deflate" format limits distances to 32K bytes and lengths to 258
211 Each type of value (literals, distances, and lengths) in the
213 tree for literals and lengths and a separate code tree for distances.
289 lengths, not a sequence of bytes. We must therefore specify
318 sequences of different lengths, but a parser can always parse
367 various alphabets must not exceed certain maximum code lengths.
369 lengths from symbol frequencies. Again, see Chapter 5,
413 just by giving the bit lengths of the codes for each symbol of
416 by the sequence of bit lengths (2, 1, 3, 3). The following
418 from most- to least-significant bit. The code lengths are
[all …]
/netbsd-src/external/gpl3/gdb/dist/zlib/doc/
H A Drfc1951.txt207 "deflate" format limits distances to 32K bytes and lengths to 258
211 Each type of value (literals, distances, and lengths) in the
213 tree for literals and lengths and a separate code tree for distances.
289 lengths, not a sequence of bytes. We must therefore specify
318 sequences of different lengths, but a parser can always parse
367 various alphabets must not exceed certain maximum code lengths.
369 lengths from symbol frequencies. Again, see Chapter 5,
413 just by giving the bit lengths of the codes for each symbol of
416 by the sequence of bit lengths (2, 1, 3, 3). The following
418 from most- to least-significant bit. The code lengths are
[all …]
/netbsd-src/common/dist/zlib/doc/
H A Drfc1951.txt207 "deflate" format limits distances to 32K bytes and lengths to 258
211 Each type of value (literals, distances, and lengths) in the
213 tree for literals and lengths and a separate code tree for distances.
289 lengths, not a sequence of bytes. We must therefore specify
318 sequences of different lengths, but a parser can always parse
367 various alphabets must not exceed certain maximum code lengths.
369 lengths from symbol frequencies. Again, see Chapter 5,
413 just by giving the bit lengths of the codes for each symbol of
416 by the sequence of bit lengths (2, 1, 3, 3). The following
418 from most- to least-significant bit. The code lengths are
[all …]
/netbsd-src/external/gpl2/diffutils/dist/src/
H A Ddiff3.c85 size_t *lengths[2]; /* Line lengths (including newlines, if any) */ member
95 size_t *lengths[3]; /* Line lengths (including newlines, if any) */ member
117 ((diff)->lengths[filenum][linenum])
125 ((diff)->lengths[filenum])
957 sizeof *bptr->lengths[1])); in process_diff()
968 bptr->lengths[0] = bptr->lengths[1] = 0; in process_diff()
1007 bptr->lengths[0] = xmalloc (numlines * sizeof *bptr->lengths[0]); in process_diff()
1011 &(bptr->lengths[0][i]), in process_diff()
1032 bptr->lengths[1] = xmalloc (numlines * sizeof *bptr->lengths[1]); in process_diff()
1036 &(bptr->lengths[1][i]), in process_diff()
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DDSA_generate_parameters.pod30 For lengths under 2048 bits, the length of q is 160 bits; for lengths
105 Seed lengths greater than 20 are not supported.
H A DEVP_rc5_32_12_16_cbc.pod36 default the key length is set to 128 bits and 12 rounds. Alternative key lengths
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DDSA_generate_parameters.pod38 For lengths under 2048 bits, the length of q is 160 bits; for lengths
113 Seed lengths greater than 20 are not supported.
H A DEVP_rc5_32_12_16_cbc.pod36 default the key length is set to 128 bits and 12 rounds. Alternative key lengths
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/
H A Devpciph_aes_cts.txt15 # AES_CBC results for aligned block lengths. (Result should be the same as 32 byte CTS1 & CTS2)
42 # where aligned blocks are the same as CBC mode, and partial lengths
157 # where aligned blocks are the same as CBC mode, and partial lengths
/netbsd-src/crypto/external/bsd/openssh/dist/
H A DPROTOCOL.chacha20poly130520 lengths.
47 lengths confidential but not create an oracle for the packet payload
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dxilinx8 # Rewritten to use pstring/H instead of hardcoded lengths by O. Freyermuth,
/netbsd-src/external/gpl3/gcc/dist/gcc/config/h8300/
H A Djumpcall.md90 ;; bogus default and minimum lengths. The trick used by the PA port seems to
91 ;; fix the minimum, but not the default length. The broken lengths can lead

12345678910>>...18