Searched refs:copy (Results 1 – 5 of 5) sorted by relevance
/optee_benchmark/libyaml/ |
A D | LICENSE | 3 Permission is hereby granted, free of charge, to any person obtaining a copy of 6 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
A D | .makefile | 8 # If you copy or link this file to `GNUmakefile` then you can just do:
|
/optee_benchmark/ |
A D | LICENSE | 5 Permission is hereby granted, free of charge, to any person obtaining a copy of 8 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
/optee_benchmark/libyaml/src/ |
A D | parser.c | 1345 yaml_tag_directive_t copy = { NULL, NULL }; in yaml_parser_append_tag_directive() local 1357 copy.handle = yaml_strdup(value.handle); in yaml_parser_append_tag_directive() 1358 copy.prefix = yaml_strdup(value.prefix); in yaml_parser_append_tag_directive() 1359 if (!copy.handle || !copy.prefix) { in yaml_parser_append_tag_directive() 1364 if (!PUSH(parser, parser->tag_directives, copy)) in yaml_parser_append_tag_directive() 1370 yaml_free(copy.handle); in yaml_parser_append_tag_directive() 1371 yaml_free(copy.prefix); in yaml_parser_append_tag_directive()
|
A D | emitter.c | 368 yaml_tag_directive_t copy = { NULL, NULL }; in yaml_emitter_append_tag_directive() local 380 copy.handle = yaml_strdup(value.handle); in yaml_emitter_append_tag_directive() 381 copy.prefix = yaml_strdup(value.prefix); in yaml_emitter_append_tag_directive() 382 if (!copy.handle || !copy.prefix) { in yaml_emitter_append_tag_directive() 387 if (!PUSH(emitter, emitter->tag_directives, copy)) in yaml_emitter_append_tag_directive() 393 yaml_free(copy.handle); in yaml_emitter_append_tag_directive() 394 yaml_free(copy.prefix); in yaml_emitter_append_tag_directive()
|
Completed in 9 milliseconds