Searched refs:b_min (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/crypto/openssl/crypto/x509v3/
H A Dv3_asid.c325 ASN1_INTEGER *a_min, *a_max, *b_min, *b_max;
328 extract_min_max(b, &b_min, &b_max);
333 if (ASN1_INTEGER_cmp(a_min, b_min) >= 0 ||
335 ASN1_INTEGER_cmp(b_min, b_max) > 0)
354 if (ASN1_INTEGER_cmp(a_max_plus_one, b_min) >= 0)
427 ASN1_INTEGER *a_min, *a_max, *b_min, *b_max;
430 extract_min_max(b, &b_min, &b_max);
435 OPENSSL_assert(ASN1_INTEGER_cmp(a_min, b_min) <= 0);
441 ASN1_INTEGER_cmp(b_min, b_max) > 0)
447 if (ASN1_INTEGER_cmp(a_max, b_min) >
[all...]
H A Dv3_addr.c732 unsigned char b_min[ADDR_RAW_BUF_LEN], b_max[ADDR_RAW_BUF_LEN];
785 !extract_min_max(b, b_min, b_max, length))
791 if (memcmp(a_min, b_min, length) >= 0 ||
793 memcmp(b_min, b_max, length) > 0)
798 * subtracting one from b_min first.
800 for (k = length - 1; k >= 0 && b_min[k]-- == 0x00; k--) ;
801 if (memcmp(a_max, b_min, length) >= 0)
855 unsigned char b_min[ADDR_RAW_BUF_LEN], b_max[ADDR_RAW_BUF_LEN];
858 !extract_min_max(b, b_min, b_max, length))
865 memcmp(b_min, b_ma
[all...]
/freebsd-10-stable/sys/netpfil/ipfw/
H A Ddn_heap.c346 * higher power of two, minus 1 (respectively b_min and b_max) because
350 * compared with b_min. If the original size is greater than 4/3 b_min,
351 * we round the bucket size to b_max, else to b_min.
361 int b_min; /* min buckets */ local
381 b_min = buckets >> 1; /* Previous power */
384 if (b_min * 4000 / 3000 < b_ori)
387 buckets = b_min;

Completed in 120 milliseconds