MCPcopy Create free account
hub / github.com/apache/cloudberry / float8_mi

Function float8_mi

src/include/utils/float.h:180–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180static inline float8
181float8_mi(const float8 val1, const float8 val2)
182{
183 float8 result;
184
185 result = val1 - val2;
186 if (unlikely(isinf(result)) && !isinf(val1) && !isinf(val2))
187 float_overflow_error();
188
189 return result;
190}
191
192static inline float4
193float4_mul(const float4 val1, const float4 val2)

Callers 15

box_wdFunction · 0.50
box_htFunction · 0.50
line_constructFunction · 0.50
line_distanceFunction · 0.50
line_interpt_lineFunction · 0.50
path_areaFunction · 0.50
point_dtFunction · 0.50
point_slFunction · 0.50
point_invslFunction · 0.50
dist_cpoly_internalFunction · 0.50
point_sub_pointFunction · 0.50
point_mul_pointFunction · 0.50

Calls 1

float_overflow_errorFunction · 0.85

Tested by

no test coverage detected