Searched refs:scope (Results 1 - 25 of 169) sorted by relevance

1234567

/freebsd-11-stable/contrib/byacc/test/
H A Dbtyacc_demo.y26 Scope *scope;
37 Scope *scope;
56 %type <expr> expr(<scope>)
57 %type decl(<scope>) declarator_list(<scope>, <type>)
58 decl_list(<scope>)
59 %type <code> statement(<scope>) statement_list(<scope>)
60 block_statement(<scope>)
61 %type <decl> declarator(<scope>, <typ
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp11 // Calls to NSAutoreleasePools will be rewritten as an @autorelease scope.
22 // - There is not a corresponding -release/-drain in the same scope
24 // - There is a variable that is declared inside the intended @autorelease scope
97 PoolScope &scope = *scpI; local
98 clearRefsIn(*scope.Begin, info.Refs);
99 clearRefsIn(*scope.End, info.Refs);
100 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
121 PoolScope &scope = *scpI; local
122 clearUnavailableDiags(*scope
152 PoolScope &scope = *scpI; local
207 PoolScope &scope = Scopes.back(); local
253 NameReferenceChecker(ASTContext &ctx, PoolScope &scope, SourceLocation &referenceLoc, SourceLocation &declarationLoc) argument
295 handlePoolScope(PoolScope &scope, CompoundStmt *compoundS) argument
[all...]
/freebsd-11-stable/sys/netinet6/
H A Dscope6.c227 * Get a scope of the address. Node-local, link-local, site-local or global.
311 * Validate the specified scope zone ID in the sin6_scope_id field. If the ID
314 * This routine then generates the kernel-internal form: if the address scope
331 * link-local scope IDs, and use interface indices as the
373 "%s: embedded scope mismatch: %s%%%d. "
387 * Determine the appropriate scope zone ID for in6 and ifp. If ret_id is
396 int scope; local
408 scope = in6_addrscope(in6);
409 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL ||
410 scope
482 in6_getscopezone(const struct ifnet *ifp, int scope) argument
522 int scope; local
562 int scope; local
[all...]
H A Din6_cksum.c87 uint16_t scope, *w; local
111 scope = in6_getscope(&ip6->ip6_src);
115 if (scope != 0)
116 sum -= scope;
119 scope = in6_getscope(&ip6->ip6_dst);
123 if (scope != 0)
124 sum -= scope;
155 u_int16_t *w, scope; local
193 scope = in6_getscope(&ip6->ip6_src);
197 if (scope !
[all...]
/freebsd-11-stable/sys/compat/cloudabi/
H A Dcloudabi_thread.c45 .scope = uap->scope,
/freebsd-11-stable/contrib/openpam/include/security/
H A Dpam_types.h80 void *scope; member in struct:pam_repository
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DAbsoluteAtom.h23 /// scope - The visibility of this atom to other atoms. C static functions
24 /// have scope scopeTranslationUnit. Regular C functions have scope
25 /// scopeGlobal. Functions compiled with visibility=hidden have scope
28 virtual Scope scope() const = 0;
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DAtoms.h29 MachODefinedAtom(const File &f, const StringRef name, Scope scope, argument
33 _align(align), _contentType(type), _scope(scope), _merge(merge),
37 MachODefinedAtom(const File &f, const StringRef name, Scope scope, argument
42 _contentType(type), _scope(scope), _merge(mergeNo), _thumb(false),
55 Scope scope() const override { return _scope; }
90 Scope scope, ContentType type, Merge merge,
94 : MachODefinedAtom(f, name, scope, type, merge, thumb, noDeadStrip,
113 MachOTentativeDefAtom(const File &f, const StringRef name, Scope scope, argument
115 : SimpleDefinedAtom(f), _name(name), _scope(scope), _size(size),
130 Scope scope() cons
89 MachODefinedCustomSectionAtom(const File &f, const StringRef name, Scope scope, ContentType type, Merge merge, bool thumb, bool noDeadStrip, const ArrayRef<uint8_t> content, StringRef sectionName, Alignment align) argument
[all...]
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.h166 typedef struct scope { struct
167 SLIST_ENTRY(scope) scope_stack_links;
168 TAILQ_ENTRY(scope) scope_links;
169 TAILQ_HEAD(, scope) inner_scope;
179 SLIST_HEAD(scope_list, scope);
180 TAILQ_HEAD(scope_tailq, scope);
H A Daicasm.h90 struct scope *scope_alloc(void);
91 void process_scope(struct scope *);
/freebsd-11-stable/contrib/ntp/libntp/
H A Ddecodenetnum.c84 * brackets, ports and scope identifiers. The heuristics are
93 unsigned int port=NTP_PORT, scope=0; local
134 /* For AF_INET6, evaluate and remove any scope suffix. Have
146 scope = _num_or_dflt(_chop(strchr(haddr, '%')), 0xFFFFFFFFu, scope);
150 netnum.sa6.sin6_scope_id = scope;
H A Dsocktoa.c39 u_long scope; local
58 scope = SCOPE_VAR(sock);
59 if (0 != scope && !strchr(res, '%')) {
63 addr, scope);
/freebsd-11-stable/sys/compat/linuxkpi/common/include/net/
H A Dip.h77 unsigned char scope; local
80 scope = bcast[5] & 0xF;
86 buf[5] = 0x10 | scope;
H A Dipv6.h50 unsigned char scope; local
52 scope = broadcast[5] & 0xF;
58 buf[5] = 0x10 | scope;
/freebsd-11-stable/contrib/gcc/cp/
H A Dname-lookup.c36 /* The bindings for a particular name in a particular scope. */
127 a given scope. */
309 binding->scope = NULL;
315 bindings) in the class scope indicated by SCOPE. */
318 new_class_binding (tree name, tree value, tree type, cxx_scope *scope)
323 cb = VEC_safe_push (cp_class_binding, gc, scope->class_shadowed, NULL);
327 binding->scope = scope;
342 binding->scope = level;
399 /* BINDING records an existing declaration for a name in the current scope
317 new_class_binding(tree name, tree value, tree type, cxx_scope *scope) argument
1182 cxx_scope_descriptor(cxx_scope *scope) argument
1207 cxx_scope_debug(cxx_scope *scope, int line, const char *action) argument
1239 push_binding_level(struct cp_binding_level *scope) argument
1263 cxx_scope *scope; local
1325 cxx_scope *scope = current_binding_level; local
1758 find_binding(cxx_scope *scope, cxx_binding *binding) argument
1772 cxx_scope_find_binding_for_name(cxx_scope *scope, tree name) argument
1789 binding_for_name(cxx_scope *scope, tree name) argument
1814 push_using_decl(tree scope, tree name) argument
2018 validate_nonmember_using_decl(tree decl, tree scope, tree name) argument
2066 do_nonmember_using_decl(tree scope, tree name, tree oldval, tree oldtype, tree *newval, tree *newtype) argument
2218 do_local_using_decl(tree decl, tree scope, tree name) argument
2576 get_class_binding(tree name, cxx_scope *scope) argument
2688 tree scope = context_for_name_lookup (x); local
2787 do_class_using_decl(tree scope, tree name) argument
2899 namespace_binding(tree name, tree scope) argument
2917 set_namespace_binding(tree name, tree scope, tree val) argument
2936 set_decl_namespace(tree decl, tree scope, bool friendp) argument
3329 do_toplevel_using_decl(tree decl, tree scope, tree name) argument
3685 tree scope = initial; local
3742 lookup_qualified_name(tree scope, tree name, bool is_type_p, bool complain) argument
3773 lookup_using_namespace(tree name, struct scope_binding *val, tree usings, tree scope, int flags) argument
3800 qualified_lookup_using_namespace(tree name, tree scope, struct scope_binding *result, int flags) argument
3874 cxx_scope *scope; local
4116 lookup_type_scope(tree name, tag_scope scope) argument
4325 is_associated_namespace(tree current, tree scope) argument
4399 arg_assoc_namespace(struct arg_lookup *k, tree scope) argument
4857 pushtag(tree name, tree type, tag_scope scope) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dblock.c31 scope. */
35 const char *scope; member in struct:block_namespace_info
164 superblocks looking for a scope, if necessary. */
172 && BLOCK_NAMESPACE (block)->scope != NULL)
173 return BLOCK_NAMESPACE (block)->scope;
179 /* Set BLOCK's scope member to SCOPE; if needed, allocate memory via
184 block_set_scope (struct block *block, const char *scope, argument
189 BLOCK_NAMESPACE (block)->scope = scope;
237 BLOCK_NAMESPACE (block)->scope
[all...]
H A Dcp-namespace.c79 const char *scope,
90 const char *scope,
328 that are in scope. NAME is the natural name of the symbol that
345 /* Lookup NAME at namespace scope (or, in C terms, in static and
366 const char *scope,
371 if (scope[scope_len] != '\0')
378 /* If the current scope is followed by "::", skip past that. */
381 gdb_assert (scope[new_scope_len] == ':');
384 new_scope_len += cp_find_first_component (scope + new_scope_len);
387 scope, new_scope_le
361 lookup_namespace_scope(const char *name, const char *linkage_name, const struct block *block, const domain_enum domain, struct symtab **symtab, const char *scope, int scope_len) argument
582 const char *scope; local
603 cp_lookup_transparent_type_loop(const char *name, const char *scope, int length) argument
[all...]
/freebsd-11-stable/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h24 Scope *scope; member in union:__anon139
H A Dbtyacc_demo.tab.c140 Scope *scope; member in struct:Decl
156 Scope *scope; member in union:__anon137
642 extern Decl * lookup(Scope *scope, char *id);
644 extern Scope * start_fn_def(Scope *scope, Decl *fn_decl);
652 extern Decl * declare(Scope *scope, char *id, Type *type);
659 extern Expr * var_expr(Scope *scope, char *id);
949 free((*val).decl->scope); free((*val).decl->type); }
1066 free((*val).scope); }
1093 free((*val).scope); }
1102 free((*val).scope); }
[all...]
/freebsd-11-stable/contrib/unbound/edns-subnet/
H A Daddrtree.h39 * is the addition of 'scope' to a node. Scope is only relevant for
46 * node.scope<=sourcemask && node.elem!=NULL
52 * Insertion needs an address, sourcemask and scope. The length of the
53 * address is capped by min(sourcemask, scope). While traversing the
54 * tree the scope of all visited nodes is updated. This ensures we are
97 addrlen_t scope; member in struct:addrnode
150 * scope might be changed according to local policy. Caller should no
157 * @param scope: Number of significant bits in addr.
163 addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl,
H A Daddrtree.c85 * @param scope: Scopemask from server reply
90 node_create(struct addrtree *tree, void *elem, addrlen_t scope, argument
98 node->scope = scope;
360 addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl,
372 if (tree->max_depth < scope) scope = tree->max_depth;
374 if (scope < sourcemask) sourcemask = scope;
381 /* update this node's scope an
359 addrtree_insert(struct addrtree *tree, const addrkey_t *addr, addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl, time_t now) argument
[all...]
/freebsd-11-stable/sys/amd64/vmm/
H A Dvmm_stat.h54 enum vmm_stat_scope scope; member in struct:vmm_stat_type
59 #define VMM_STAT_FDEFINE(type, nelems, desc, func, scope) \
61 { -1, nelems, desc, func, scope } \
65 #define VMM_STAT_DEFINE(type, nelems, desc, scope) \
66 VMM_STAT_FDEFINE(type, nelems, desc, NULL, scope)
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dstabs.c191 int scope = 0; local
218 scope++;
219 debug(3, "stab %d: opening scope (%d)\n", i + 1, scope);
222 scope--;
223 debug(3, "stab %d: closing scope (%d)\n", i + 1, scope);
231 * trying to pop a stack that only has the outer scope
324 /* Make sure the scope tracking is working correctly */
326 iidescp->ii_type != II_SFUN) || scope
[all...]
/freebsd-11-stable/usr.sbin/ypldap/
H A Daldap.h82 int scope; member in struct:aldap_url
120 enum scope { enum
200 int aldap_search(struct aldap *, char *, enum scope, char *, char **, int, int, int, struct aldap_page_control *);
/freebsd-11-stable/contrib/smbfs/lib/smb/
H A Dnb.c90 nb_ctx_setscope(struct nb_ctx *ctx, const char *scope) argument
92 size_t slen = strlen(scope);
95 smb_error("scope '%s' is too long", 0, scope);
103 nls_str_upper(ctx->nb_scope, scope);

Completed in 426 milliseconds

1234567