Searched refs:NonZero (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DScaledNumber.cpp191 size_t NonZero = Float.find_last_not_of('0');
192 assert(NonZero != std::string::npos && "no . in floating point string");
194 if (Float[NonZero] == '.')
195 ++NonZero;
197 return Float.substr(0, NonZero + 1);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9183 bool NonZero = false; local
9189 NonZero |= !C->isNullValue();
9191 NonZero |= !C->getConstantFPValue()->isNullValue();
9219 if (NonZero || NoVectors)

Completed in 139 milliseconds