Lines Matching defs:cache
95 Map<double>* cache = getTechModel()->getStdCellLib()->getStdCellCache();
97 // Standard cell cache string
101 getLoad("A_Cap")->setLoadCap(cache->get(cell_name + "->Cap->A"));
102 getDriver("Y_Ron")->setOutputRes(cache->get(cell_name + "->DriveRes->Y"));
103 getDelay("A_to_Y_delay")->setDelay(cache->get(cell_name + "->Delay->A_to_Y"));
106 getAreaResult("Active")->setValue(cache->get(cell_name + "->Area->Active"));
107 getAreaResult("Metal1Wire")->setValue(cache->get(cell_name + "->Area->Metal1Wire"));
121 Map<double>* cache = getTechModel()->getStdCellLib()->getStdCellCache();
123 // Standard cell cache string
133 leakage += cache->get(cell_name + "->Leakage->!A") * (1 - P_A);
134 leakage += cache->get(cell_name + "->Leakage->A") * P_A;
141 //double a_cap = cache->get(cell_name + "->Cap->A");
142 double y_cap = cache->get(cell_name + "->Cap->Y");
169 // Standard cell cache string
176 Map<double>* cache = cell_lib_->getStdCellCache();
189 cache->set(cell_name + "->Area->Active", area);
190 cache->set(cell_name + "->Area->Metal1Wire", area);
199 cache->set(cell_name + "->Leakage->!A", leakage_a0);
200 cache->set(cell_name + "->Leakage->A", leakage_a1);
208 cache->set(cell_name + "->Event_A_Flip", event_a_flip);
218 cache->set(cell_name + "->Cap->A", a_cap);
219 cache->set(cell_name + "->Cap->Y", y_cap);
229 cache->set(cell_name + "->DriveRes->Y", y_ron);
230 cache->set(cell_name + "->Delay->A_to_Y", a_to_y_delay);