Lines Matching refs:get

105         getLoad("A_Cap")->setLoadCap(cache->get(cell_name + "->Cap->A"));
106 getLoad("B_Cap")->setLoadCap(cache->get(cell_name + "->Cap->B"));
108 getDelay("A_to_Y_delay")->setDelay(cache->get(cell_name + "->Delay->A_to_Y"));
109 getDelay("B_to_Y_delay")->setDelay(cache->get(cell_name + "->Delay->B_to_Y"));
111 getDriver("Y_Ron")->setOutputRes(cache->get(cell_name + "->DriveRes->Y"));
114 getAreaResult("Active")->setValue(cache->get(cell_name + "->ActiveArea"));
115 getAreaResult("Metal1Wire")->setValue(cache->get(cell_name + "->ActiveArea"));
134 // Propagate the transition info and get the 0->1 transtion count
144 leakage += cache->get(cell_name + "->Leakage->!A!B") * (1 - P_A) * (1 - P_B);
145 leakage += cache->get(cell_name + "->Leakage->!AB") * (1 - P_A) * P_B;
146 leakage += cache->get(cell_name + "->Leakage->A!B") * P_A * (1 - P_B);
147 leakage += cache->get(cell_name + "->Leakage->AB") * P_A * P_B;
151 double vdd = getTechModel()->get("Vdd");
154 double a_b_cap = cache->get(cell_name + "->Cap->A_b");
155 double b_b_cap = cache->get(cell_name + "->Cap->B_b");
156 double y_cap = cache->get(cell_name + "->Cap->Y");
219 double gate_pitch = cell_lib_->getTechModel()->get("Gate->PitchContacted");
250 area += gate_pitch * getTotalHeight() * getGenProperties()->get("INV1_GatePitches").toDouble();
251 area += gate_pitch * getTotalHeight() * getGenProperties()->get("INV2_GatePitches").toDouble();
252 area += gate_pitch * getTotalHeight() * getGenProperties()->get("INVZ1_GatePitches").toDouble();
253 area += gate_pitch * getTotalHeight() * getGenProperties()->get("INVZ2_GatePitches").toDouble();
267 leakage_00 += getGenProperties()->get("INV1_LeakagePower_0").toDouble();
268 leakage_00 += getGenProperties()->get("INV2_LeakagePower_0").toDouble();
269 leakage_00 += getGenProperties()->get("INVZ1_LeakagePower_010_0").toDouble();
270 leakage_00 += getGenProperties()->get("INVZ2_LeakagePower_101_0").toDouble();
272 leakage_01 += getGenProperties()->get("INV1_LeakagePower_0").toDouble();
273 leakage_01 += getGenProperties()->get("INV2_LeakagePower_1").toDouble();
274 leakage_01 += getGenProperties()->get("INVZ1_LeakagePower_011_1").toDouble();
275 leakage_01 += getGenProperties()->get("INVZ2_LeakagePower_100_1").toDouble();
277 leakage_10 += getGenProperties()->get("INV1_LeakagePower_1").toDouble();
278 leakage_10 += getGenProperties()->get("INV2_LeakagePower_0").toDouble();
279 leakage_10 += getGenProperties()->get("INVZ1_LeakagePower_100_1").toDouble();
280 leakage_10 += getGenProperties()->get("INVZ2_LeakagePower_011_1").toDouble();
282 leakage_11 += getGenProperties()->get("INV1_LeakagePower_1").toDouble();
283 leakage_11 += getGenProperties()->get("INV2_LeakagePower_1").toDouble();
284 leakage_11 += getGenProperties()->get("INVZ1_LeakagePower_101_0").toDouble();
285 leakage_11 += getGenProperties()->get("INVZ2_LeakagePower_010_0").toDouble();
300 event_a_flip += getGenProperties()->get("INV1_A_Flip").toDouble() + getGenProperties()->get("INV1_ZN_Flip").toDouble();
301 event_a_flip += getGenProperties()->get("INVZ1_OE_Flip").toDouble() + getGenProperties()->get("INVZ1_OEN_Flip").toDouble();
302 event_a_flip += getGenProperties()->get("INVZ2_OE_Flip").toDouble() + getGenProperties()->get("INVZ2_OEN_Flip").toDouble();
307 event_b_flip += getGenProperties()->get("INV2_A_Flip").toDouble() + getGenProperties()->get("INV2_ZN_Flip").toDouble();
308 event_b_flip += getGenProperties()->get("INVZ1_A_Flip").toDouble();
309 event_b_flip += getGenProperties()->get("INVZ2_A_Flip").toDouble();
314 event_y_flip += getGenProperties()->get("INVZ1_ZN_Flip").toDouble();
315 event_y_flip += getGenProperties()->get("INVZ2_ZN_Flip").toDouble();