Searched refs:stack_bytes (Results 1 – 2 of 2) sorted by relevance
120 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()
39 size_t stack_end_byte, stack_bytes; member