Home
last modified time | relevance | path

Searched refs:swire (Results 1 – 25 of 75) sorted by relevance

123

/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/db/
H A DdbSWireItr.cpp68 _dbSWire* swire = _swire_tbl->getPtr(id); in reverse() local
69 uint n = swire->_next_swire; in reverse()
70 swire->_next_swire = list; in reverse()
108 _dbSWire* swire = _swire_tbl->getPtr(id); in next() local
109 return swire->_next_swire; in next()
H A DdbHierInstShapeItr.cpp356 dbSWire* swire = *itr; in iterate_swires() local
358 if (!iterate_swire(filter, swire, draw_vias, draw_segments)) in iterate_swires()
366 dbSWire* swire, in iterate_swire() argument
370 _callback->beginSWire(swire); in iterate_swire()
377 dbSet<dbSBox> boxes = swire->getWires(); in iterate_swire()
H A DdbUtil.cpp1169 dbSWire* swire = NULL; in createSpecialWire() local
1171 swire = _currentNet->getFirstSWire(); in createSpecialWire()
1173 swire = mainNet->getFirstSWire(); in createSpecialWire()
1175 return dbSBox::create(swire, in createSpecialWire()
1225 dbSWire* swire = NULL; in createSpecialNetSingleWire() local
1235 swire = dbSWire::create(net, dbWireType::NONE, NULL); in createSpecialNetSingleWire()
1237 swire = net->getFirstSWire(); in createSpecialNetSingleWire()
1239 dbSBox::create(swire, in createSpecialNetSingleWire()
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/test/python/
H A D11-gcd_pdn_def_access_test.py78 swire = swires[0] variable
80 assert swire.getBlock().getName() == "gcd", "Special wire block name mismatch"
81 assert swire.getNet().getName() == "VDD", "Special wire net mismatch"
82 assert swire.getWireType() == "ROUTED", "Special wire type mismatch "
83 assert swire.getShield() == None, "Special wire shield mismatch"
84 assert len(swire.getWires()) == 219, "Special wire number of wires mismatch"
86 wires = swire.getWires()
H A D12-edit_def_test.py19 swire = odb.dbSWire_create(net, "ROUTED") variable
20 if (swire.getNet().getName() != net.getName()):
30 print(swire)
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/python/uhd/imgbuilder/templates/modules/
H A Dconnect_io_ports.v.mako12 swire = src_wire["name"] if src_name == "_device_" else "%s_%s" % (src_name, src_wire["name"])
15 swire, dwire = dwire, swire
17 assign ${dwire} = ${swire};
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/test/
H A Dcreate_sboxes.tcl13 set swire [odb::dbSWire_create $n1 NONE ]
29 odb::createSBoxes $swire $m1 $rects NONE
30 odb::createSBoxes $swire $v1 $points NONE
31 set wires [$swire getWires]
H A Dgcd_pdn_def_access.tcl67 set swire [lindex $swires 0]
69 check "swire block" {[$swire getBlock] getName} gcd
70 check "swire net" {[$swire getNet] getName} VDD
71 check "swire wire type" {$swire getWireType} ROUTED
72 check "swire shield" {$swire getShield} NULL
74 check "swire num wires" {llength [set wires [$swire getWires]]} 219
H A Dedit_def.tcl16 set swire [odb::dbSWire_create $net "ROUTED"]
17 if {[$swire getNet] != "$net"} {
29 puts [[$swire getNet] getConstName]
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/test/tcl/
H A D11-gcd_pdn_def_access_test.tcl70 set swire [lindex $swires 0]
72 check "swire block" {[$swire getBlock] getName} gcd
73 check "swire net" {[$swire getNet] getName} VDD
74 check "swire wire type" {$swire getWireType} ROUTED
75 check "swire shield" {$swire getShield} NULL
77 check "swire num wires" {llength [set wires [$swire getWires]]} 219
H A D12-edit_def_test.tcl17 set swire [odb::dbSWire_create $net "ROUTED"]
18 if {[$swire getNet] != "$net"} {
28 puts [[$swire getNet] getConstName]
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/src/swig/common/
H A Ddbhelpers.i46 void createSBoxes(odb::dbSWire* swire,
51 void createSBoxes(odb::dbSWire* swire,
H A Dswig_common.cpp275 void createSBoxes(odb::dbSWire* swire, in createSBoxes() argument
282 swire, layer, rect.xMin(), rect.yMin(), rect.xMax(), rect.yMax(), type); in createSBoxes()
285 void createSBoxes(odb::dbSWire* swire, in createSBoxes() argument
292 swire, via, point.getX(), point.getY(), type); in createSBoxes()
H A Dswig_common.h86 void createSBoxes(odb::dbSWire* swire,
91 void createSBoxes(odb::dbSWire* swire,
/dports/cad/openroad/OpenROAD-2.0/src/rcx/src/
H A DextCC.cpp51 Ath__wire* swire = getTargetWire(); in trackContextOn() local
52 if (!swire) in trackContextOn()
54 while (swire && swire->_xy + swire->_len < base) in trackContextOn()
55 swire = nextTargetWire(0); // context of both power/noPower in trackContextOn()
56 if (!swire || swire->_xy >= (base + width) || in trackContextOn()
57 (!firstContextTrack && swire->_srcId)) in trackContextOn()
59 int p1 = swire->_base > orig ? swire->_base : orig; in trackContextOn()
60 int send = swire->_base + swire->_width; in trackContextOn()
H A Dextplanes.cpp240 odb::dbSWire* swire = *itr; in addPowerGs() local
241 odb::dbSet<odb::dbSBox> sboxes = swire->getWires(); in addPowerGs()
325 odb::dbSWire* swire = *itr; in getBboxPerLayer() local
326 odb::dbSet<odb::dbSBox> sboxes = swire->getWires(); in getBboxPerLayer()
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/test/unitTestsPython/
H A DTestDestroy.py125 swire = odb.dbSWire_create(self.n4, 'ROUTED')
127 self.assertEqual(swire.getNet().getName(), self.n4.getName())
128 swire.destroy(swire)
H A DTestBlock.py76 swire = odb.dbSWire_create(n_s, 'NONE')
77 odb.dbSBox_create(swire, self.lib.getTech().findLayer('L1'), 0, 4000, 100, 4100, 'NONE')
/dports/math/mathgl/mathgl-2.5/udav/
H A Dstyle_dlg.h54 QCheckBox *swire; variable
H A Dstyle_dlg.cpp120 swire = new QCheckBox(_("Wire or mesh plot"),p); v->addWidget(swire); in StyleDialog()
146 connect(swire,SIGNAL(toggled(bool)), this, SLOT(updatePic())); in StyleDialog()
468 if(swire->isChecked()) result += '#'; in updatePic()
/dports/cad/openroad/OpenROAD-2.0/src/OpenDB/test/cpp/
H A DCallBack.h286 void inDbSWirePreDestroySBoxes(dbSWire* swire) override in inDbSWirePreDestroySBoxes() argument
291 void inDbSWirePostDestroySBoxes(dbSWire* swire) override in inDbSWirePostDestroySBoxes() argument
/dports/cad/openroad/OpenROAD-2.0/src/dpl/src/
H A DdbToOpendp.cpp298 for (dbSWire *swire : net->getSWires()) { in findRowPower()
299 for (dbSBox *sbox : swire->getWires()) { in findRowPower()
/dports/cad/alliance/alliance/src/sea/etc/
H A Dse_defaults.mac21 SET VARIABLE draw.swire.at ON ;
/dports/cad/openroad/OpenROAD-2.0/src/gui/src/
H A Dsearch.cpp115 for (odb::dbSWire* swire : net->getSWires()) { in addSNet()
116 for (odb::dbSBox* box : swire->getWires()) { in addSNet()
H A DdbDescriptors.cpp217 for (auto swire : net->getSWires()) { in highlight() local
218 for (auto sbox : swire->getWires()) { in highlight()

123