Home | History | Annotate | Download | only in IR

Lines Matching defs:val

46     APInt val;
48 KeyTy(const APInt& V, Type* Ty) : val(V), type(Ty) {}
50 return type == that.type && this->val == that.val;
56 return hash_combine(Key.type, Key.val);
71 APFloat val;
72 KeyTy(const APFloat& V) : val(V){}
74 return this->val.bitwiseIsEqual(that.val);
80 return hash_combine(Key.val);