Lines Matching defs:normalized_size_

68     void CellMacros::updateNor2(StdCell* cell_, const String& name_, double normalized_size_)
70 ASSERT(normalized_size_ >= 0.0, "[Error] " + cell_->getInstanceName() +
87 unsigned int folds = (normalized_size_ < 1.0) ? 1 : (unsigned int)ceil(normalized_size_);
91 double nmos_width = std::max(calculateNmosWidth(cell_, 1, 2, 1) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
92 double pmos_width = std::max(calculatePmosWidth(cell_, 1, 2, 2) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
168 void CellMacros::updateNand2(StdCell* cell_, const String& name_, double normalized_size_)
170 ASSERT(normalized_size_ >= 0.0, "[Error] " + cell_->getInstanceName() +
187 unsigned int folds = (normalized_size_ < 1.0) ? 1 : (unsigned int)ceil(normalized_size_);
191 double nmos_width = std::max(calculateNmosWidth(cell_, 2, 1, 2) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
192 double pmos_width = std::max(calculatePmosWidth(cell_, 2, 1, 1) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
266 void CellMacros::updateInverter(StdCell* cell_, const String& name_, double normalized_size_)
268 ASSERT(normalized_size_ >= 0.0, "[Error] " + cell_->getInstanceName() +
284 unsigned int folds = (normalized_size_ < 1.0) ? 1 : (unsigned int)ceil(normalized_size_);
288 double nmos_width = std::max(calculateNmosWidth(cell_, 1, 1, 1) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
289 double pmos_width = std::max(calculatePmosWidth(cell_, 1, 1, 1) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
365 void CellMacros::updateTristate(StdCell* cell_, const String& name_, double normalized_size_)
367 ASSERT(normalized_size_ >= 0.0, "[Error] " + cell_->getInstanceName() +
385 unsigned int folds = (normalized_size_ < 1.0) ? 1 : (unsigned int)ceil(normalized_size_);
389 double nmos_width = std::max(calculateNmosWidth(cell_, 2, 2, 2) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));
390 double pmos_width = std::max(calculatePmosWidth(cell_, 2, 2, 2) * normalized_size_ / folds, (double) tech->get("Gate->MinWidth"));