Home
last modified time | relevance | path

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

/petsc/src/sys/yaml/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 Dapi.c9 yaml_malloc(size_t size) in yaml_malloc() function