HomeSort by: relevance | last modified time | path
    Searched refs:maxbits (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/external/zlib/pigz/dist/zopfli/
katajainen.h 27 given counts. The bitlengths are limited by maxbits.
35 maxbits: Maximum bit length, inclusive.
40 const size_t* frequencies, int n, int maxbits, unsigned* bitlengths);
tree.h 33 void ZopfliCalculateBitLengths(const size_t* count, size_t n, int maxbits,
39 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits,
tree.c 30 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits,
32 size_t* bl_count = (size_t*)malloc(sizeof(size_t) * (maxbits + 1));
33 size_t* next_code = (size_t*)malloc(sizeof(size_t) * (maxbits + 1));
43 for (bits = 0; bits <= maxbits; bits++) {
47 assert(lengths[i] <= maxbits);
53 for (bits = 1; bits <= maxbits; bits++) {
96 void ZopfliCalculateBitLengths(const size_t* count, size_t n, int maxbits,
98 int error = ZopfliLengthLimitedCodeLengths(count, n, maxbits, bitlengths);
katajainen.c 64 maxbits: Size of lists.
67 static Node* GetFreeNode(Node* (*lists)[2], int maxbits, NodePool* pool) {
76 for (i = 0; i < maxbits * 2; i++) {
97 maxbits: Number of lists.
105 static void BoundaryPM(Node* (*lists)[2], int maxbits,
113 newchain = GetFreeNode(lists, maxbits, pool);
134 BoundaryPM(lists, maxbits, leaves, numsymbols, pool, index - 1, 0);
135 BoundaryPM(lists, maxbits, leaves, numsymbols, pool, index - 1, 0);
146 NodePool* pool, const Node* leaves, int maxbits, Node* (*lists)[2]) {
148 Node* node0 = GetFreeNode(0, maxbits, pool)
    [all...]
  /src/external/lgpl3/gmp/dist/mini-gmp/tests/
hex-random.h 39 void hex_random_op2 (enum hex_random_op op, unsigned long maxbits,
41 void hex_random_op3 (enum hex_random_op op, unsigned long maxbits,
43 void hex_random_op4 (enum hex_random_op op, unsigned long maxbits,
45 void hex_random_bit_op (enum hex_random_op op, unsigned long maxbits,
47 void hex_random_scan_op (enum hex_random_op op, unsigned long maxbits,
49 void hex_random_str_op (unsigned long maxbits,
51 void hex_random_lucm_op (unsigned long maxbits,
54 void hex_mpq_random_str_op (unsigned long maxbits,
mini-random.c 64 mini_random_op2 (enum hex_random_op op, unsigned long maxbits,
70 hex_random_op2 (op, maxbits, &ap, &rp);
79 mini_random_op3 (enum hex_random_op op, unsigned long maxbits,
86 hex_random_op3 (op, maxbits, &ap, &bp, &rp);
97 mini_random_op4 (enum hex_random_op op, unsigned long maxbits,
105 hex_random_op4 (op, maxbits, &ap, &bp, &cp, &dp);
118 mini_random_bit_op (enum hex_random_op op, unsigned long maxbits,
124 hex_random_bit_op (op, maxbits, &ap, b, &rp);
133 mini_random_scan_op (enum hex_random_op op, unsigned long maxbits,
138 hex_random_scan_op (op, maxbits, &ap, b, r)
    [all...]
hex-random.c 159 void hex_random_op2 (enum hex_random_op op, unsigned long maxbits,
169 abits = gmp_urandomb_ui (state, 32) % maxbits;
194 hex_random_op3 (enum hex_random_op op, unsigned long maxbits,
205 abits = gmp_urandomb_ui (state, 32) % maxbits;
206 bbits = gmp_urandomb_ui (state, 32) % maxbits;
234 unsigned long gbits = gmp_urandomb_ui (state, 32) % maxbits;
245 unsigned long gbits = gmp_urandomb_ui (state, 32) % maxbits;
273 hex_random_op4 (enum hex_random_op op, unsigned long maxbits,
288 abits = gmp_urandomb_ui (state, 32) % maxbits;
289 bbits = 1 + gmp_urandomb_ui (state, 32) % maxbits;
    [all...]
  /src/usr.bin/compress/
zopen.c 147 #define maxbits zs->zs_maxbits macro
255 maxmaxcode = 1L << maxbits;
259 tmp = (u_char)(maxbits | block_compress);
287 fcode = (long)(((long)c << maxbits) + ent);
430 if (n_bits == maxbits)
485 maxbits = header[2]; /* Set -b from file. */
486 block_compress = maxbits & BLOCK_MASK;
487 maxbits &= BIT_MASK;
488 maxmaxcode = 1L << maxbits;
489 if (maxbits > BITS || maxbits < 12)
    [all...]
  /src/sys/arch/sgimips/stand/undist/
util.c 141 static int maxbits = BITS; /* user settable max # bits/code */ variable
373 if ( n_bits == maxbits )
442 maxbits = getc(input);
443 block_compress = maxbits & BLOCK_MASK;
444 maxbits &= BIT_MASK;
445 maxmaxcode = 1 << maxbits;
446 if (maxbits > BITS)
  /src/external/mpl/dhcp/bind/dist/lib/dns/
key.c 166 unsigned int maxbits; local
169 RUNTIME_CHECK(dst_key_sigsize(key, &maxbits) == ISC_R_SUCCESS);
170 maxbits *= 8;
171 REQUIRE(bits <= maxbits);
dst_internal.h 185 isc_result_t (*createctx2)(dst_key_t *key, int maxbits,
195 isc_result_t (*verify2)(dst_context_t *dctx, int maxbits,
  /src/external/mpl/bind/dist/lib/isc/include/isc/
radix.h 112 uint32_t maxbits; /* for IP, 32 bit addresses */ member in struct:isc_radix_tree
163 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits);
165 * Create a radix tree with a maximum depth of 'maxbits';
170 * \li 'maxbits' to be less than or equal to RADIX_MAXBITS.
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
radix.h 113 uint32_t maxbits; /* for IP, 32 bit addresses */ member in struct:isc_radix_tree
164 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits);
166 * Create a radix tree with a maximum depth of 'maxbits';
171 * \li 'maxbits' to be less than or equal to RADIX_MAXBITS.
  /src/external/mpl/bind/dist/lib/dns/
key.c 228 unsigned int maxbits; local
231 RUNTIME_CHECK(dst_key_sigsize(key, &maxbits) == ISC_R_SUCCESS);
232 maxbits *= 8;
233 REQUIRE(bits <= maxbits);
dst_internal.h 158 isc_result_t (*createctx2)(dst_key_t *key, int maxbits,
168 isc_result_t (*verify2)(dst_context_t *dctx, int maxbits,
opensslrsa_link.c 296 opensslrsa_check_exponent_bits(EVP_PKEY *pkey, int maxbits) {
303 return bits < maxbits;
313 return BN_num_bits(ce) < maxbits;
321 opensslrsa_verify2(dst_context_t *dctx, int maxbits, const isc_region_t *sig) {
334 if (maxbits != 0 && !opensslrsa_check_exponent_bits(pkey, maxbits)) {
  /src/external/mpl/dhcp/bind/dist/lib/isc/
radix.c 137 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits) {
146 radix->maxbits = maxbits;
150 RUNTIME_CHECK(maxbits <= RADIX_MAXBITS); /* XXX */
236 RUNTIME_CHECK(prefix->bitlen <= radix->maxbits);
307 RUNTIME_CHECK(prefix == NULL || prefix->bitlen <= radix->maxbits);
373 if (node->bit < radix->maxbits &&
545 if (node->bit < radix->maxbits &&
560 if (bitlen < radix->maxbits &&
587 if (differ_bit < radix->maxbits &
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
radix.c 137 isc_radix_create(isc_mem_t *mctx, isc_radix_tree_t **target, int maxbits) {
139 RUNTIME_CHECK(maxbits <= RADIX_MAXBITS);
143 .maxbits = maxbits,
230 RUNTIME_CHECK(prefix->bitlen <= radix->maxbits);
301 RUNTIME_CHECK(prefix == NULL || prefix->bitlen <= radix->maxbits);
367 if (node->bit < radix->maxbits &&
539 if (node->bit < radix->maxbits &&
554 if (bitlen < radix->maxbits &&
581 if (differ_bit < radix->maxbits &
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
dnssec.h 150 bool ignoretime, unsigned int maxbits, isc_mem_t *mctx,
158 * 'maxbits' specifies the maximum number of rsa exponent bits accepted.
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
dnssec.h 132 bool ignoretime, unsigned int maxbits, isc_mem_t *mctx,
140 * 'maxbits' specifies the maximum number of rsa exponent bits accepted.
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dst/
dst.h 236 bool useforsigning, int maxbits, dst_context_t **dctxp);
303 dst_context_verify2(dst_context_t *dctx, unsigned int maxbits,
308 * 'maxbits' specifies the maximum number of bits permitted in the RSA
  /src/external/mpl/bind/dist/lib/dns/include/dst/
dst.h 261 bool useforsigning, int maxbits, dst_context_t **dctxp);
328 dst_context_verify2(dst_context_t *dctx, unsigned int maxbits,
333 * 'maxbits' specifies the maximum number of bits permitted in the RSA
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_lha.c 2678 int i, maxbits = 0, ptn, tbl_size, w; local
2690 maxbits = i;
2693 if (ptn != 0x10000 || maxbits > hf->tbl_bits)
2696 hf->max_bits = maxbits;
2703 if (maxbits < 16) {
2704 int ebits = 16 - maxbits;
2705 for (i = 1; i <= maxbits; i++) {
2710 if (maxbits > HTBL_BITS) {
2714 diffbits = maxbits - HTBL_BITS;
archive_read_support_format_cab.c 3173 int i, maxbits = 0, ptn, tbl_size, w; local
3185 maxbits = i;
3188 if ((ptn & 0xffff) != 0 || maxbits > hf->tbl_bits)
3191 hf->max_bits = maxbits;
3198 if (maxbits < 16) {
3199 int ebits = 16 - maxbits;
3200 for (i = 1; i <= maxbits; i++) {
  /src/sys/net/
bsd-comp.c 90 u_char maxbits; member in struct:bsd_db
363 db->maxbits = bits;
402 || BSD_NBITS(options[2]) != db->maxbits

Completed in 33 milliseconds

1 2