Home
last modified time | relevance | path

Searched refs:scope_id (Results 1 – 25 of 54) sorted by relevance

123

/third_party/node/deps/v8/src/heap/
Dgc-tracer.h33 #define TRACE_GC(tracer, scope_id) \ argument
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) \ argument
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) \ argument
47 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \
49 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id)), \
50 "epoch", tracer->CurrentEpoch(scope_id))
Dlocal-heap.cc268 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()
Darray-buffer-sweeper.cc160 GCTracer::Scope::ScopeId scope_id = in RequestSweep() local
164 TRACE_GC_EPOCH(heap_->tracer(), scope_id, ThreadKind::kBackground); in RequestSweep()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcompact_ids_pass.cpp70 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() local
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()
Dupgrade_memory_model.h131 bool IsDeviceScope(uint32_t scope_id);
Ddebug_info_manager.cpp540 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() local
541 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr()
542 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dcompact_ids_pass.cpp70 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() local
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()
Dupgrade_memory_model.h131 bool IsDeviceScope(uint32_t scope_id);
Ddebug_info_manager.cpp540 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() local
541 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr()
542 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
/third_party/spirv-tools/source/opt/
Dcompact_ids_pass.cpp75 uint32_t scope_id = inst->GetDebugScope().GetLexicalScope(); in Process() local
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()
Dupgrade_memory_model.h131 bool IsDeviceScope(uint32_t scope_id);
Ddebug_info_manager.cpp551 for (uint32_t scope_id : scope_ids) { in IsDeclareVisibleToInstr() local
552 if (scope_id != kNoDebugScope && in IsDeclareVisibleToInstr()
553 IsAncestorOfScope(scope_id, decl_scope_id)) { in IsDeclareVisibleToInstr()
/third_party/rust/crates/rustix/src/net/
Daddr.rs113 scope_id: u32, field
398 pub const fn new(ip: Ipv6Addr, port: u16, flowinfo: u32, scope_id: u32) -> SocketAddrV6 { in new()
403 scope_id, in new()
548 pub const fn scope_id(&self) -> u32 { in scope_id() method
549 self.scope_id in scope_id()
567 self.scope_id = new_scope_id; in set_scope_id()
641 (self.port, &self.ip, self.flowinfo, self.scope_id).hash(s) in hash()
/third_party/rust/crates/rustix/src/backend/libc/net/
Dwrite_sockaddr.rs69 v6.scope_id(), in encode_sockaddr_v6()
87 v6.scope_id(), in encode_sockaddr_v6()
/third_party/rust/crates/rustix/src/backend/linux_raw/net/
Dwrite_sockaddr.rs47 sin6_scope_id: v6.scope_id(), in encode_sockaddr_v6()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_liverangeevaluator_helpers.h81 int scope_id; variable
Dsfn_liverangeevaluator_helpers.cpp42 scope_id(id), in ProgramScope()
218 return scope_id; in id()
/third_party/python/Lib/
Dipaddress.py1859 addr, sep, scope_id = ip_str.partition('%')
1861 scope_id = None
1862 elif not scope_id or '%' in scope_id:
1864 return addr, scope_id
1937 def scope_id(self): member in IPv6Address
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dwpa_ctrl.c406 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/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dwpa_ctrl.c416 int scope_id = 0; in wpa_ctrl_open() local
440 scope_id = if_nametoindex(&scope[1]); in wpa_ctrl_open()
457 ctrl->dest.sin6_scope_id = scope_id; in wpa_ctrl_open()
/third_party/spirv-tools/source/val/
Dvalidate_type.cpp559 const auto scope_id = inst->GetOperandAs<uint32_t>(scope_index); in ValidateTypeCooperativeMatrixNV() local
560 const auto scope = _.FindDef(scope_id); in ValidateTypeCooperativeMatrixNV()
564 << "OpTypeCooperativeMatrixNV Scope <id> " << _.getIdName(scope_id) in ValidateTypeCooperativeMatrixNV()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_type.cpp574 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/spirv-tools/source/val/
Dvalidate_type.cpp574 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/curl/lib/
Dcf-socket.c285 if(data->conn->scope_id && (addr->family == AF_INET6)) { in socket_open()
287 sa6->sin6_scope_id = data->conn->scope_id; in socket_open()
473 scope, conn->scope_id, in bindlocal()
561 unsigned long scope_id = strtoul(scope_ptr, NULL, 10); in bindlocal() local
562 if(scope_id > UINT_MAX) in bindlocal()
565 si6->sin6_scope_id = (unsigned int)scope_id; in bindlocal()
/third_party/node/deps/v8/src/heap/cppgc/
Dstats-collector.h162 InternalScope(StatsCollector* stats_collector, ScopeIdType scope_id, in InternalScope() argument
166 scope_id_(scope_id) { in InternalScope()

123