Lines Matching defs:Leaves
405 // Leaves of the expression are values that either aren't the right kind of
418 // Leaves - Keeps track of the set of putative leaves as well as the number of
421 LeafMap Leaves; // Leaf -> Total weight so far.
452 LeafMap::iterator It = Leaves.find(Op);
453 if (It == Leaves.end()) {
462 Leaves[Op] = Weight;
468 assert(It != Leaves.end() && Visited.count(Op) &&
482 Leaves.erase(It); // Since the value may be morphed below.
524 Leaves[Op] = Weight;
531 LeafMap::iterator It = Leaves.find(V);
532 if (It == Leaves.end())