MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / SINT64_to_SQUAD

Function SINT64_to_SQUAD

src/common/cvt.cpp:2967–2971  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2965
2966
2967static inline void SINT64_to_SQUAD(const SINT64 input, const SQUAD& value)
2968{
2969 ((SLONG*) &value)[LOW_WORD] = (SLONG) (input & 0xffffffff);
2970 ((SLONG*) &value)[HIGH_WORD] = (SLONG) (input >> 32);
2971}
2972
2973
2974Decimal64 CVT_get_dec64(const dsc* desc, DecimalStatus decSt, ErrorFunction err)

Callers 1

CVT_get_quadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected