Searched refs:tail (Results 1 – 6 of 6) sorted by relevance
/optee_benchmark/libyaml/src/ |
A D | yaml_private.h | 420 yaml_queue_extend(void **start, void **head, void **tail, void **end); 457 ((queue).head = (queue).tail = (queue).start, \ 465 (queue).start = (queue).head = (queue).tail = (queue).end = 0) 468 ((queue).head == (queue).tail) 471 (((queue).tail != (queue).end \ 473 (void **)&(queue).tail, (void **)&(queue).end)) ? \ 474 (*((queue).tail++) = value, \ 483 (((queue).tail != (queue).end \ 485 (void **)&(queue).tail, (void **)&(queue).end)) ? \ 487 ((queue).tail-(queue).head-(index))*sizeof(*(queue).start)), \ [all …]
|
A D | api.c | 136 yaml_queue_extend(void **start, void **head, void **tail, void **end) in yaml_queue_extend() argument 140 if (*start == *head && *tail == *end) { in yaml_queue_extend() 147 *tail = (char *)new_start + ((char *)*tail - (char *)*start); in yaml_queue_extend() 154 if (*tail == *end) { in yaml_queue_extend() 155 if (*head != *tail) { in yaml_queue_extend() 156 memmove(*start, *head, (char *)*tail - (char *)*head); in yaml_queue_extend() 158 *tail = (char *)*tail - (char *)*head + (char *)*start; in yaml_queue_extend()
|
A D | emitter.c | 332 if (emitter->events.tail - emitter->events.head > accumulate) in yaml_emitter_need_more_events() 335 for (event = emitter->events.head; event != emitter->events.tail; event ++) { in yaml_emitter_need_more_events() 1102 if (emitter->events.tail - emitter->events.head < 2) in yaml_emitter_check_empty_sequence() 1116 if (emitter->events.tail - emitter->events.head < 2) in yaml_emitter_check_empty_mapping()
|
A D | scanner.c | 814 if (parser->tokens.head == parser->tokens.tail) in yaml_parser_fetch_more_tokens() 1118 parser->tokens_parsed + (parser->tokens.tail - parser->tokens.head); in yaml_parser_save_simple_key()
|
/optee_benchmark/ |
A D | main.c | 133 if (cpu_buf->tail >= cpu_buf->head) in timestamp_pop() 136 ts_tail = cpu_buf->tail++; in timestamp_pop()
|
/optee_benchmark/libyaml/include/ |
A D | yaml.h | 1202 yaml_token_t *tail; member 1639 yaml_event_t *tail; member
|
Completed in 19 milliseconds