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

1234567

/freebsd-13-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-13-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-13-stable/sys/netinet6/
H A Dscope6.c226 * Get a scope of the address. Node-local, link-local, site-local or global.
310 * Validate the specified scope zone ID in the sin6_scope_id field. If the ID
313 * This routine then generates the kernel-internal form: if the address scope
330 * link-local scope IDs, and use interface indices as the
372 "%s: embedded scope mismatch: %s%%%d. "
386 * Determine the appropriate scope zone ID for in6 and ifp. If ret_id is
395 int scope; local
407 scope = in6_addrscope(in6);
408 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL ||
409 scope
505 in6_getscopezone(const struct ifnet *ifp, int scope) argument
545 int scope; local
585 int scope; local
[all...]
H A Din6_cksum.c89 uint16_t scope, *w; local
113 scope = in6_getscope(&ip6->ip6_src);
117 if (scope != 0)
118 sum -= scope;
121 scope = in6_getscope(&ip6->ip6_dst);
125 if (scope != 0)
126 sum -= scope;
157 u_int16_t *w, scope; local
195 scope = in6_getscope(&ip6->ip6_src);
199 if (scope !
[all...]
/freebsd-13-stable/sys/compat/cloudabi/
H A Dcloudabi_thread.c45 .scope = uap->scope,
/freebsd-13-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-13-stable/contrib/openpam/include/security/
H A Dpam_types.h80 void *scope; member in struct:pam_repository
/freebsd-13-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(std::string(name)), _scope(scope),
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-13-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.h168 typedef struct scope { struct
169 SLIST_ENTRY(scope) scope_stack_links;
170 TAILQ_ENTRY(scope) scope_links;
171 TAILQ_HEAD(, scope) inner_scope;
181 SLIST_HEAD(scope_list, scope);
182 TAILQ_HEAD(scope_tailq, scope);
H A Daicasm.h92 struct scope *scope_alloc(void);
93 void process_scope(struct scope *);
/freebsd-13-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-13-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-13-stable/contrib/kyua/utils/signals/
H A Dprogrammer_test.cpp86 ATF_TEST_CASE_WITHOUT_HEAD(scope); variable
87 ATF_TEST_CASE_BODY(scope)
138 ATF_ADD_TEST_CASE(tcs, scope);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarname-dot-shell.mk25 # This has no effect since the variable is not defined in the global scope,
26 # but in the command-line scope.
/freebsd-13-stable/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.h24 Scope *scope; member in union:__anon365
/freebsd-13-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-13-stable/sys/amd64/vmm/
H A Dvmm_stat.h56 enum vmm_stat_scope scope; member in struct:vmm_stat_type
61 #define VMM_STAT_FDEFINE(type, nelems, desc, func, scope) \
63 { -1, nelems, desc, func, scope } \
67 #define VMM_STAT_DEFINE(type, nelems, desc, scope) \
68 VMM_STAT_FDEFINE(type, nelems, desc, NULL, scope)
/freebsd-13-stable/contrib/bmake/
H A Dvar.c121 * Var_Dump Print out all variables defined in the given scope.
198 * There are 3 kinds of variables: scope variables, environment variables,
201 * Scope variables are stored in a GNode.scope. The only way to undefine
202 * a scope variable is using the .undef directive. In particular, it must
215 * For scope variables, it aliases the corresponding HashEntry name.
300 * A scope collects variable names and their values.
302 * The main scope is SCOPE_GLOBAL, which contains the variables that are set
311 * There is no scope for environment variables, these are generated on-the-fly
312 * whenever they are referenced. If there were such a scope, each change to
313 * environment variables would have to be reflected in that scope, whic
389 GNode_FindVar(GNode *scope, const char *varname, unsigned int hash) argument
408 VarFind(const char *name, GNode *scope, Boolean elsewhere) argument
494 VarAdd(const char *name, const char *val, GNode *scope, VarSetFlags flags) argument
508 Var_Delete(GNode *scope, const char *varname) argument
535 Var_DeleteExpand(GNode *scope, const char *name) argument
937 Var_SetWithFlags(GNode *scope, const char *name, const char *val, VarSetFlags flags) argument
1021 Var_SetExpandWithFlags(GNode *scope, const char *name, const char *val, VarSetFlags flags) argument
1047 Var_Set(GNode *scope, const char *name, const char *val) argument
1064 Var_SetExpand(GNode *scope, const char *name, const char *val) argument
1094 Var_Append(GNode *scope, const char *name, const char *val) argument
1150 Var_AppendExpand(GNode *scope, const char *name, const char *val) argument
1183 Var_Exists(GNode *scope, const char *name) argument
1202 Var_ExistsExpand(GNode *scope, const char *name) argument
1233 Var_Value(GNode *scope, const char *name) argument
1453 GNode *scope; member in struct:ModifyWord_SYSVSubstArgs
1682 GNode *scope; member in struct:ModifyWord_LoopArgs
2080 GNode *const scope; member in struct:ApplyModifiersState
3273 GNode *scope; local
3722 ApplyModifiers( const char **pp, FStr value, char startc, char endc, Var *v, VarExprStatus *exprStatus, GNode *scope, VarEvalFlags eflags ) argument
3830 UndefinedShortVarValue(char varname, const GNode *scope) argument
3861 ParseVarname(const char **pp, char startc, char endc, GNode *scope, VarEvalFlags eflags, size_t *out_varname_len) argument
3933 ParseVarnameShort(char startc, const char **pp, GNode *scope, VarEvalFlags eflags, VarParseResult *out_FALSE_res, const char **out_FALSE_val, Var **out_TRUE_var) argument
3996 FindLocalLegacyVar(const char *varname, size_t namelen, GNode *scope, const char **out_extraModifiers) argument
4062 ParseVarnameLong( const char *p, char startc, GNode *scope, VarEvalFlags eflags, const char **out_FALSE_pp, VarParseResult *out_FALSE_res, FStr *out_FALSE_val, char *out_TRUE_endc, const char **out_TRUE_p, Var **out_TRUE_v, Boolean *out_TRUE_haveModifier, const char **out_TRUE_extraModifiers, Boolean *out_TRUE_dynamic, VarExprStatus *out_TRUE_exprStatus ) argument
4213 Var_Parse(const char **pp, GNode *scope, VarEvalFlags eflags, FStr *out_val) argument
4356 VarSubstExpr(const char **pp, Buffer *buf, GNode *scope, VarEvalFlags eflags, Boolean *inout_errorReported) argument
4436 Var_Subst(const char *str, GNode *scope, VarEvalFlags eflags, char **out_res) argument
4486 Var_Dump(GNode *scope) argument
[all...]
/freebsd-13-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-13-stable/sys/contrib/openzfs/module/zcommon/
H A Dzfeature_common.c169 zfs_mod_supported_impl(const char *scope, const char *name, const char *sysfs) argument
175 scope == NULL ? "" : "/", scope == NULL ? "" : scope,
187 zfs_mod_supported(const char *scope, const char *name) argument
195 supported = (zfs_mod_supported_impl(scope, name, ZFS_SYSFS_DIR) ||
196 zfs_mod_supported_impl(scope, name, ZFS_SYSFS_ALT_DIR));
202 * scope directory does not exist.
207 !zfs_mod_supported_impl(scope, NULL, ZFS_SYSFS_DIR) &&
208 !zfs_mod_supported_impl(scope, NUL
[all...]
/freebsd-13-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-13-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 323 milliseconds

1234567