Home
last modified time | relevance | path

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

/freebsd/contrib/libyaml/src/
H A Dscanner.c2117 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_directive_name()
2328 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_anchor()
2509 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_tag_handle()
2577 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_tag_uri()
2755 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
2756 if (!STRING_INIT(parser, leading_break, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
2757 if (!STRING_INIT(parser, trailing_breaks, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_block_scalar()
3036 if (!STRING_INIT(parser, string, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
3037 if (!STRING_INIT(parser, leading_break, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
3038 if (!STRING_INIT(parser, trailing_breaks, INITIAL_STRING_SIZE)) goto error; in yaml_parser_scan_flow_scalar()
[all …]
H A Dyaml_private.h86 #define INITIAL_STRING_SIZE 16 macro