HomeSort by relevance Sort by last modified time
    Searched refs:num_alloc (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/stack/
stack.c 84 ret->num_alloc = kMinSize;
153 if (sk->num_alloc <= sk->num + 1) {
155 size_t new_alloc = sk->num_alloc << 1;
160 if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
161 new_alloc = sk->num_alloc + 1;
166 if (new_alloc < sk->num_alloc || alloc_size / sizeof(void *) != new_alloc) {
176 sk->num_alloc = new_alloc;
311 s = (void **)OPENSSL_realloc(ret->data, sizeof(void *) * sk->num_alloc);
320 ret->num_alloc = sk->num_alloc;
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 107 uint16 num_alloc; /* Number of objects currently allocated */ member in struct:bcm_mp_stats
  /external/boringssl/src/include/openssl/
stack.h 104 /* num_alloc contains the number of pointers allocated in the buffer pointed
106 size_t num_alloc; member in struct:stack_st

Completed in 703 milliseconds