HomeSort by relevance Sort by last modified time
    Searched refs:NonZero (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
ScaledNumber.cpp 191 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/
DAGCombiner.cpp     [all...]

Completed in 42 milliseconds