Home
last modified time | relevance | path

Searched refs:SA_BLOCK_MAX (Results 1 – 2 of 2) sorted by relevance

/openssl/crypto/
H A DREADME-sparse_array.md14 SA_BLOCK_MAX Specifies the number of pointers in each block
20 SA_BLOCK_MAX = 2 ^ OPENSSL_SA_BLOCK_BITS
21 SA_BLOCK_MASK = SA_BLOCK_MAX - 1
38 | SA_BLOCK_MAX - 1 | 1 |
39 | SA_BLOCK_MAX ^ 2 - 1 | 2 |
40 | SA_BLOCK_MAX ^ 3 - 1 | 3 |
49 except for the single pointer to the user's data (N = SA_BLOCK_MAX for
150 largest element. The base of the logarithm is `SA_BLOCK_MAX`, so for moderately
H A Dsparse_array.c45 #define SA_BLOCK_MAX (1 << OPENSSL_SA_BLOCK_BITS) macro
46 #define SA_BLOCK_MASK (SA_BLOCK_MAX - 1)
79 if (n >= SA_BLOCK_MAX) { in sa_doall()
176 return OPENSSL_zalloc(SA_BLOCK_MAX * sizeof(void *)); in alloc_node()

Completed in 6 milliseconds