Searched refs:nested (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-11.0-release/contrib/gcclibs/libgomp/
H A Dteam.c62 bool nested; member in struct:gomp_thread_start_data
93 if (data->nested)
184 bool nested; local
189 nested = thr->ts.team != NULL;
193 /* Always save the previous state, even if this isn't a nested team.
209 /* We only allow the reuse of idle threads for non-nested PARALLEL
214 if (!nested)
296 start_data->nested = nested;
310 gomp_barrier_wait (nested
[all...]
/freebsd-11.0-release/contrib/netbsd-tests/fs/tmpfs/
H A Dt_mkdir.sh29 # Verifies that mkdir works by creating some nested directories. It also
72 atf_test_case nested
74 atf_set "descr" "Checks if nested directories can be created"
156 atf_add_test_case nested
H A Dt_rmdir.sh80 atf_test_case nested
82 atf_set "descr" "Checks that removing nested directories works"
198 atf_add_test_case nested
/freebsd-11.0-release/release/picobsd/tinyware/msh/
H A Dsh5.c123 err("Shell input nested too deeply");
H A Dsh2.c57 _PROTOTYPE(static struct op *nested, (int type, int mark ));
217 nested(type, mark) function
255 t = nested(TPAREN, ')');
259 t = nested(TBRACE, '}');
/freebsd-11.0-release/contrib/ntp/sntp/ag-tpl/0-old/
H A Dmdoc2man117 Mdoc::set_Bl_callback(do { my $nested = 0; sub {
122 # Wrap nested lists with .RS and .RE
124 return '.RE' if $nested-- > 1;
130 if ($nested++) {
H A DMdoc.pm27 Normaly CODE reference is passed all arguments up to next nested macro. Set
64 called and for all the nested macros. Every called macro returns a list which
65 is appended to return value and returned when all nested macros are processed.
/freebsd-11.0-release/contrib/ntp/sntp/ag-tpl/
H A Dmdoc2man143 Mdoc::set_Bl_callback(do { my $nested = 0; sub {
148 # Wrap nested lists with .RS and .RE
150 return '.RE' if $nested-- > 1;
156 if ($nested++) {
H A DMdoc.pm54 Normaly CODE reference is passed all arguments up to next nested macro. Set
91 called and for all the nested macros. Every called macro returns a list which
92 is appended to return value and returned when all nested macros are processed.
/freebsd-11.0-release/contrib/gcc/
H A Dc-gimplify.c111 /* Genericize all nested functions now. We do things in this order so
115 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
H A Dcgraph.c226 node->next_nested = node->origin->nested;
227 node->origin->nested = node;
539 while (node->nested)
540 cgraph_remove_node (node->nested);
543 struct cgraph_node **node2 = &node->origin->nested;
720 fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
767 fprintf (f, "(nested in %i loops) ", edge->loop_nest);
1075 new->next_nested = new->origin->nested;
1076 new->origin->nested = new;
1130 /* NODE is no longer nested functio
[all...]
H A Dcgraph.h122 /* For nested functions points to function the node is nested in. */
124 /* Points to first nested function, if any. */
125 struct cgraph_node *nested; local
H A Dcgraphunit.c229 declared inline and nested functions. These was optimized out
463 Its purpose is to lower block helper (or any other nested function)
464 which may have been nested in a constructor or destructor. We have to
466 is the only way to lower the nested functions). */
480 cgraph_finalize_function (tree decl, bool nested) argument
491 if (node->nested)
494 gcc_assert (!node->nested);
515 if (!nested)
1261 /* ??? Can happen with nested function of extern inline. */
H A Dc-decl.c94 around nested function definition since such a definition could only
166 of a nested function which is never defined. */
204 ignored for purposes of normal name lookup, and the nested bit is
218 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
279 error_mark_node. (GCC permits nested functions as an extension,
351 nested functions, or declared at block scope with __label__). */
496 bind (tree name, tree decl, struct c_scope *scope, bool invisible, bool nested)
513 b->nested = nested;
689 sorry ("GCC supports only %u nested scope
492 bind(tree name, tree decl, struct c_scope *scope, bool invisible, bool nested) argument
2113 bool nested = false; local
2367 bool nested = false; local
[all...]
H A Dtree-nested.c40 /* The object of this pass is to lower the representation of a set of nested
48 the nested functions magically discovered where these variables were
59 static chain for a nested function is a pointer to this struct in
76 at all. That is, they're nested in the lexical sense but could have
207 shared between INFO->CONTEXT and its nested functions. This record will
235 the nested functions referencing non-local variables are not
426 /* Build or return the type used to represent a nested function trampoline. */
464 /* Given DECL, a nested function, find or create a field in the non-local
707 /* Similarly for ROOT and all functions nested underneath, depth first. */
724 nested functio
[all...]
/freebsd-11.0-release/contrib/bmake/mk/
H A Dtarget-flags.mk35 # Only works with a make(1) that does nested evaluation correctly.
H A Dwarnings.mk129 nested-externs \
/freebsd-11.0-release/contrib/ntp/sntp/libopts/
H A DMakefile.am57 nested.c numeric.c option-value-type.c \
/freebsd-11.0-release/contrib/bmake/unit-tests/
H A Dmodword.mk25 mod-squarebrackets-nested
113 mod-squarebrackets-nested:
/freebsd-11.0-release/tools/tools/shlib-compat/
H A Dshlib-compat.py175 def nested(self): member in class:PrettyPrinter
505 params = [ self.build(x) for x in raw.nested ]
514 params = [ self.build(x) for x in raw.nested ]
538 members = [ self.build(x) for x in raw.nested ]
555 members = [ self.build(x) for x in raw.nested ]
590 subranges = [ self.build(x) for x in raw.nested ]
818 self.nested = []
949 prev.nested.append(tag)
1033 for i in pp.nested():
1049 for i in self.pp.nested()
[all...]
/freebsd-11.0-release/usr.sbin/bhyve/
H A Dtask_switch.c487 bool nested; local
489 nested = false;
492 nested = true;
496 if (nested)
556 * If this is a nested task then write out the new TSS to update
559 if (nested)
/freebsd-11.0-release/contrib/gcc/cp/
H A Dmethod.c748 bool nested = (current_function_decl != NULL_TREE);
773 else if (nested)
811 else if (nested)
746 bool nested = (current_function_decl != NULL_TREE); local
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs_fs.c137 Instances of this structure may be nested to allow for multiple locks to
164 This may be user-provided or a nested call to with_lock(). */
169 This may be user-provided or a nested lock baton instance. */
181 /* TRUE, iff this is not a nested lock.
330 with_lock_baton_t *nested)
333 apr_pool_t *lock_pool = nested->lock_pool;
337 result->fs = nested->fs;
339 /* Execution of this baton means acquiring the nested lock and its
342 result->baton = nested;
350 nested
328 chain_lock_baton(lock_id_t lock_id, with_lock_baton_t *nested) argument
[all...]
/freebsd-11.0-release/gnu/usr.bin/cc/cc_int/
H A DMakefile28 tree-ssa-phiopt.o tree-ssa-forwprop.o tree-nested.o tree-ssa-dse.o \
/freebsd-11.0-release/gnu/usr.bin/cc/cc_tools/
H A DMakefile79 $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \

Completed in 164 milliseconds

12