| /freebsd-13-stable/contrib/bmake/unit-tests/ |
| HD | var-scope-local.mk | 102 var-scope-local.c: 117 all: var-scope-local.o 126 all: var-scope-local-assign.o 127 all: var-scope-local-append.o 128 all: var-scope-local-append-global.o 129 all: var-scope-local-default.o 130 all: var-scope-local-subst.o 131 all: var-scope-local-shell.o 133 var-scope-local-assign.o \ 134 var-scope-local-append.o \ [all …]
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/ |
| HD | TransAutoreleasePool.cpp | 97 PoolScope &scope = *scpI; in ~AutoreleasePoolRewriter() local 98 clearRefsIn(*scope.Begin, info.Refs); in ~AutoreleasePoolRewriter() 99 clearRefsIn(*scope.End, info.Refs); in ~AutoreleasePoolRewriter() 100 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs); in ~AutoreleasePoolRewriter() 121 PoolScope &scope = *scpI; in ~AutoreleasePoolRewriter() local 122 clearUnavailableDiags(*scope.Begin); in ~AutoreleasePoolRewriter() 123 clearUnavailableDiags(*scope.End); in ~AutoreleasePoolRewriter() 124 if (scope.IsFollowedBySimpleReturnStmt) { in ~AutoreleasePoolRewriter() 126 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {"); in ~AutoreleasePoolRewriter() 127 Pass.TA.removeStmt(*scope.End); in ~AutoreleasePoolRewriter() [all …]
|
| /freebsd-13-stable/contrib/byacc/test/ |
| HD | btyacc_demo.y | 26 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>) 60 block_statement(<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>) [all …]
|
| /freebsd-13-stable/sys/netinet6/ |
| HD | scope6.c | 393 int scope; in in6_setscope() local 405 scope = in6_addrscope(in6); in in6_setscope() 406 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL || in in6_setscope() 407 scope == IPV6_ADDR_SCOPE_LINKLOCAL) { in in6_setscope() 415 } else if (scope != IPV6_ADDR_SCOPE_GLOBAL) { in in6_setscope() 424 zoneid = sid->s6id_list[scope]; in in6_setscope() 503 in6_getscopezone(const struct ifnet *ifp, int scope) in in6_getscopezone() argument 506 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL || in in6_getscopezone() 507 scope == IPV6_ADDR_SCOPE_LINKLOCAL) in in6_getscopezone() 509 if (scope >= 0 && scope < IPV6_ADDR_SCOPES_COUNT) in in6_getscopezone() [all …]
|
| HD | in6_cksum.c | 97 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() 129 scope = in6_getscope(&ip6->ip6_dst); 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 297 scope = in6_getscope(&ip6->ip6_src); in in6_cksum_partial() 301 if (scope != 0) in in6_cksum_partial() [all …]
|
| /freebsd-13-stable/contrib/bmake/ |
| HD | var.c | 396 GNode_FindVar(GNode *scope, Substring varname, unsigned int hash) in GNode_FindVar() argument 398 return HashTable_FindValueBySubstringHash(&scope->vars, varname, hash); in GNode_FindVar() 415 VarFindSubstring(Substring name, GNode *scope, bool elsewhere) in VarFindSubstring() argument 424 var = GNode_FindVar(scope, name, nameHash); in VarFindSubstring() 428 if (var == NULL && scope != SCOPE_CMDLINE) in VarFindSubstring() 431 if (!opts.checkEnvFirst && var == NULL && scope != SCOPE_GLOBAL) { in VarFindSubstring() 433 if (var == NULL && scope != SCOPE_INTERNAL) { in VarFindSubstring() 454 if (opts.checkEnvFirst && scope != SCOPE_GLOBAL) { in VarFindSubstring() 456 if (var == NULL && scope != SCOPE_INTERNAL) in VarFindSubstring() 470 VarFind(const char *name, GNode *scope, bool elsewhere) in VarFind() argument [all …]
|
| /freebsd-13-stable/contrib/unbound/edns-subnet/ |
| HD | addrtree.c | 90 node_create(struct addrtree *tree, void *elem, addrlen_t scope, in node_create() argument 98 node->scope = scope; in node_create() 362 addrlen_t sourcemask, addrlen_t scope, void *elem, time_t ttl, in addrtree_insert() argument 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() [all …]
|
| /freebsd-13-stable/sys/dev/aic7xxx/aicasm/ |
| HD | aicasm_symbol.h | 166 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);
|
| HD | aicasm.c | 80 static void dump_scope(scope_t *scope); 81 static void emit_patch(scope_t *scope, int patch); 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() [all …]
|
| /freebsd-13-stable/contrib/byacc/test/btyacc/ |
| HD | btyacc_demo.tab.c | 140 Scope *scope; member 156 Scope *scope; member 645 extern Decl * lookup(Scope *scope, char *id); 647 extern Scope * start_fn_def(Scope *scope, Decl *fn_decl); 655 extern Decl * declare(Scope *scope, char *id, Type *type); 662 extern Expr * var_expr(Scope *scope, char *id); 952 free((*val).decl->scope); free((*val).decl->type); } in YYDESTRUCT_DECL() 1069 free((*val).scope); } in YYDESTRUCT_DECL() 1096 free((*val).scope); } in YYDESTRUCT_DECL() 1105 free((*val).scope); } in YYDESTRUCT_DECL() [all …]
|
| /freebsd-13-stable/sys/contrib/openzfs/module/zcommon/ |
| HD | zfeature_common.c | 169 zfs_mod_supported_impl(const char *scope, const char *name, const char *sysfs) in zfs_mod_supported_impl() argument 175 scope == NULL ? "" : "/", scope == NULL ? "" : scope, in zfs_mod_supported_impl() 187 zfs_mod_supported(const char *scope, const char *name) in zfs_mod_supported() argument 195 supported = (zfs_mod_supported_impl(scope, name, ZFS_SYSFS_DIR) || in zfs_mod_supported() 196 zfs_mod_supported_impl(scope, name, ZFS_SYSFS_ALT_DIR)); in zfs_mod_supported() 207 !zfs_mod_supported_impl(scope, NULL, ZFS_SYSFS_DIR) && in zfs_mod_supported() 208 !zfs_mod_supported_impl(scope, NULL, ZFS_SYSFS_ALT_DIR)) { in zfs_mod_supported()
|
| /freebsd-13-stable/sys/amd64/vmm/ |
| HD | vmm_stat.h | 54 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-13-stable/contrib/ntp/libntp/ |
| HD | decodenetnum.c | 93 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()
|
| HD | socktoa.c | 38 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-13-stable/contrib/llvm-project/lldb/source/Expression/ |
| HD | Materializer.cpp | 452 ExecutionContextScope *scope = frame_sp.get(); in Materialize() local 454 if (!scope) in Materialize() 455 scope = map.GetBestExecutionContextScope(); in Materialize() 457 lldb::ValueObjectSP valobj_sp = SetupValueObject(scope); in Materialize() 532 if (data.GetByteSize() < GetByteSize(scope)) { in Materialize() 541 GetName().AsCString(), GetByteSize(scope).value_or(0), in Materialize() 547 std::optional<size_t> opt_bit_align = GetTypeBitAlign(scope); in Materialize() 616 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize() local 618 if (!scope) in Dematerialize() 619 scope = map.GetBestExecutionContextScope(); in Dematerialize() [all …]
|
| /freebsd-13-stable/sys/compat/linuxkpi/common/include/net/ |
| HD | ip.h | 75 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()
|
| HD | ipv6.h | 54 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-13-stable/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| HD | SPIRVInstrInfo.td | 212 (ins TYPE:$compType, ID:$scope, ID:$rows, ID:$cols), 213 "$res = OpTypeCooperativeMatrixNV $compType $scope $rows $cols">; 215 (ins TYPE:$compType, ID:$scope, ID:$rows, ID:$cols, ID:$use), 216 "$res = OpTypeCooperativeMatrixKHR $compType $scope $rows $cols $use">; 710 def OpGroupAsyncCopy: Op<259, (outs ID:$res), (ins TYPE:$ty, ID:$scope, 712 "$res = OpGroupAsyncCopy $ty $scope $dst $src $nelts $stride $event">; 713 def OpGroupWaitEvents: Op<260, (outs), (ins ID:$scope, ID:$nelts, ID:$elist), 714 "OpGroupWaitEvents $scope $nelts $elist">; 715 def OpGroupAll: Op<261, (outs ID:$res), (ins TYPE:$ty, ID:$scope, ID:$pr), 716 "$res = OpGroupAll $ty $scope $pr">; [all …]
|
| /freebsd-13-stable/contrib/smbfs/lib/smb/ |
| HD | nb.c | 90 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-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| HD | dt_dis.c | 103 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-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| HD | LVRange.cpp | 30 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-13-stable/contrib/kyua/utils/signals/ |
| HD | programmer_test.cpp | 86 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-13-stable/sys/compat/cloudabi/ |
| HD | cloudabi_thread.c | 42 .scope = uap->scope, in cloudabi_sys_thread_exit()
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CGCleanup.h | 536 static bool classof(const EHScope *scope) { 537 return scope->getKind() == Filter; 549 static bool classof(const EHScope *scope) { 550 return scope->getKind() == Terminate; 626 EHCatchScope &scope = cast<EHCatchScope>(*begin()); 627 InnermostEHScope = scope.getEnclosingEHScope(); 628 deallocate(EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers())); 634 EHTerminateScope &scope = cast<EHTerminateScope>(*begin()); 635 InnermostEHScope = scope.getEnclosingEHScope();
|
| /freebsd-13-stable/contrib/kyua/utils/ |
| HD | auto_array_test.cpp | 112 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()
|