Home
last modified time | relevance | path

Searched refs:INITIAL_STACK_SIZE (Results 1 – 25 of 93) sorted by relevance

1234

/dports/science/octopus/octopus-10.5/external_libs/yaml-0.1.4/src/
H A Dapi.c182 if (!STACK_INIT(parser, parser->indents, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
184 if (!STACK_INIT(parser, parser->simple_keys, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
186 if (!STACK_INIT(parser, parser->states, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
188 if (!STACK_INIT(parser, parser->marks, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
190 if (!STACK_INIT(parser, parser->tag_directives, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
358 if (!STACK_INIT(emitter, emitter->states, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
362 if (!STACK_INIT(emitter, emitter->indents, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
364 if (!STACK_INIT(emitter, emitter->tag_directives, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
1058 if (!STACK_INIT(&context, nodes, INITIAL_STACK_SIZE)) goto error; in yaml_document_initialize()
1269 if (!STACK_INIT(&context, items, INITIAL_STACK_SIZE)) goto error; in yaml_document_add_sequence()
[all …]
H A Dloader.c75 if (!STACK_INIT(parser, document->nodes, INITIAL_STACK_SIZE)) in yaml_parser_load()
93 if (!STACK_INIT(parser, parser->aliases, INITIAL_STACK_SIZE)) in yaml_parser_load()
338 if (!STACK_INIT(parser, items, INITIAL_STACK_SIZE)) goto error; in yaml_parser_load_sequence()
396 if (!STACK_INIT(parser, pairs, INITIAL_STACK_SIZE)) goto error; in yaml_parser_load_mapping()
/dports/devel/mingw32-libyaml/yaml-0.1.6/src/
H A Dapi.c182 if (!STACK_INIT(parser, parser->indents, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
184 if (!STACK_INIT(parser, parser->simple_keys, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
186 if (!STACK_INIT(parser, parser->states, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
188 if (!STACK_INIT(parser, parser->marks, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
190 if (!STACK_INIT(parser, parser->tag_directives, INITIAL_STACK_SIZE)) in yaml_parser_initialize()
358 if (!STACK_INIT(emitter, emitter->states, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
362 if (!STACK_INIT(emitter, emitter->indents, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
364 if (!STACK_INIT(emitter, emitter->tag_directives, INITIAL_STACK_SIZE)) in yaml_emitter_initialize()
1058 if (!STACK_INIT(&context, nodes, INITIAL_STACK_SIZE)) goto error; in yaml_document_initialize()
1269 if (!STACK_INIT(&context, items, INITIAL_STACK_SIZE)) goto error; in yaml_document_add_sequence()
[all …]
H A Dloader.c75 if (!STACK_INIT(parser, document->nodes, INITIAL_STACK_SIZE)) in yaml_parser_load()
93 if (!STACK_INIT(parser, parser->aliases, INITIAL_STACK_SIZE)) in yaml_parser_load()
342 if (!STACK_INIT(parser, items, INITIAL_STACK_SIZE)) goto error; in yaml_parser_load_sequence()
405 if (!STACK_INIT(parser, pairs, INITIAL_STACK_SIZE)) goto error; in yaml_parser_load_mapping()
/dports/devel/gindent/indent-2.2.12/regression/input/
H A Dparse.c23 #define INITIAL_STACK_SIZE 2 macro
31 parser_state_tos->p_stack_size = INITIAL_STACK_SIZE; in init_parser()
33 = (enum codes *) xmalloc (INITIAL_STACK_SIZE * sizeof (enum codes)); in init_parser()
35 = (int *) xmalloc (INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
37 = (int *) xmalloc (INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
/dports/devel/gindent/indent-2.2.12/regression/standard/
H A Dparse.c23 #define INITIAL_STACK_SIZE 2 macro
31 parser_state_tos->p_stack_size = INITIAL_STACK_SIZE; in init_parser()
33 = (enum codes *) xmalloc (INITIAL_STACK_SIZE * sizeof (enum codes)); in init_parser()
34 parser_state_tos->il = (int *) xmalloc (INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
36 = (int *) xmalloc (INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
/dports/sysutils/aptly/aptly-1.4.0/vendor/github.com/awalterschulze/gographviz/parser/
H A Dparser.go83 const INITIAL_STACK_SIZE = 100 const
86 return &stack{state: make([]State, 0, INITIAL_STACK_SIZE),
87 attrib: make([]Attrib, 0, INITIAL_STACK_SIZE),
H A Dparser.temp83 const INITIAL_STACK_SIZE = 100
86 return &stack{state: make([]State, 0, INITIAL_STACK_SIZE),
87 attrib: make([]Attrib, 0, INITIAL_STACK_SIZE),
/dports/lang/mosh/mosh-0.2.7/src/
H A DMultiVMProcedures.cpp159 const int INITIAL_STACK_SIZE = 5000; in makeVmEx() local
161 VM* vm = factory.create(INITIAL_STACK_SIZE, isProfilerON); in makeVmEx()
381 const int INITIAL_STACK_SIZE = 5000; in makeVmEx() local
383 VM* vm = factory.create(INITIAL_STACK_SIZE, isProfilerON); in makeVmEx()
H A Dmain.cpp293 const int INITIAL_STACK_SIZE = 10000; in main() local
297 theVM = factory.create(INITIAL_STACK_SIZE, isProfilerOn); in main()
/dports/devel/gindent/indent-2.2.12/src/
H A Dparse.c57 #define INITIAL_STACK_SIZE 2 macro
68 parser_state_tos->p_stack_size = INITIAL_STACK_SIZE; in init_parser()
69 parser_state_tos->p_stack = xmalloc(INITIAL_STACK_SIZE * sizeof (codes_ty)); in init_parser()
70 parser_state_tos->il = xmalloc(INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
71 parser_state_tos->cstk = xmalloc(INITIAL_STACK_SIZE * sizeof (int)); in init_parser()
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/newlib/libc/sys/linux/linuxthreads/
H A Dinternals.h352 #ifndef INITIAL_STACK_SIZE
353 #define INITIAL_STACK_SIZE (4 * PAGE_SIZE) macro
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/linuxthreads/
H A Dinternals.h352 #ifndef INITIAL_STACK_SIZE
353 #define INITIAL_STACK_SIZE (4 * PAGE_SIZE) macro
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/linux/linuxthreads/
H A Dinternals.h352 #ifndef INITIAL_STACK_SIZE
353 #define INITIAL_STACK_SIZE (4 * PAGE_SIZE) macro
/dports/mail/dovecot/dovecot-2.3.17/src/lib/
H A Ddata-stack.c14 # define INITIAL_STACK_SIZE (1024*10) macro
16 # define INITIAL_STACK_SIZE (1024*32) macro
753 current_block = mem_block_alloc(INITIAL_STACK_SIZE); in data_stack_init()
/dports/lang/gcc6-aux/gcc-6-20180516/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/lang/gcc8/gcc-8.5.0/libiberty/
H A Dsplay-tree.c217 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
218 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/lang/gcc48/gcc-4.8.5/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libiberty/
H A Dsplay-tree.c217 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
218 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libiberty/
H A Dsplay-tree.c217 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
218 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/devel/avr-gdb/gdb-7.3.1/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/lang/gnatdroid-binutils/binutils-2.27/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libiberty/
H A Dsplay-tree.c217 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
218 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libiberty/
H A Dsplay-tree.c218 #define INITIAL_STACK_SIZE 100 in splay_tree_foreach_helper() macro
219 stack_size = INITIAL_STACK_SIZE; in splay_tree_foreach_helper()

1234