Lines Matching defs:buffer
250 #define can_read(buffer, size) ((buffer != NULL) && (((buffer)->offset + size) <= (buffer)->length)) argument
252 #define can_access_at_index(buffer, index) ((buffer != NULL) && (((buffer)->offset + index) < (b… argument
253 #define cannot_access_at_index(buffer, index) (!can_access_at_index(buffer, index)) argument
255 #define buffer_at_offset(buffer) ((buffer)->content + (buffer)->offset) argument
353 unsigned char *buffer; member
428 static void update_offset(printbuffer *const buffer) in update_offset()
842 static parse_buffer *buffer_skip_whitespace(parse_buffer *const buffer) in buffer_skip_whitespace()
856 static parse_buffer *skip_utf8_bom(parse_buffer *const buffer) in skip_utf8_bom()
880 parse_buffer buffer = { in cJSON_ParseWithLengthOpts() local
954 printbuffer buffer[1]; in print() local
1032 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const… in cJSON_PrintPreallocated()