Home | History | Annotate | Download | only in Support

Lines Matching refs:Arg

664 hash_code llvm::hash_value(const APInt &Arg) {
665 if (Arg.isSingleWord())
666 return hash_combine(Arg.VAL);
668 return hash_combine_range(Arg.pVal, Arg.pVal + Arg.getNumWords());