Home
last modified time | relevance | path

Searched refs:yaml_malloc (Results 1 – 3 of 3) sorted by relevance

/src/contrib/libyaml/src/
H A Dyaml_private.h16 yaml_malloc(size_t size);
93 (((buffer).start = (yaml_char_t *)yaml_malloc(size)) ? \
424 (((stack).start = (type)yaml_malloc(INITIAL_STACK_SIZE*sizeof(*(stack).start))) ? \
457 (((queue).start = (type)yaml_malloc((size)*sizeof(*(queue).start))) ? \
683 #define YAML_MALLOC_STATIC(type) (type*)yaml_malloc(sizeof(type))
684 #define YAML_MALLOC(size) (yaml_char_t *)yaml_malloc(size)
H A Ddumper.c134 emitter->anchors = (yaml_anchors_t*)yaml_malloc(sizeof(*(emitter->anchors)) in yaml_emitter_dump()
H A Dapi.c31 yaml_malloc(size_t size) in yaml_malloc() function