/third_party/vk-gl-cts/modules/gles3/stress/ |
H A D | es3sLongShaderTests.cpp | 148 void makeNames (ShaderScope& scope, const deUint32 count) 151 scope.insert(next()); 311 ShaderScope scope; 316 m_nameGen.makeNames(scope, m_spec.variablesPerBlock); 318 m_scopes.push_back(scope); 320 for (ShaderScope::const_iterator nameIter = scope.begin(); nameIter != scope.end(); nameIter++) 332 ShaderScope& scope = *(m_scopes.end()-1); 336 m_varNames.erase((m_varNames.begin() + (m_varNames.size() - scope.size())), m_varNames.end());
|
/kernel/linux/linux-5.10/drivers/iommu/intel/ |
H A D | dmar.c | 83 struct acpi_dmar_device_scope *scope; in dmar_alloc_dev_scope() local 87 scope = start; in dmar_alloc_dev_scope() 88 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE || in dmar_alloc_dev_scope() 89 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || in dmar_alloc_dev_scope() 90 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_alloc_dev_scope() 92 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && in dmar_alloc_dev_scope() 93 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) { in dmar_alloc_dev_scope() 94 pr_warn("Unsupported device scope\n"); in dmar_alloc_dev_scope() 96 start += scope->length; in dmar_alloc_dev_scope() 225 struct acpi_dmar_device_scope *scope; in dmar_insert_dev_scope() local 727 struct acpi_dmar_device_scope *scope; dmar_acpi_insert_dev_scope() local [all...] |
/kernel/linux/linux-6.6/drivers/iommu/intel/ |
H A D | dmar.c | 83 struct acpi_dmar_device_scope *scope; in dmar_alloc_dev_scope() local 87 scope = start; in dmar_alloc_dev_scope() 88 if (scope->entry_type == ACPI_DMAR_SCOPE_TYPE_NAMESPACE || in dmar_alloc_dev_scope() 89 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_ENDPOINT || in dmar_alloc_dev_scope() 90 scope->entry_type == ACPI_DMAR_SCOPE_TYPE_BRIDGE) in dmar_alloc_dev_scope() 92 else if (scope->entry_type != ACPI_DMAR_SCOPE_TYPE_IOAPIC && in dmar_alloc_dev_scope() 93 scope->entry_type != ACPI_DMAR_SCOPE_TYPE_HPET) { in dmar_alloc_dev_scope() 94 pr_warn("Unsupported device scope\n"); in dmar_alloc_dev_scope() 96 start += scope->length; in dmar_alloc_dev_scope() 221 struct acpi_dmar_device_scope *scope; in dmar_insert_dev_scope() local 732 struct acpi_dmar_device_scope *scope; dmar_acpi_insert_dev_scope() local [all...] |
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | nsconvert.c | 275 * PARAMETERS: scope - Namespace node for the method/object 286 acpi_ns_convert_to_unicode(struct acpi_namespace_node *scope, in acpi_ns_convert_to_unicode() argument 341 * PARAMETERS: scope - Namespace node for the method/object 353 acpi_ns_convert_to_resource(struct acpi_namespace_node *scope, in acpi_ns_convert_to_resource() argument 420 * PARAMETERS: scope - Namespace node for the method/object 432 acpi_ns_convert_to_reference(struct acpi_namespace_node *scope, in acpi_ns_convert_to_reference() argument 454 scope_info.scope.node = in acpi_ns_convert_to_reference() 455 ACPI_CAST_PTR(struct acpi_namespace_node, scope); in acpi_ns_convert_to_reference()
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | addrconf_core.c | 20 #define IPV6_ADDR_SCOPE_TYPE(scope) ((scope) << 16) 22 static inline unsigned int ipv6_addr_scope2type(unsigned int scope) in ipv6_addr_scope2type() argument 24 switch (scope) { in ipv6_addr_scope2type() 35 return IPV6_ADDR_SCOPE_TYPE(scope); in ipv6_addr_scope2type()
|
/kernel/linux/linux-6.6/drivers/acpi/acpica/ |
H A D | nsconvert.c | 275 * PARAMETERS: scope - Namespace node for the method/object 286 acpi_ns_convert_to_unicode(struct acpi_namespace_node *scope, in acpi_ns_convert_to_unicode() argument 341 * PARAMETERS: scope - Namespace node for the method/object 353 acpi_ns_convert_to_resource(struct acpi_namespace_node *scope, in acpi_ns_convert_to_resource() argument 420 * PARAMETERS: scope - Namespace node for the method/object 432 acpi_ns_convert_to_reference(struct acpi_namespace_node *scope, in acpi_ns_convert_to_reference() argument 454 scope_info.scope.node = in acpi_ns_convert_to_reference() 455 ACPI_CAST_PTR(struct acpi_namespace_node, scope); in acpi_ns_convert_to_reference()
|
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | addrconf_core.c | 20 #define IPV6_ADDR_SCOPE_TYPE(scope) ((scope) << 16) 22 static inline unsigned int ipv6_addr_scope2type(unsigned int scope) in ipv6_addr_scope2type() argument 24 switch (scope) { in ipv6_addr_scope2type() 35 return IPV6_ADDR_SCOPE_TYPE(scope); in ipv6_addr_scope2type()
|
/third_party/node/deps/v8/src/ast/ |
H A D | variables.h | 23 Variable(Scope* scope, const AstRawString* name, VariableMode mode, in Variable() argument 27 : scope_(scope), in Variable() 52 // in an outer scope about which we don't know anything (it may not 53 // be the script scope). scope() is nullptr in that case. Currently the 54 // scope is only used to follow the context chain length. 55 Scope* scope() const { return scope_; } in scope() function in v8::internal::final 57 // This is for adjusting the scope of temporaries used when desugaring 59 void set_scope(Scope* scope) { scope_ = scope; } in set_scope() argument [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data.h | 53 scope allocation based on that data. 55 We need the following data for each scope in lazy_inner's scope tree: 182 void SaveScopeAllocationData(DeclarationScope* scope, Parser* parser); 208 static bool ScopeNeedsData(Scope* scope); 220 void SaveDataForScope(Scope* scope); 222 void SaveDataForInnerScopes(Scope* scope); 304 virtual void RestoreScopeAllocationData(DeclarationScope* scope,
|
/third_party/musl/porting/liteos_a/user/src/thread/ |
H A D | pthread_attr_setscope.c | 3 int pthread_attr_setscope(pthread_attr_t *a, int scope) in pthread_attr_setscope() argument 5 switch (scope) { in pthread_attr_setscope()
|
/third_party/musl/porting/liteos_m/user/src/thread/ |
H A D | pthread_attr_setscope.c | 4 _LIBC_TEXT_SECTION int pthread_attr_setscope(pthread_attr_t *a, int scope) in pthread_attr_setscope() argument 6 switch (scope) { in pthread_attr_setscope()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | debug_info_manager.cpp | 169 const DebugScope& scope) { in CreateDebugInlinedAt() 185 auto* lexical_scope_inst = GetDbgInst(scope.GetLexicalScope()); in CreateDebugInlinedAt() 203 "of a function, not into a struct/class or a global scope."); in CreateDebugInlinedAt() 208 "lexical scope must be DebugFunction, DebugTypeComposite, " in CreateDebugInlinedAt() 240 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetLexicalScope()}}, in CreateDebugInlinedAt() 242 // |scope| already has DebugInlinedAt. We put the existing DebugInlinedAt in CreateDebugInlinedAt() 244 if (scope.GetInlinedAt() != kNoInlinedAt) { in CreateDebugInlinedAt() 246 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetInlinedAt()}}); in CreateDebugInlinedAt() 294 // Set DebugInlinedAt of the new scope as the head of the chain. in BuildDebugInlinedAtChain() 492 // DebugCompilationUnit does not have a parent scope in GetParentScope() 168 CreateDebugInlinedAt(const Instruction* line, const DebugScope& scope) CreateDebugInlinedAt() argument 504 IsAncestorOfScope(uint32_t scope, uint32_t ancestor) IsAncestorOfScope() argument 513 IsDeclareVisibleToInstr(Instruction* dbg_declare, Instruction* scope) IsDeclareVisibleToInstr() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | debug_info_manager.cpp | 169 const DebugScope& scope) { in CreateDebugInlinedAt() 185 auto* lexical_scope_inst = GetDbgInst(scope.GetLexicalScope()); in CreateDebugInlinedAt() 203 "of a function, not into a struct/class or a global scope."); in CreateDebugInlinedAt() 208 "lexical scope must be DebugFunction, DebugTypeComposite, " in CreateDebugInlinedAt() 240 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetLexicalScope()}}, in CreateDebugInlinedAt() 242 // |scope| already has DebugInlinedAt. We put the existing DebugInlinedAt in CreateDebugInlinedAt() 244 if (scope.GetInlinedAt() != kNoInlinedAt) { in CreateDebugInlinedAt() 246 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetInlinedAt()}}); in CreateDebugInlinedAt() 294 // Set DebugInlinedAt of the new scope as the head of the chain. in BuildDebugInlinedAtChain() 492 // DebugCompilationUnit does not have a parent scope in GetParentScope() 168 CreateDebugInlinedAt(const Instruction* line, const DebugScope& scope) CreateDebugInlinedAt() argument 504 IsAncestorOfScope(uint32_t scope, uint32_t ancestor) IsAncestorOfScope() argument 513 IsDeclareVisibleToInstr(Instruction* dbg_declare, Instruction* scope) IsDeclareVisibleToInstr() argument [all...] |
/third_party/spirv-tools/source/opt/ |
H A D | debug_info_manager.cpp | 171 const DebugScope& scope) { in CreateDebugInlinedAt() 187 auto* lexical_scope_inst = GetDbgInst(scope.GetLexicalScope()); in CreateDebugInlinedAt() 205 "of a function, not into a struct/class or a global scope."); in CreateDebugInlinedAt() 210 "lexical scope must be DebugFunction, DebugTypeComposite, " in CreateDebugInlinedAt() 252 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetLexicalScope()}}, in CreateDebugInlinedAt() 254 // |scope| already has DebugInlinedAt. We put the existing DebugInlinedAt in CreateDebugInlinedAt() 256 if (scope.GetInlinedAt() != kNoInlinedAt) { in CreateDebugInlinedAt() 258 {spv_operand_type_t::SPV_OPERAND_TYPE_ID, {scope.GetInlinedAt()}}); in CreateDebugInlinedAt() 306 // Set DebugInlinedAt of the new scope as the head of the chain. in BuildDebugInlinedAtChain() 504 // DebugCompilationUnit does not have a parent scope in GetParentScope() 170 CreateDebugInlinedAt(const Instruction* line, const DebugScope& scope) CreateDebugInlinedAt() argument 516 IsAncestorOfScope(uint32_t scope, uint32_t ancestor) IsAncestorOfScope() argument 525 IsDeclareVisibleToInstr(Instruction* dbg_declare, Instruction* scope) IsDeclareVisibleToInstr() argument [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/hid/tests/ |
H A D | conftest.py | 19 @pytest.fixture(autouse=True, scope="session") 25 @pytest.fixture(autouse=True, scope="session") 30 @pytest.fixture(autouse=True, scope="session")
|
/third_party/gn/src/gn/ |
H A D | c_tool.h | 13 #include "gn/scope.h" 111 bool ReadOutputsPatternList(Scope* scope, 116 bool ReadPrecompiledHeaderType(Scope* scope, Err* err); 117 bool ReadDepsFormat(Scope* scope, Err* err);
|
/third_party/musl/src/thread/ |
H A D | pthread_attr_get.c | 33 int pthread_attr_getscope(const pthread_attr_t *restrict a, int *restrict scope) in pthread_attr_getscope() argument 36 *scope = PTHREAD_SCOPE_PROCESS; in pthread_attr_getscope() 38 *scope = PTHREAD_SCOPE_SYSTEM; in pthread_attr_getscope()
|
H A D | pthread_attr_setscope.c | 3 int pthread_attr_setscope(pthread_attr_t *a, int scope) in pthread_attr_setscope() argument 5 switch (scope) { in pthread_attr_setscope()
|
/third_party/node/benchmark/napi/string/ |
H A D | binding.c | 30 napi_handle_scope scope; \ 35 NAPI_CALL(napi_open_handle_scope(env, &scope)); \ 42 NAPI_CALL(napi_close_handle_scope(env, scope)); \
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-symbol.cc | 19 HandleScope scope(isolate); in BUILTIN() 38 HandleScope scope(isolate); in BUILTIN() 48 HandleScope scope(isolate); in BUILTIN()
|
H A D | builtins-error.cc | 20 HandleScope scope(isolate); in BUILTIN() 31 HandleScope scope(isolate); in BUILTIN() 69 HandleScope scope(isolate); in BUILTIN()
|
H A D | accessors.cc | 15 #include "src/logging/runtime-call-stats-scope.h" 116 HandleScope scope(isolate); in ReconfigureToDataProperty() 139 HandleScope scope(isolate); in ArgumentsIteratorGetter() 158 HandleScope scope(isolate); in ArrayLengthGetter() 169 HandleScope scope(isolate); in ArrayLengthSetter() 242 HandleScope scope(isolate); in ModuleNamespaceEntryGetter() 258 HandleScope scope(isolate); in ModuleNamespaceEntrySetter() 288 HandleScope scope(isolate); in StringLengthGetter() 334 HandleScope scope(isolate); in FunctionPrototypeGetter() 347 HandleScope scope(isolat in FunctionPrototypeSetter() [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-futex.cc | 24 HandleScope scope(isolate); in RUNTIME_FUNCTION() 45 HandleScope scope(isolate); in RUNTIME_FUNCTION() 62 HandleScope scope(isolate); in RUNTIME_FUNCTION()
|
H A D | runtime-module.cc | 28 HandleScope scope(isolate); in RUNTIME_FUNCTION() 47 HandleScope scope(isolate); in RUNTIME_FUNCTION() 55 HandleScope scope(isolate); in RUNTIME_FUNCTION()
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | cache.c | 43 unsigned char scope : 2; member 82 seq_printf(m, "scope=%s ", in show_cacheinfo() 96 if (ci->scope != CACHE_SCOPE_SHARED && ci->scope != CACHE_SCOPE_PRIVATE) in get_cache_type() 167 pvt = (ct.ci[level].scope == CACHE_SCOPE_PRIVATE) ? 1 : 0; in populate_cache_leaves()
|