Home
last modified time | relevance | path

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

/external/boringssl/src/include/openssl/
Dssl3.h210 #ifndef SSL3_ALIGN_PAYLOAD
216 #define SSL3_ALIGN_PAYLOAD 8 macro
218 #if (SSL3_ALIGN_PAYLOAD & (SSL3_ALIGN_PAYLOAD - 1)) != 0
220 #undef SSL3_ALIGN_PAYLOAD
/external/boringssl/src/ssl/
Dssl_buffer.cc36 static_assert((SSL3_ALIGN_PAYLOAD & (SSL3_ALIGN_PAYLOAD - 1)) == 0,
62 uint8_t *new_buf = (uint8_t *)malloc(new_cap + SSL3_ALIGN_PAYLOAD - 1); in EnsureCap()
70 (0 - header_len - (uintptr_t)new_buf) & (SSL3_ALIGN_PAYLOAD - 1); in EnsureCap()