Searched refs:items (Results 1 – 6 of 6) sorted by relevance
/optee_benchmark/libyaml/tests/ |
A D | run-dumper.c | 53 for (item = node->data.sequence.items.start; in copy_document() 54 item < node->data.sequence.items.top; item ++) { in copy_document() 103 if ((node1->data.sequence.items.top - node1->data.sequence.items.start) != in compare_nodes() 104 (node2->data.sequence.items.top - node2->data.sequence.items.start)) in compare_nodes() 106 … for (k = 0; k < (node1->data.sequence.items.top - node1->data.sequence.items.start); k ++) { in compare_nodes() 107 if (!compare_nodes(document1, node1->data.sequence.items.start[k], in compare_nodes() 108 document2, node2->data.sequence.items.start[k], level)) return 0; in compare_nodes()
|
/optee_benchmark/libyaml/src/ |
A D | loader.c | 330 } items = { NULL, NULL, NULL }; in yaml_parser_load_sequence() local 342 if (!STACK_INIT(parser, items, INITIAL_STACK_SIZE)) goto error; in yaml_parser_load_sequence() 344 SEQUENCE_NODE_INIT(node, tag, items.start, items.end, in yaml_parser_load_sequence() 359 parser->document->nodes.start[index-1].data.sequence.items, in yaml_parser_load_sequence() 364 parser->document->nodes.start[index-1].data.sequence.items, in yaml_parser_load_sequence()
|
A D | dumper.c | 187 STACK_DEL(emitter, node.data.sequence.items); in yaml_emitter_delete_document_and_anchors() 218 for (item = node->data.sequence.items.start; in yaml_emitter_anchor_node() 219 item < node->data.sequence.items.top; item ++) { in yaml_emitter_anchor_node() 353 for (item = node->data.sequence.items.start; in yaml_emitter_dump_sequence() 354 item < node->data.sequence.items.top; item ++) { in yaml_emitter_dump_sequence()
|
A D | api.c | 1136 STACK_DEL(&context, node.data.sequence.items); in yaml_document_delete() 1256 } items = { NULL, NULL, NULL }; in yaml_document_add_sequence() local 1269 if (!STACK_INIT(&context, items, INITIAL_STACK_SIZE)) goto error; in yaml_document_add_sequence() 1271 SEQUENCE_NODE_INIT(node, tag_copy, items.start, items.end, in yaml_document_add_sequence() 1278 STACK_DEL(&context, items); in yaml_document_add_sequence() 1351 document->nodes.start[sequence-1].data.sequence.items, item)) in yaml_document_append_sequence_item()
|
A D | yaml_private.h | 647 (node).data.sequence.items.start = (node_items_start), \ 648 (node).data.sequence.items.end = (node_items_end), \ 649 (node).data.sequence.items.top = (node_items_start), \
|
/optee_benchmark/libyaml/include/ |
A D | yaml.h | 750 } items; member
|
Completed in 14 milliseconds