| /freebsd/contrib/bmake/unit-tests/ |
| H A D | var-scope-local.mk | 169 var-scope-local.c: 184 all: var-scope-local.o 193 all: var-scope-local-assign.o 194 all: var-scope-local-append.o 195 all: var-scope-local-append-global.o 196 all: var-scope-local-default.o 197 all: var-scope-local-subst.o 198 all: var-scope-local-shell.o 200 var-scope-local-assign.o \ 201 var-scope-local-append.o \ [all …]
|
| /freebsd/contrib/byacc/test/ |
| H A D | 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/sys/netinet6/ |
| H A D | scope6.c | 402 int scope; in in6_setscope() local 414 scope = in6_addrscope(in6); in in6_setscope() 415 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL || in in6_setscope() 416 scope == IPV6_ADDR_SCOPE_LINKLOCAL) { in in6_setscope() 424 } else if (scope != IPV6_ADDR_SCOPE_GLOBAL) { in in6_setscope() 434 zoneid = sid->s6id_list[scope]; in in6_setscope() 528 in6_getscopezone(const struct ifnet *ifp, int scope) in in6_getscopezone() argument 531 if (scope == IPV6_ADDR_SCOPE_INTFACELOCAL || in in6_getscopezone() 532 scope == IPV6_ADDR_SCOPE_LINKLOCAL) in in6_getscopezone() 534 if (scope >= 0 && scope < IPV6_ADDR_SCOPES_COUNT) in in6_getscopezone() [all …]
|
| H A D | in6_cksum.c | 94 uint16_t scope, *w; in _in6_cksum_pseudo() local 118 scope = in6_getscope(&ip6->ip6_src); in _in6_cksum_pseudo() 122 if (scope != 0) in _in6_cksum_pseudo() 123 sum -= scope; in _in6_cksum_pseudo() 126 scope = in6_getscope(&ip6->ip6_dst); in _in6_cksum_pseudo() 130 if (scope != 0) in _in6_cksum_pseudo() 131 sum -= scope; in _in6_cksum_pseudo() 264 uint16_t *w, scope; in in6_cksum_partial_l2() local 296 scope = in6_getscope(&ip6->ip6_src); in in6_cksum_partial_l2() 300 if (scope != 0) in in6_cksum_partial_l2() [all …]
|
| /freebsd/contrib/bmake/ |
| H A D | var.c | 490 GNode_FindVar(GNode *scope, Substring varname, unsigned hash) in GNode_FindVar() argument 492 return HashTable_FindValueBySubstringHash(&scope->vars, varname, hash); in GNode_FindVar() 509 VarFindSubstring(Substring name, GNode *scope, bool elsewhere) in VarFindSubstring() argument 518 var = GNode_FindVar(scope, name, nameHash); in VarFindSubstring() 522 if (var == NULL && scope != SCOPE_CMDLINE) in VarFindSubstring() 525 if (!opts.checkEnvFirst && var == NULL && scope != SCOPE_GLOBAL) { in VarFindSubstring() 527 if (var == NULL && scope != SCOPE_INTERNAL) { in VarFindSubstring() 540 if (opts.checkEnvFirst && scope != SCOPE_GLOBAL) { in VarFindSubstring() 542 if (var == NULL && scope != SCOPE_INTERNAL) in VarFindSubstring() 555 VarFind(const char *name, GNode *scope, bool elsewhere) in VarFind() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 207 AttributeScopeInfo scope, ArgsUnion *args, unsigned numArgs, in ParsedAttr() argument 209 : AttributeCommonInfo(attrName, scope, attrRange, formUsed), in ParsedAttr() 221 AttributeScopeInfo scope, IdentifierLoc *Parm, in ParsedAttr() argument 227 : AttributeCommonInfo(attrName, scope, attrRange, formUsed), NumArgs(1), in ParsedAttr() 242 AttributeScopeInfo scope, IdentifierLoc *Parm1, in ParsedAttr() argument 244 : AttributeCommonInfo(attrName, scope, attrRange, formUsed), NumArgs(3), in ParsedAttr() 257 AttributeScopeInfo scope, IdentifierLoc *ArgKind, in ParsedAttr() argument 260 : AttributeCommonInfo(attrName, scope, attrRange, formUsed), NumArgs(1), in ParsedAttr() 275 AttributeScopeInfo scope, ParsedType typeArg, Form formUsed, in ParsedAttr() argument 277 : AttributeCommonInfo(attrName, scope, attrRange, formUsed), in ParsedAttr() [all …]
|
| /freebsd/contrib/unbound/edns-subnet/ |
| H A D | 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/sys/dev/aic7xxx/aicasm/ |
| H A D | 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);
|
| H A D | 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/contrib/llvm-project/libc/src/__support/CPP/ |
| H A D | atomic.h | 49 LIBC_INLINE constexpr int scope(MemoryScope mem_scope) { in scope() function 116 impl::order(mem_ord), impl::scope(mem_scope)); 135 impl::order(mem_ord), impl::scope(mem_scope)); 192 impl::scope(mem_scope)); 207 impl::scope(mem_scope)); 221 impl::scope(mem_scope)); 234 impl::scope(mem_scope)); 247 impl::scope(mem_scope)); 293 impl::scope(mem_scope)); 311 impl::scope(mem_scope)); [all …]
|
| /freebsd/sys/contrib/openzfs/module/zcommon/ |
| H A D | zfeature_common.c | 177 zfs_mod_list_supported(const char *scope) in zfs_mod_list_supported() argument 180 (void) scope; in zfs_mod_list_supported() 191 ZFS_SYSFS_DIR, scope) < sizeof (path)) in zfs_mod_list_supported() 195 ZFS_SYSFS_ALT_DIR, scope) < sizeof (path)) in zfs_mod_list_supported() 252 zfs_mod_supported_impl(const char *scope, const char *name, const char *sysfs) in zfs_mod_supported_impl() argument 256 scope == NULL ? "" : "/", scope ?: "", in zfs_mod_supported_impl() 264 zfs_mod_supported(const char *scope, const char *name, in zfs_mod_supported() argument 277 supported = (zfs_mod_supported_impl(scope, name, ZFS_SYSFS_DIR) || in zfs_mod_supported() 278 zfs_mod_supported_impl(scope, name, ZFS_SYSFS_ALT_DIR)); in zfs_mod_supported() 288 !zfs_mod_supported_impl(scope, NULL, ZFS_SYSFS_DIR)) || in zfs_mod_supported() [all …]
|
| /freebsd/contrib/byacc/test/btyacc/ |
| H A D | 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/contrib/ntp/libntp/ |
| H A D | 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()
|
| H A D | socktoa.c | 38 u_long scope; in socktoa() 57 scope = SCOPE_VAR(sock); in socktoa() 58 if (0 != scope && !strchr(res, '%')) { in socktoa() 62 addr, scope); in socktoa() 39 u_long scope; socktoa() local
|
| /freebsd/sys/compat/linuxkpi/common/include/net/ |
| H A D | 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()
|
| H A D | 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/contrib/smbfs/lib/smb/ |
| H A D | 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/contrib/llvm-project/lldb/source/Expression/ |
| H A D | Materializer.cpp | 458 ExecutionContextScope *scope = frame_sp.get(); in Materialize() local 460 if (!scope) in Materialize() 461 scope = map.GetBestExecutionContextScope(); in Materialize() 463 lldb::ValueObjectSP valobj_sp = SetupValueObject(scope); in Materialize() 537 llvm::expectedToOptional(GetByteSize(scope)).value_or(0)) { in Materialize() 548 llvm::expectedToOptional(GetByteSize(scope)).value_or(0), in Materialize() 554 std::optional<size_t> opt_bit_align = GetTypeBitAlign(scope); in Materialize() 622 ExecutionContextScope *scope = frame_sp.get(); in Dematerialize() local 624 if (!scope) in Dematerialize() 625 scope = map.GetBestExecutionContextScope(); in Dematerialize() [all …]
|
| /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | 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/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVInstrInfo.td | 207 (ins TYPE:$compType, ID:$scope, ID:$rows, ID:$cols), 208 "$res = OpTypeCooperativeMatrixNV $compType $scope $rows $cols">; 210 (ins TYPE:$compType, ID:$scope, ID:$rows, ID:$cols, ID:$use), 211 "$res = OpTypeCooperativeMatrixKHR $compType $scope $rows $cols $use">; 715 def OpGroupAsyncCopy: Op<259, (outs ID:$res), (ins TYPE:$ty, ID:$scope, 717 "$res = OpGroupAsyncCopy $ty $scope $dst $src $nelts $stride $event">; 718 def OpGroupWaitEvents: Op<260, (outs), (ins ID:$scope, ID:$nelts, ID:$elist), 719 "OpGroupWaitEvents $scope $nelts $elist">; 720 def OpGroupAll: Op<261, (outs ID:$res), (ins TYPE:$ty, ID:$scope, ID:$pr), 721 "$res = OpGroupAll $ty $scope $pr">; [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | 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/contrib/libucl/tests/schema/ |
| H A D | refRemote.json.disabled | 54 "description": "change resolution scope", 64 "description": "changed scope ref valid", 69 "description": "changed scope ref invalid",
|
| /freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ |
| H A D | kdb_ldap.h | 95 #define LDAP_SEARCH(base, scope, filter, attrs) LDAP_SEARCH_1(base, scope, filter, attrs, CHECK_S… argument 97 #define LDAP_SEARCH_1(base, scope, filter, attrs, status_check) \ argument 99 st = ldap_search_ext_s(ld, base, scope, filter, attrs, 0, NULL, \ 106 st = ldap_search_ext_s(ld, base, scope, filter, attrs, 0, \
|
| /freebsd/contrib/kyua/utils/signals/ |
| H A D | 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/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 544 static bool classof(const EHScope *scope) { 545 return scope->getKind() == Filter; 557 static bool classof(const EHScope *scope) { 558 return scope->getKind() == Terminate; 634 EHCatchScope &scope = cast<EHCatchScope>(*begin()); 635 InnermostEHScope = scope.getEnclosingEHScope(); 636 deallocate(EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers())); 642 EHTerminateScope &scope = cast<EHTerminateScope>(*begin()); 643 InnermostEHScope = scope.getEnclosingEHScope();
|