Searched refs:newlen (Results 1 – 3 of 3) sorted by relevance
/openssl-master/crypto/rand/ |
A D | rand_pool.c | 210 size_t newlen = pool->alloc_len; in rand_pool_grow() local 218 newlen = newlen < limit ? newlen * 2 : pool->max_len; in rand_pool_grow() 219 while (len > newlen - pool->len); in rand_pool_grow() 222 p = OPENSSL_secure_zalloc(newlen); in rand_pool_grow() 224 p = OPENSSL_zalloc(newlen); in rand_pool_grow() 235 pool->alloc_len = newlen; in rand_pool_grow()
|
/openssl-master/crypto/conf/ |
A D | conf_def.c | 459 include_path = OPENSSL_malloc(newlen); in def_load_bio() 466 OPENSSL_strlcpy(include_path, include_dir, newlen); in def_load_bio() 468 OPENSSL_strlcat(include_path, "/", newlen); in def_load_bio() 469 OPENSSL_strlcat(include_path, include, newlen); in def_load_bio() 844 size_t newlen; in get_next_file() local 848 newlen = pathlen + namelen + 2; in get_next_file() 849 newpath = OPENSSL_zalloc(newlen); in get_next_file() 863 OPENSSL_strlcpy(newpath, path, newlen); in get_next_file() 867 OPENSSL_strlcpy(newpath, path, newlen); in get_next_file() 868 OPENSSL_strlcat(newpath, "/", newlen); in get_next_file() [all …]
|
/openssl-master/crypto/ |
A D | packet.c | 53 size_t newlen; in WPACKET_reserve_bytes() local 59 newlen = SIZE_MAX; in WPACKET_reserve_bytes() 61 newlen = reflen * 2; in WPACKET_reserve_bytes() 62 if (newlen < DEFAULT_BUF_SIZE) in WPACKET_reserve_bytes() 63 newlen = DEFAULT_BUF_SIZE; in WPACKET_reserve_bytes() 65 if (BUF_MEM_grow(pkt->buf, newlen) == 0) in WPACKET_reserve_bytes()
|
Completed in 8 milliseconds