Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/freebsd-14.2/contrib/bmake/unit-tests/
H A Dvar-scope-local.mk165 var-scope-local.c:
180 all: var-scope-local.o
193 all: var-scope-local-subst.o
194 all: var-scope-local-shell.o
196 var-scope-local-assign.o \
197 var-scope-local-append.o \
199 var-scope-local-default.o \
200 var-scope-local-subst.o \
201 var-scope-local-shell.o:
268 all: var-scope-local-use.o
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp97 PoolScope &scope = *scpI; in ~AutoreleasePoolRewriter() local
100 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs); in ~AutoreleasePoolRewriter()
121 PoolScope &scope = *scpI; in ~AutoreleasePoolRewriter() local
123 clearUnavailableDiags(*scope.End); in ~AutoreleasePoolRewriter()
127 Pass.TA.removeStmt(*scope.End); in ~AutoreleasePoolRewriter()
152 PoolScope &scope = *scpI; in ~AutoreleasePoolRewriter() local
208 scope.End = I; in VisitCompoundStmt()
209 handlePoolScope(scope, S); in VisitCompoundStmt()
340 ReleaseCollector releaseColl(scope.PoolVar, scope.Releases); in handlePoolScope()
343 for (; I != scope.End; ++I) in handlePoolScope()
[all …]
/freebsd-14.2/contrib/byacc/test/
H A Dbtyacc_demo.y26 Scope *scope; member
37 Scope *scope; member
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>)
61 %type <decl> declarator(<scope>, <type>) formal_arg(<scope>)
62 %type <type> decl_specs(<scope>) decl_spec(<scope>) typename(<scope>)
64 %type <scope> opt_scope(<scope>)
65 %type <dlist> formal_arg_list(<scope>) nonempty_formal_arg_list(<scope>)
[all …]
/freebsd-14.2/sys/netinet6/
H A Dscope6.c407 int scope; in in6_setscope() local
419 scope = in6_addrscope(in6); in in6_setscope()
438 zoneid = sid->s6id_list[scope]; in in6_setscope()
521 scope == IPV6_ADDR_SCOPE_LINKLOCAL) in in6_getscopezone()
523 if (scope >= 0 && scope < IPV6_ADDR_SCOPES_COUNT) in in6_getscopezone()
524 return (SID(ifp)->s6id_list[scope]); in in6_getscopezone()
557 int scope; in sa6_checkzone() local
559 scope = in6_addrscope(&sa6->sin6_addr); in sa6_checkzone()
560 if (scope == IPV6_ADDR_SCOPE_GLOBAL) in sa6_checkzone()
597 int scope; in sa6_checkzone_ifp() local
[all …]
H A Din6_cksum.c97 uint16_t scope, *w; in _in6_cksum_pseudo() local
121 scope = in6_getscope(&ip6->ip6_src); in _in6_cksum_pseudo()
125 if (scope != 0) in _in6_cksum_pseudo()
126 sum -= scope; in _in6_cksum_pseudo()
133 if (scope != 0) in _in6_cksum_pseudo()
134 sum -= scope; in _in6_cksum_pseudo()
266 uint16_t *w, scope; in in6_cksum_partial() local
301 if (scope != 0) in in6_cksum_partial()
302 sum -= scope; in in6_cksum_partial()
309 if (scope != 0) in in6_cksum_partial()
[all …]
/freebsd-14.2/contrib/bmake/
H A Dvar.c1105 v = VarFind(name, scope, scope == SCOPE_GLOBAL); in Var_Append()
1421 GNode *scope; member
1660 GNode *scope; member
2406 args.scope = expr->scope; in ApplyModifier_Loop()
3545 GNode *scope; in ApplyModifier_Assign() local
3575 scope = expr->scope; /* scope where v belongs */ in ApplyModifier_Assign()
3750 args.scope = expr->scope; in ApplyModifier_SysV()
4178 if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL) { in UndefinedShortVarValue()
4312 if (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL) in FindLocalLegacyVar()
4420 (scope == SCOPE_CMDLINE || scope == SCOPE_GLOBAL); in ParseVarnameLong()
[all …]
/freebsd-14.2/contrib/unbound/edns-subnet/
H A Daddrtree.c98 node->scope = scope; in node_create()
374 if (tree->max_depth < scope) scope = tree->max_depth; in addrtree_insert()
376 if (scope < sourcemask) sourcemask = scope; in addrtree_insert()
388 node->scope = scope; in addrtree_insert()
404 newnode = node_create(tree, elem, scope, ttl); in addrtree_insert()
425 node->scope = scope; in addrtree_insert()
451 newnode->scope = scope; in addrtree_insert()
461 newnode = node_create(tree, elem, scope, ttl); in addrtree_insert()
493 log_assert(node->scope >= depth); in addrtree_find()
494 if (depth == node->scope || in addrtree_find()
[all …]
/freebsd-14.2/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); argument
180 TAILQ_HEAD(scope_tailq, scope);
H A Daicasm.c80 static void dump_scope(scope_t *scope);
461 dump_scope(scope_t *scope) in dump_scope() argument
468 emit_patch(scope, 0); in dump_scope()
473 cur_scope = TAILQ_FIRST(&scope->inner_scope); in dump_scope()
484 emit_patch(scope, 1); in dump_scope()
488 emit_patch(scope_t *scope, int patch) in emit_patch() argument
493 pinfo = &scope->patches[patch]; in emit_patch()
507 new_patch->patch_func = scope->func_num; in emit_patch()
508 new_patch->begin = scope->begin_addr; in emit_patch()
511 new_patch->begin = scope->end_addr; in emit_patch()
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/zcommon/
H A Dzfeature_common.c176 zfs_mod_list_supported(const char *scope) in zfs_mod_list_supported() argument
179 (void) scope; in zfs_mod_list_supported()
190 ZFS_SYSFS_DIR, scope) < sizeof (path)) in zfs_mod_list_supported()
194 ZFS_SYSFS_ALT_DIR, scope) < sizeof (path)) in zfs_mod_list_supported()
251 zfs_mod_supported_impl(const char *scope, const char *name, const char *sysfs) in zfs_mod_supported_impl() argument
255 scope == NULL ? "" : "/", scope ?: "", in zfs_mod_supported_impl()
263 zfs_mod_supported(const char *scope, const char *name, in zfs_mod_supported() argument
276 supported = (zfs_mod_supported_impl(scope, name, ZFS_SYSFS_DIR) || in zfs_mod_supported()
277 zfs_mod_supported_impl(scope, name, ZFS_SYSFS_ALT_DIR)); in zfs_mod_supported()
287 !zfs_mod_supported_impl(scope, NULL, ZFS_SYSFS_DIR)) || in zfs_mod_supported()
[all …]
/freebsd-14.2/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.c140 Scope *scope; member
156 Scope *scope; member
1855 { yyval.scope = yystack.l_mark[0].scope; } in YYPARSE_DECL()
1867 yyval.scope = d->scope; } in YYPARSE_DECL()
1884 yyval.scope = yystack.l_mark[-1].scope; in YYPARSE_DECL()
1894 yyval.scope = start_fn_def(yystack.l_mark[-2].scope, yystack.l_mark[0].decl); in YYPARSE_DECL()
1966 yyval.scope = yystack.l_mark[-3].scope; in YYPARSE_DECL()
1989 yyval.scope = yystack.l_mark[-2].scope; in YYPARSE_DECL()
2114 yyval.scope = yystack.l_mark[-6].scope; in YYPARSE_DECL()
2119 yyval.scope = yystack.l_mark[-9].scope; in YYPARSE_DECL()
[all …]
/freebsd-14.2/sys/amd64/vmm/
H A Dvmm_stat.h54 enum vmm_stat_scope scope; member
59 #define VMM_STAT_FDEFINE(type, nelems, desc, func, scope) \ argument
61 { -1, nelems, desc, func, scope } \
65 #define VMM_STAT_DEFINE(type, nelems, desc, scope) \ argument
66 VMM_STAT_FDEFINE(type, nelems, desc, NULL, scope)
/freebsd-14.2/contrib/ntp/libntp/
H A Ddecodenetnum.c93 unsigned int port=NTP_PORT, scope=0; in decodenetnum() local
146 scope = _num_or_dflt(_chop(strchr(haddr, '%')), 0xFFFFFFFFu, scope); in decodenetnum()
150 netnum.sa6.sin6_scope_id = scope; in decodenetnum()
H A Dsocktoa.c38 u_long scope; in socktoa() local
57 scope = SCOPE_VAR(sock); in socktoa()
58 if (0 != scope && !strchr(res, '%')) { in socktoa()
62 addr, scope); in socktoa()
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp452 ExecutionContextScope *scope = frame_sp.get(); in Materialize() local
454 if (!scope) in Materialize()
455 scope = map.GetBestExecutionContextScope(); in Materialize()
532 if (data.GetByteSize() < GetByteSize(scope)) { in Materialize()
616 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize() local
618 if (!scope) in Dematerialize()
619 scope = map.GetBestExecutionContextScope(); in Dematerialize()
772 SetupValueObject(ExecutionContextScope *scope) = 0;
779 GetByteSize(ExecutionContextScope *scope) const = 0;
821 return m_variable_sp->GetType()->GetByteSize(scope); in GetByteSize()
[all …]
/freebsd-14.2/sys/compat/linuxkpi/common/include/net/
H A Dip.h75 unsigned char scope; in ip_ib_mc_map() local
78 scope = bcast[5] & 0xF; in ip_ib_mc_map()
84 buf[5] = 0x10 | scope; in ip_ib_mc_map()
H A Dipv6.h54 unsigned char scope; in ipv6_ib_mc_map() local
56 scope = broadcast[5] & 0xF; in ipv6_ib_mc_map()
62 buf[5] = 0x10 | scope; in ipv6_ib_mc_map()
/freebsd-14.2/contrib/smbfs/lib/smb/
H A Dnb.c90 nb_ctx_setscope(struct nb_ctx *ctx, const char *scope) in nb_ctx_setscope() argument
92 size_t slen = strlen(scope); in nb_ctx_setscope()
95 smb_error("scope '%s' is too long", 0, scope); in nb_ctx_setscope()
103 nls_str_upper(ctx->nb_scope, scope); in nb_ctx_setscope()
/freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_dis.c103 dt_dis_varname(const dtrace_difo_t *dp, uint_t id, uint_t scope) in dt_dis_varname() argument
109 if (dvp->dtdv_id == id && dvp->dtdv_scope == scope) { in dt_dis_varname()
463 char kind[4], scope[4], flags[16] = { 0 }; in dt_dis() local
479 (void) strcpy(scope, "glb"); in dt_dis()
482 (void) strcpy(scope, "tls"); in dt_dis()
485 (void) strcpy(scope, "loc"); in dt_dis()
488 (void) snprintf(scope, sizeof (scope), in dt_dis()
504 v->dtdv_id, kind, scope, flags + 1, in dt_dis()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVRange.cpp30 LVScope *Scope = RangeEntry.scope(); in startSearch()
37 RangeEntry.scope()); in startSearch()
113 return RangeEntry.scope(); in getEntry()
148 LVScope *Scope = RangeEntry.scope(); in print()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.h472 static bool classof(const EHScope *scope) { in classof() argument
473 return scope->getKind() == Filter; in classof()
485 static bool classof(const EHScope *scope) { in classof() argument
486 return scope->getKind() == Terminate; in classof()
562 EHCatchScope &scope = cast<EHCatchScope>(*begin()); in popCatch() local
563 InnermostEHScope = scope.getEnclosingEHScope(); in popCatch()
564 deallocate(EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers())); in popCatch()
570 EHTerminateScope &scope = cast<EHTerminateScope>(*begin()); in popTerminate() local
571 InnermostEHScope = scope.getEnclosingEHScope(); in popTerminate()
/freebsd-14.2/contrib/libucl/tests/schema/
H A DrefRemote.json.disabled54 "description": "change resolution scope",
64 "description": "changed scope ref valid",
69 "description": "changed scope ref invalid",
/freebsd-14.2/contrib/kyua/utils/signals/
H A Dprogrammer_test.cpp86 ATF_TEST_CASE_WITHOUT_HEAD(scope);
87 ATF_TEST_CASE_BODY(scope) in ATF_TEST_CASE_BODY() argument
138 ATF_ADD_TEST_CASE(tcs, scope); in ATF_INIT_TEST_CASES()
/freebsd-14.2/contrib/kyua/utils/
H A Dauto_array_test.cpp112 ATF_TEST_CASE(scope);
113 ATF_TEST_CASE_HEAD(scope) in ATF_TEST_CASE_HEAD() argument
118 ATF_TEST_CASE_BODY(scope) in ATF_TEST_CASE_BODY() argument
303 ATF_ADD_TEST_CASE(tcs, scope); in ATF_INIT_TEST_CASES()
/freebsd-14.2/usr.sbin/ypldap/
H A Daldap.h81 int scope; member
119 enum scope { enum
199 int aldap_search(struct aldap *, char *, enum scope, char *, char **, int, int, int, struct aldap_…

12345678910>>...14