| /lib/zlib/ |
| A D | inftrees.c | 38 unsigned min, max; /* minimum and maximum code lengths */ in inflate_table() local 110 for (max = MAXBITS; max >= 1; max--) in inflate_table() 111 if (count[max] != 0) break; in inflate_table() 112 if (root > max) root = max; in inflate_table() 113 if (max == 0) { /* no symbols to code at all */ in inflate_table() 133 if (left > 0 && (type == CODES || max != 1)) in inflate_table() 248 if (len == max) break; in inflate_table() 264 while (curr + drop < max) { in inflate_table()
|
| A D | uncompr.c | 36 const uInt max = (uInt)-1; local 65 stream.avail_out = left > (uLong)max ? max : (uInt)left; 70 stream.avail_in = len > (uLong)max ? max : (uInt)len;
|
| /lib/mbedtls/external/mbedtls/scripts/ |
| A D | massif_max.pl | 21 my ($max, $max_heap, $max_he, $max_stack) = (0, 0, 0, 0); 31 if( $total > $max ) { 32 ($max, $max_heap, $max_he, $max_stack) = ($total, $heap, $heap_extra, $stack); 36 printf "$max (heap $max_heap+$max_he, stack $max_stack)\n";
|
| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_pkcs1_v15.data | 55 RSAES-V15 decoding: good, payload=max, tight output buffer 58 RSAES-V15 decoding: good, payload=max, larger output buffer 61 RSAES-V15 decoding: good, payload=max-1, tight output buffer 64 RSAES-V15 decoding: good, payload=max-1, larger output buffer 73 RSAES-V15 decoding: payload=max, output too large 76 RSAES-V15 decoding: payload=max-1, output too large
|
| A D | test_suite_random.data | 45 PSA classic wrapper: CTR_DRBG max 49 PSA classic wrapper: HMAC_DRBG max
|
| A D | test_suite_psa_crypto_se_driver_hal_mocks.data | 16 SE key importing mock test: max key bits 19 SE key importing mock test: more than max key bits
|
| A D | test_suite_psa_crypto_se_driver_hal.data | 54 Key creation in a specific slot (max) 60 Key creation in a specific slot (max, restart) 172 Key registration: key id max vendor except volatile 178 Key registration: key id max volatile
|
| A D | test_suite_psa_crypto_slot_management.data | 37 Persistent slot, check after closing, id=max 40 Persistent slot, check after destroying, id=max 43 Persistent slot, check after purging, id=max 46 Persistent slot, check after restart, id=max
|
| A D | test_suite_psa_crypto_entropy.data | 31 PSA validate entropy injection: good, max size
|
| A D | test_suite_pkcs1_v21.data | 1033 RSASSA-PSS Signature verify options #8 (non-default salt_len: max) 1237 RSASSA-PSS Signature RSA-1024, SHA-256, Salt Length = max 1241 RSASSA-PSS Signature RSA-1024, SHA-256, Salt Length = max+1 1249 RSASSA-PSS Signature RSA-2048, SHA-256, Salt Length = max 1253 RSASSA-PSS Signature RSA-2048, SHA-256, Salt Length = max+1 1261 RSASSA-PSS Signature RSA-1024, SHA-512, Salt Length max 1265 RSASSA-PSS Signature RSA-1024, SHA-512, Salt Length max+1 1273 RSASSA-PSS Signature RSA-3072, SHA-384, Salt Length max 1277 RSASSA-PSS Signature RSA-3072, SHA-384, Salt Length max + 1
|
| /lib/lwip/lwip/src/core/ |
| A D | stats.c | 110 LWIP_PLATFORM_DIAG(("max: %"MEM_SIZE_F"\n\t", mem->max)); in stats_display_mem() 131 LWIP_PLATFORM_DIAG(("sem.max: %"STAT_COUNTER_F"\n\t", sys->sem.max)); in stats_display_sys() 134 LWIP_PLATFORM_DIAG(("mutex.max: %"STAT_COUNTER_F"\n\t", sys->mutex.max)); in stats_display_sys() 137 LWIP_PLATFORM_DIAG(("mbox.max: %"STAT_COUNTER_F"\n\t", sys->mbox.max)); in stats_display_sys()
|
| A D | memp.c | 284 if (desc->stats->used > desc->stats->max) { in do_memp_malloc_pool() 285 desc->stats->max = desc->stats->used; in do_memp_malloc_pool()
|
| /lib/mbedtls/external/mbedtls/library/ |
| A D | ssl_cache.c | 381 void mbedtls_ssl_cache_set_max_entries(mbedtls_ssl_cache_context *cache, int max) in mbedtls_ssl_cache_set_max_entries() argument 383 if (max < 0) { in mbedtls_ssl_cache_set_max_entries() 384 max = 0; in mbedtls_ssl_cache_set_max_entries() 387 cache->max_entries = max; in mbedtls_ssl_cache_set_max_entries()
|
| /lib/mbedtls/external/mbedtls/programs/psa/ |
| A D | psa_constant_names.c | 195 int process_signed(signed_value_type type, long min, long max, char **argp) in process_signed() argument 209 if (value > max || (errno == ERANGE && value > 0)) { in process_signed() 234 int process_unsigned(unsigned_value_type type, unsigned long max, char **argp) in process_unsigned() argument 244 if (value > max || errno == ERANGE) { in process_unsigned()
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | stats.h | 105 mem_size_t max; member 112 STAT_COUNTER max; member 312 if (lwip_stats.x.max < lwip_stats.x.used) { \ 313 lwip_stats.x.max = lwip_stats.x.used; \
|
| /lib/zstd/common/ |
| A D | entropy_common.c | 146 int const max = (2*threshold-1) - remaining; in FSE_readNCount_body() local 149 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body() 154 if (count >= threshold) count -= max; in FSE_readNCount_body()
|
| A D | zstd_internal.h | 49 #define BOUNDED(min,val,max) (MAX(min,MIN(val,max))) argument
|
| /lib/ |
| A D | membuf.c | 326 int membuf_extend_by(struct membuf *mb, int by, int max) in membuf_extend_by() argument 336 if (max != -1) in membuf_extend_by() 337 size = min(size, max); in membuf_extend_by()
|
| A D | smbios.c | 64 int max; member 194 if (!nprop || !nprop->max) in get_str_from_dt() 203 while (token && cnt < nprop->max) { in get_str_from_dt()
|
| A D | fdtdec.c | 568 int max = -1; in fdtdec_get_alias_highest_id() local 587 if (val > max) { in fdtdec_get_alias_highest_id() 589 max = val; in fdtdec_get_alias_highest_id() 593 return max; in fdtdec_get_alias_highest_id() 984 result->max = result->typ; in decode_timing_property()
|
| /lib/lwip/lwip/doc/ |
| A D | mdns.txt | 22 The max number of services supported per netif is defined by MDNS_MAX_SERVICES, 95 Since a hostname struct is used for TXT storage each single item can be max 96 63 bytes long, and the total max length (including length bytes for each
|
| /lib/mbedtls/external/mbedtls/ |
| A D | .pylintrc | 39 max-attributes=15 44 max-module-lines=2000
|
| /lib/mbedtls/external/mbedtls/include/mbedtls/ |
| A D | ssl_cache.h | 174 void mbedtls_ssl_cache_set_max_entries(mbedtls_ssl_cache_context *cache, int max);
|
| /lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/ |
| A D | bignum_common.py | 62 bit_length = max(val.bit_length(), 1) 148 return max(self.int_a, self.int_b)
|
| /lib/zstd/decompress/ |
| A D | zstd_decompress_block.c | 599 symbolEncodingType_e type, unsigned max, U32 maxLog, in ZSTD_buildSeqTable() argument 610 RETURN_ERROR_IF((*(const BYTE*)src) > max, corruption_detected, ""); in ZSTD_buildSeqTable() 633 size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize); in ZSTD_buildSeqTable() 636 …ZSTD_buildFSETable(DTableSpace, norm, max, baseValue, nbAdditionalBits, tableLog, wksp, wkspSize, … in ZSTD_buildSeqTable() 1945 U32 const max = 1 << tableLog; local 1949 assert(max <= (1 << OffFSELog)); /* max not too large */ 1950 for (u=0; u<max; u++) {
|