Home
last modified time | relevance | path

Searched refs:pinType (Results 1 – 21 of 21) sorted by relevance

/dports/cad/ktechlab/ktechlab-0.50.0/src/micro/
H A Dmicropackage.cpp58 PicPinMap MicroPackage::pins( uint pinType, const QString& portName ) in pins() argument
60 if ( pinType == 0 ) pinType = (1<<30)-1; in pins()
67 if ( (it.value().type & pinType) && in pins()
77 QStringList MicroPackage::pinIDs( uint pinType, const QString& portName ) in pinIDs() argument
79 if ( pinType == 0 ) pinType = (1<<30)-1; in pinIDs()
85 if ( (it.value().type & pinType) && in pinIDs()
95 int MicroPackage::pinCount( uint pinType, const QString& portName ) in pinCount() argument
97 if ( pinType == 0 ) pinType = (1<<30)-1; in pinCount()
103 if ( (it.value().type & pinType) && in pinCount()
H A Dmicropackage.h74 PicPinMap pins( uint pinType = 0, const QString& portName = "" );
79 QStringList pinIDs( uint pinType = 0, const QString& portName = "" );
86 int pinCount( uint pinType = 0, const QString& portName = "" );
/dports/security/nitrokey-app/nitrokey-app-1.4.2/src/GUI/
H A DAuthentication.cpp38 const auto pinType = type==ADMIN? PinType::ADMIN_PIN : PinType::USER_PIN; in getPassword() local
39 PinDialog dialog(pinType); in getPassword()
60 const auto pinType = type==ADMIN? PinType::ADMIN_PIN : PinType::USER_PIN; in authenticate() local
61 PinDialog dialog(pinType); in authenticate()
72 switch (pinType){ in authenticate()
/dports/cad/openroad/OpenROAD-2.0/src/mpl/src/ParquetFP/src/
H A DAnalytSolve.cxx65 bool pinType = 0; in getDesignOptLoc() local
82 pinType = netPin->getType(); in getDesignOptLoc()
85 if (!pinType) // if not terminal in getDesignOptLoc()
144 bool pinType = 0; in getOptLoc() local
166 pinType = netPin->getType(); in getOptLoc()
169 if (!pinType && currNodeIndex == index) { in getOptLoc()
174 if (!pinType) // if not terminal in getOptLoc()
/dports/security/nitrokey-app/nitrokey-app-1.4.2/src/ui/
H A Dpindialog.cpp34 PinDialog::PinDialog(PinType pinType, QWidget *parent): in PinDialog() argument
36 _pinType(pinType), worker(pinType) in PinDialog()
47 switch (pinType){ in PinDialog()
H A Dpindialog.h73 explicit PinDialog(PinType pinType, QWidget *parent = nullptr);
/dports/cad/graywolf/graywolf-0.1.6-4-gf47937b/src/twmc/
H A Dinitialize.c984 void addPin( pinName, signal, layer, pinType ) in addPin() argument
988 INT pinType ;
999 if( pinType == SOFTEQUIVTYPE ){
1011 pinS->type = pinType ;
1056 if( pinType == SOFTPINTYPE ){
1059 } else if( pinType == SOFTEQUIVTYPE ){
1133 void addEquivPin( pinName, layer, xpos, ypos, pinType ) in addEquivPin() argument
1137 INT pinType ;
1146 if( pinType != ADDEQUIVTYPE ){
1204 if( pinType == ADDEQUIVTYPE ){
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/netlist_reader/
H A Dboard_netlist_updater.cpp422 wxString pinType; in updateComponentPadConnections() local
427 pinType = net.GetPinType(); in updateComponentPadConnections()
438 if( pad->GetPinType() != pinType ) in updateComponentPadConnections()
441 pad->SetPinType( pinType ); in updateComponentPadConnections()
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/opencontainers/runc/vendor/github.com/cilium/ebpf/
H A Delf_reader.go486 pinType PinType
534 pinType = PinType(pinning)
550 Pinning: pinType,
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/netlist_exporters/
H A Dnetlist_exporter_xml.cpp748 wxString pinType = netNode.m_Pin->GetCanonicalElectricalTypeName(); in makeListOfNets() local
754 pinType += "+no_connect"; in makeListOfNets()
756 xnode->AddAttribute( "pintype", pinType ); in makeListOfNets()
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/containerd/containerd/vendor/github.com/cilium/ebpf/
H A Delf_reader.go486 pinType PinType
534 pinType = PinType(pinning)
550 Pinning: pinType,
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/cilium/ebpf/
H A Delf_reader.go486 pinType PinType
534 pinType = PinType(pinning)
550 Pinning: pinType,
/dports/sysutils/nomad/nomad-1.1.0/vendor/github.com/cilium/ebpf/
H A Delf_reader.go486 pinType PinType
534 pinType = PinType(pinning)
550 Pinning: pinType,
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/containerd/containerd/vendor/github.com/cilium/ebpf/
H A Delf_reader.go586 pinType PinType
683 pinType = PinType(pinning)
745 Pinning: pinType,
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/eeschema/sch_plugins/legacy/
H A Dsch_legacy_plugin.cpp3610 ELECTRICAL_PINTYPE pinType; in loadPin() local
3614 case 'I': pinType = ELECTRICAL_PINTYPE::PT_INPUT; break; in loadPin()
3615 case 'O': pinType = ELECTRICAL_PINTYPE::PT_OUTPUT; break; in loadPin()
3616 case 'B': pinType = ELECTRICAL_PINTYPE::PT_BIDI; break; in loadPin()
3617 case 'T': pinType = ELECTRICAL_PINTYPE::PT_TRISTATE; break; in loadPin()
3618 case 'P': pinType = ELECTRICAL_PINTYPE::PT_PASSIVE; break; in loadPin()
3619 case 'U': pinType = ELECTRICAL_PINTYPE::PT_UNSPECIFIED; break; in loadPin()
3620 case 'W': pinType = ELECTRICAL_PINTYPE::PT_POWER_IN; break; in loadPin()
3621 case 'w': pinType = ELECTRICAL_PINTYPE::PT_POWER_OUT; break; in loadPin()
3622 case 'C': pinType = ELECTRICAL_PINTYPE::PT_OPENCOLLECTOR; break; in loadPin()
[all …]
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/windows-sys-0.28.0/src/Windows/Win32/NetworkManagement/MobileBroadband/
H A Dmod.rs213 pub pinType: MBN_PIN_TYPE, field
399 pub pinType: u32, field
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/containerd/containerd/vendor/github.com/cilium/ebpf/
H A Delf_reader.go599 pinType PinType
696 pinType = PinType(pinning)
758 Pinning: pinType,
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/github.com/cilium/ebpf/
H A Delf_reader.go599 pinType PinType
696 pinType = PinType(pinning)
758 Pinning: pinType,
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/
H A Dpcb_painter.cpp978 wxString pinType = aPad->GetPinType(); in draw() local
986 if( pinType == wxT( "no_connect" ) || pinType.EndsWith( wxT( "+no_connect" ) ) ) in draw()
988 else if( pinType == wxT( "free" ) ) in draw()
/dports/lang/spidermonkey78/firefox-78.9.0/security/manager/ssl/
H A DRemoteSecuritySettings.jsm287 const { pinType, versions } = item;
288 if (versions.includes(Services.appinfo.version) && pinType == "STSPin") {
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/windows-0.24.0/src/Windows/Win32/NetworkManagement/MobileBroadband/
H A Dmod.rs2924 pub pinType: MBN_PIN_TYPE, field
2935 …"MBN_PIN_INFO").field("pinState", &self.pinState).field("pinType", &self.pinType).field("attemptsR… in fmt()
2940 …self.pinState == other.pinState && self.pinType == other.pinType && self.attemptsRemaining == othe… in eq()
3418 pub pinType: u32, field
3428 fmt.debug_struct("__DummyPinType__").field("pinType", &self.pinType).finish() in fmt()
3433 self.pinType == other.pinType in eq()