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

Function float8_pl

src/include/utils/float.h:156–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156static inline float8
157float8_pl(const float8 val1, const float8 val2)
158{
159 float8 result;
160
161 result = val1 + val2;
162 if (unlikely(isinf(result)) && !isinf(val1) && !isinf(val2))
163 float_overflow_error();
164
165 return result;
166}
167
168static inline float4
169float4_mi(const float4 val1, const float4 val2)

Callers 15

box_cnFunction · 0.85
line_interpt_lineFunction · 0.85
path_areaFunction · 0.85
path_lengthFunction · 0.85
lseg_centerFunction · 0.85
line_contain_pointFunction · 0.85
on_ppathFunction · 0.85
lseg_inside_polyFunction · 0.85
point_add_pointFunction · 0.85
point_mul_pointFunction · 0.85
point_div_pointFunction · 0.85
circle_overlapFunction · 0.85

Calls 1

float_overflow_errorFunction · 0.85

Tested by

no test coverage detected