Searched refs:elements (Results 1 – 25 of 38) sorted by relevance
12
/openssl/ssl/ |
H A D | priority_queue.c | 51 struct pq_elem_st *elements; member 72 assert(pq->elements[elem].used) 211 pq->elements[m].posn = n; in ossl_pqueue_push() 213 pq->elements[m].used = 1; in ossl_pqueue_push() 250 pq->elements[elem].used = 0; in ossl_pqueue_pop() 263 n = pq->elements[elem].posn; in ossl_pqueue_remove() 271 pq->elements[elem].used = 0; in ossl_pqueue_remove() 318 e = OPENSSL_realloc(pq->elements, new_max * sizeof(*pq->elements)); in ossl_pqueue_reserve() 321 pq->elements = e; in ossl_pqueue_reserve() 343 pq->elements = OPENSSL_malloc(sizeof(*pq->elements) * min_nodes); in ossl_pqueue_new() [all …]
|
/openssl/doc/internal/man3/ |
H A D | DEFINE_LIST_OF.pod | 54 elements with the name B<I<TYPE>>. The type is represented 65 B<ossl_list_I<TYPE>_is_empty>() returns nonzero if I<list> has no elements and 68 B<ossl_list_I<TYPE>_num>() returns the number of elements in I<list>. 71 or NULL if there are no elements. 74 or NULL if there are no elements. 98 B<ossl_list_I<TYPE>_num>() returns the number of elements in the
|
H A D | DEFINE_PRIORITY_QUEUE_OF.pod | 47 priority queue of B<I<TYPE>> elements. The type is represented by 51 B<ossl_pqueue_I<TYPE>_num>() returns the number of elements in I<pq> 56 The I<compare> function is called to order two elements, it should return 61 free up any elements of I<pq>. After this call I<pq> is no longer valid. 63 B<ossl_pqueue_I<TYPE>_pop_free>() frees up all elements of I<pq> and I<pq> 92 B<ossl_pqueue_I<TYPE>_num>() returns the number of elements in the
|
H A D | OPENSSL_SA.pod | 51 B<ossl_sa_I<TYPE>_num>() returns the number of elements in I<sa> or 0 if I<sa> 64 elements of I<sa>. After this call I<sa> is no longer valid. 67 elements. After this call I<sa> is no longer valid. 100 B<ossl_sa_I<TYPE>_num>() returns the number of elements in the sparse array or 107 case, the elements of the sparse array remain unchanged, although the internal
|
H A D | ossl_ht_new.pod | 64 elements based on a defined key. The call accepts an HT_CONFIG pointer which 106 ossl_ht_flush() empties a hash table. All elements will have their 122 ossl_ht_count() returns the number of elements within the hash table. 126 ossl_ht_foreach_until() iterates over all elements in the hash table, calling 139 ossl_ht_filter() iterates over all elements of the hash table, calling 148 list object is freed. Note, NULL elements are allowed on the list, but for any 183 HT_DEF_KEY_FIELD_UINT8T_ARRAY() Creates an array of uint8_t elements within a 276 ossl_ht_count() returns the number of elements in the hash table 278 ossl_ht_filter() returns an B<HT_VALUE_LIST> of all elements matching the
|
H A D | ossl_DER_w_begin_sequence.pod | 6 - internal DER writers for DER constructed elements
|
H A D | ossl_cmp_msg_protect.pod | 34 ossl_cmp_msg_add_extraCerts() adds elements to the extraCerts field in I<msg>.
|
H A D | ossl_cmp_msg_create.pod | 105 Does not consume the B<itavs> pointer nor its elements.
|
H A D | OSSL_SAFE_MATH_SIGNED.pod | 80 has a four byte element count which is followed by that many elements.
|
/openssl/doc/man3/ |
H A D | DEFINE_STACK_OF.pod | 84 DEFINE_STACK_OF() creates set of functions for a stack of B<I<TYPE>> elements. 103 B<sk_I<TYPE>_num>() returns the number of elements in I<sk> or -1 if I<sk> is 123 additional memory allocated to hold I<n> elements if I<n> is positive. 136 elements of I<sk>. After this call I<sk> is no longer valid. 138 B<sk_I<TYPE>_zero>() sets the number of elements in I<sk> to zero. It does not 141 B<sk_I<TYPE>_pop_free>() frees up all elements of I<sk> and I<sk> itself. The 151 existing elements at or after I<idx> are moved downwards. If I<idx> is out 153 returns the number of elements in I<sk> after the new element is inserted or 181 the order of elements in I<sk> can change. 191 sets the I<*pnum> to number of matching elements in the stack. In case [all …]
|
H A D | PEM_X509_INFO_read_bio_ex.pod | 42 The elements are read sequentially, and as far as they are of different type than 43 the elements read before, they are combined into the same B<X509_INFO> object.
|
H A D | RSA_check_key.pod | 30 and public exponent elements populated. 68 elements directly, bypassing the RSA_METHOD table altogether (and
|
H A D | OPENSSL_instrument_bus.pod | 21 addition probes are added to B<vector> elements in atomic or
|
H A D | SSL_in_init.pod | 54 state values. The naming format is made up of a number of elements as follows:
|
H A D | OSSL_ESS_check_signing_certs.pod | 38 generates a B<ESS_SIGNING_CERT_V2> structure with B<ESS_CERT_ID_V2> elements.
|
H A D | X509_new.pod | 48 certificates after calling X509_free() on all its elements.
|
H A D | EC_GROUP_new.pod | 80 The first form is those defined over the prime field Fp. The elements of Fp are 86 The second form is those defined over a binary field F2^m where the elements of
|
H A D | SSL_CTX_set1_curves.pod | 58 determined by the order of the elements in the array. 61 B<SSL_OP_CIPHER_SERVER_PREFERENCE> is set, the order of the elements in the
|
H A D | SSL_CTX_set1_sigalgs.pod | 34 elements, where each element is either a combination of a public key
|
H A D | SSL_CTX_set1_cert_comp_preference.pod | 43 of algorithms, and B<length> is number of elements in the B<algs> array. Only
|
H A D | OSSL_PARAM.pod | 64 However, if the I<responder> can handle multiple elements with the 65 same key, those elements must be handled in the order they are in.
|
/openssl/crypto/ |
H A D | README-sparse_array.md | 149 Accesses to elements in the sparse array take O(log n) time where n is the 152 Space usage is O(minimum(m, n log(n)) where m is the number of elements in the
|
/openssl/doc/man1/ |
H A D | openssl-info.pod.in | 61 separator between directory elements.
|
/openssl/doc/designs/quic-design/ |
H A D | quic-fault-injector.md | 6 a misbehaving peer, i.e. one which is sending protocol elements (e.g. datagrams, 16 will have to be capable of creating fully normal QUIC protocol elements, but 17 also offer the flexibility for a test to modify those normal protocol elements 179 faults need to be injected into protocol elements sent from the server. Post 181 we need to do this during MVP in order to be able to observe protocol elements
|
/openssl/doc/man7/ |
H A D | openssl-threads.pod | 64 mutate an object, such as setting elements of a private or public key,
|
Completed in 38 milliseconds
12