Home | History | Annotate | Download | only in Analysis

Lines Matching defs:oldw

184   double oldw = getEdgeWeight(e);
185 assert (oldw != MissingValue && "Adding weight to Edge with no previous weight");
187 << " (new weight: " << format("%.20g",oldw + w) << ")\n");
188 EdgeInformation[getFunction(e)][e] = oldw + w;
194 double oldw = getExecutionCount(BB);
195 assert (oldw != MissingValue && "Adding weight to Block with no previous weight");
197 << " (new weight: " << format("%.20g",oldw + w) << ")\n");
198 BlockInformation[BB->getParent()][BB] = oldw + w;
301 double oldw = getEdgeWeight(e);
303 setEdgeWeight(e, w+oldw);