Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/ssl/quic/
H A Djson_enc.c145 if (json->stack_end_byte >= json->stack_bytes) { in json_push()
158 json->stack[json->stack_end_byte] |= (v << json->stack_end_bit); in json_push()
160 json->stack[json->stack_end_byte] &= ~(1U << json->stack_end_bit); in json_push()
164 ++json->stack_end_byte; in json_push()
175 if (json->stack_end_byte == 0 && json->stack_end_bit == 0) in json_pop()
179 --json->stack_end_byte; in json_pop()
195 obyte = json->stack_end_byte; in json_peek()
269 json->stack_end_byte = 0; in ossl_json_reset()
343 depth = json->stack_end_byte * 8 + json->stack_end_bit; in json_indent()
/freebsd/crypto/openssl/include/internal/
H A Djson_enc.h39 size_t stack_end_byte, stack_bytes; member