MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / F80_iszero

Function F80_iszero

source/emulation/cpu/common/fpu.cpp:76–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76bool F80_iszero(extFloat80_t& f) {
77 return (f.signExp & 0x7FFF) == 0 && f.signif == 0;
78}
79
80static const extFloat80_t fx80_zero = { 0x0000000000000000U, 0x0000 };
81static const extFloat80_t fx80_neg_zero = { 0x0000000000000000U, 0x8000 };

Callers 3

FSCALEMethod · 0.85
GetTagMethod · 0.85
FXTRACTMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected