/third_party/node/deps/v8/src/heap/ |
H A D | gc-tracer.h | 33 #define TRACE_GC(tracer, scope_id) \ 35 tracer, GCTracer::Scope::ScopeId(scope_id), ThreadKind::kMain); \ 37 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id))) 39 #define TRACE_GC1(tracer, scope_id, thread_kind) \ 41 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \ 43 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id))) 45 #define TRACE_GC_EPOCH(tracer, scope_id, thread_kind) \ 47 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \ 49 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id)), \ 50 "epoch", tracer->CurrentEpoch(scope_id)) [all...] |
H A D | local-heap.cc | 268 GCTracer::Scope::ScopeId scope_id; in SleepInUnpark() local 272 scope_id = GCTracer::Scope::UNPARK; in SleepInUnpark() 275 scope_id = GCTracer::Scope::BACKGROUND_UNPARK; in SleepInUnpark() 279 TRACE_GC1(heap_->tracer(), scope_id, thread_kind); in SleepInUnpark() 311 GCTracer::Scope::ScopeId scope_id; in SleepInSafepoint() local 315 scope_id = GCTracer::Scope::SAFEPOINT; in SleepInSafepoint() 318 scope_id = GCTracer::Scope::BACKGROUND_SAFEPOINT; in SleepInSafepoint() 322 TRACE_GC1(heap_->tracer(), scope_id, thread_kind); in SleepInSafepoint()
|
H A D | array-buffer-sweeper.cc | 160 GCTracer::Scope::ScopeId scope_id = in RequestSweep() 164 TRACE_GC_EPOCH(heap_->tracer(), scope_id, ThreadKind::kBackground); in RequestSweep()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | compact_ids_pass.cpp | 70 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() 71 if (scope_id != kNoDebugScope) { in Process() 72 uint32_t new_id = GetRemappedId(&result_id_mapping, scope_id); in Process() 73 if (scope_id != new_id) { in Process()
|
H A D | upgrade_memory_model.h | 130 // Returns true if |scope_id| is SpvScopeDevice. 131 bool IsDeviceScope(uint32_t scope_id);
|
H A D | debug_info_manager.cpp | 540 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() 541 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr() 542 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | compact_ids_pass.cpp | 70 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() 71 if (scope_id != kNoDebugScope) { in Process() 72 uint32_t new_id = GetRemappedId(&result_id_mapping, scope_id); in Process() 73 if (scope_id != new_id) { in Process()
|
H A D | upgrade_memory_model.h | 130 // Returns true if |scope_id| is SpvScopeDevice. 131 bool IsDeviceScope(uint32_t scope_id);
|
H A D | debug_info_manager.cpp | 540 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() 541 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr() 542 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
|
/third_party/spirv-tools/source/opt/ |
H A D | compact_ids_pass.cpp | 75 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() 76 if (scope_id != kNoDebugScope) { in Process() 77 uint32_t new_id = GetRemappedId(&result_id_mapping, scope_id); in Process() 78 if (scope_id != new_id) { in Process()
|
H A D | upgrade_memory_model.h | 130 // Returns true if |scope_id| is spv::Scope::Device. 131 bool IsDeviceScope(uint32_t scope_id);
|
H A D | debug_info_manager.cpp | 552 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() 553 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr() 554 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
|
H A D | type_manager.cpp | 421 {SPV_OPERAND_TYPE_SCOPE_ID, {coop_mat->scope_id()}}, in GetTypeInstruction() 437 {SPV_OPERAND_TYPE_SCOPE_ID, {coop_mat->scope_id()}}, in GetTypeInstruction() 644 RebuildType(*component_type), cm_type->scope_id(), cm_type->rows_id(), in RebuildType() 652 RebuildType(*component_type), cm_type->scope_id(), cm_type->rows_id(), in RebuildType()
|
/third_party/rust/crates/rustix/src/net/ |
H A D | addr.rs | 113 scope_id: u32, 377 /// and the `flowinfo` and `scope_id` fields. 379 /// For more information on the meaning and layout of the `flowinfo` and `scope_id` 398 pub const fn new(ip: Ipv6Addr, port: u16, flowinfo: u32, scope_id: u32) -> SocketAddrV6 { 403 scope_id, 540 /// assert_eq!(socket.scope_id(), 78); 548 pub const fn scope_id(&self) -> u32 { 549 self.scope_id 554 /// See [`SocketAddrV6::scope_id`]'s documentation for more details. 563 /// assert_eq!(socket.scope_id(), 4 [all...] |
/third_party/rust/crates/rustix/src/backend/libc/net/ |
H A D | write_sockaddr.rs | 69 v6.scope_id(), 87 v6.scope_id(),
|
/third_party/rust/crates/rustix/src/backend/linux_raw/net/ |
H A D | write_sockaddr.rs | 47 sin6_scope_id: v6.scope_id(),
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_liverangeevaluator_helpers.cpp | 42 scope_id(id), in ProgramScope() 218 return scope_id; in id()
|
H A D | sfn_liverangeevaluator_helpers.h | 81 int scope_id; member in r600::ProgramScope
|
/third_party/python/Lib/ |
H A D | ipaddress.py | 1864 (addr, scope_id) tuple. 1867 addr, sep, scope_id = ip_str.partition('%') 1869 scope_id = None 1870 elif not scope_id or '%' in scope_id: 1872 return addr, scope_id 1945 def scope_id(self): member in IPv6Address
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_type.cpp | 574 const auto scope_id = inst->GetOperandAs<uint32_t>(scope_index); in ValidateTypeCooperativeMatrixNV() local 575 const auto scope = _.FindDef(scope_id); in ValidateTypeCooperativeMatrixNV() 579 << "OpTypeCooperativeMatrixNV Scope <id> '" << _.getIdName(scope_id) in ValidateTypeCooperativeMatrixNV()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_type.cpp | 574 const auto scope_id = inst->GetOperandAs<uint32_t>(scope_index); in ValidateTypeCooperativeMatrixNV() local 575 const auto scope = _.FindDef(scope_id); in ValidateTypeCooperativeMatrixNV() 579 << "OpTypeCooperativeMatrixNV Scope <id> '" << _.getIdName(scope_id) in ValidateTypeCooperativeMatrixNV()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_type.cpp | 570 const auto scope_id = inst->GetOperandAs<uint32_t>(scope_index); in ValidateTypeCooperativeMatrix() local 571 const auto scope = _.FindDef(scope_id); in ValidateTypeCooperativeMatrix() 575 << "OpTypeCooperativeMatrix Scope <id> " << _.getIdName(scope_id) in ValidateTypeCooperativeMatrix()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | wpa_ctrl.c | 442 int scope_id = 0; in wpa_ctrl_open() local 466 scope_id = if_nametoindex(&scope[1]); in wpa_ctrl_open() 483 ctrl->dest.sin6_scope_id = scope_id; in wpa_ctrl_open()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | wpa_ctrl.c | 406 int scope_id = 0; in wpa_ctrl_open() local 430 scope_id = if_nametoindex(&scope[1]); in wpa_ctrl_open() 447 ctrl->dest.sin6_scope_id = scope_id; in wpa_ctrl_open()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | stats-collector.h | 162 InternalScope(StatsCollector* stats_collector, ScopeIdType scope_id, in InternalScope() argument 166 scope_id_(scope_id) { in InternalScope()
|