Home | History | Annotate | Download | only in ubsan

Lines Matching defs:Value

10 // Representation of a runtime value, as marshaled from the generated code to
21 SIntMax Value::getSIntValue() const {
42 UIntMax Value::getUIntValue() const {
58 UIntMax Value::getPositiveIntValue() const {
66 /// Get the floating-point value of this object, extended to a long double.
69 FloatMax Value::getFloatValue() const {
77 __fp16 Value;
78 internal_memcpy(&Value, &Val, 4);
79 return Value;
83 float Value;
84 internal_memcpy(&Value, &Val, 4);
85 return Value;
88 double Value;
89 internal_memcpy(&Value, &Val, 8);
90 return Value;