Home | History | Annotate | Download | only in ubsan

Lines Matching refs:Value

10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float Value;
87 // For big endian the float value is in the last 4 bytes.
90 internal_memcpy(&Value, ((const char*)(&Val + 1)) - 4, 4);
92 internal_memcpy(&Value, &Val, 4);
94 return Value;
97 double Value;
98 internal_memcpy(&Value, &Val, 8);
99 return Value;