Searched refs:printbuffer (Results 1 – 9 of 9) sorted by relevance
/third_party/vulkan-loader/loader/ |
D | cJSON.c | 135 } printbuffer; typedef 137 char *ensure(const VkAllocationCallbacks *pAllocator, printbuffer *p, size_t needed) { in ensure() 158 size_t cJSON_update(printbuffer *p) { in cJSON_update() 166 char *print_number(cJSON *item, printbuffer *p) { in print_number() 340 char *print_string_ptr(const VkAllocationCallbacks *pAllocator, const char *str, printbuffer *p) { in print_string_ptr() 430 char *print_string(cJSON *item, printbuffer *p) { return print_string_ptr(item->pAllocator, item->v… in print_string() 434 char *print_value(cJSON *item, int depth, int fmt, printbuffer *p); 436 char *print_array(cJSON *item, int depth, int fmt, printbuffer *p); 438 char *print_object(cJSON *item, int depth, int fmt, printbuffer *p); 483 printbuffer p; in cJSON_PrintBuffered() [all …]
|
/third_party/cJSON/tests/ |
D | print_object.c | 34 printbuffer formatted_buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_object() 35 printbuffer unformatted_buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_object()
|
D | print_array.c | 34 printbuffer formatted_buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_array() 35 printbuffer unformatted_buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_array()
|
D | print_string.c | 30 printbuffer buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_string()
|
D | print_value.c | 35 printbuffer buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_value()
|
D | print_number.c | 33 printbuffer buffer = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; in assert_print_number()
|
D | misc_tests.c | 467 printbuffer buffer = {NULL, 10, 0, 0, false, false, {&malloc, &free, &failing_realloc}}; in ensure_should_fail_on_failed_realloc()
|
/third_party/cJSON/ |
D | cJSON.c | 441 } printbuffer; typedef 444 static unsigned char* ensure(printbuffer * const p, size_t needed) in ensure() 530 static void update_offset(printbuffer * const buffer) in update_offset() 550 static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) in print_number() 907 static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_bu… in print_string_ptr() 1029 static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) in print_string() 1036 static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer); 1038 static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer); 1040 static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer); 1195 printbuffer buffer[1]; in print() [all …]
|
/third_party/cJSON/.github/ |
D | CONTRIBUTING.md | 31 /* calculate the new length of the string in a printbuffer and update the offset */ 32 static void update_offset(printbuffer * const buffer)
|