Home | History | Annotate | Download | only in Support

Lines Matching refs:Arg

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