Home
last modified time | relevance | path

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

/src/crypto/openssl/ssl/quic/
H A Djson_enc.c120 if (json->stack_bytes >= num_bytes) in json_ensure_stack_size()
135 json->stack_bytes = num_bytes; in json_ensure_stack_size()
145 if (json->stack_end_byte >= json->stack_bytes) { in json_push()
147 = (json->stack_bytes == 0) in json_push()
149 : (json->stack_bytes * 2); in json_push()
154 json->stack_bytes = new_size; in json_push()
/src/crypto/openssl/include/internal/
H A Djson_enc.h39 size_t stack_end_byte, stack_bytes; member