MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / decodeDouble

Method decodeDouble

json/jsoncpp.cpp:846–854  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

844}
845
846bool Reader::decodeDouble(Token& token) {
847 Value decoded;
848 if (!decodeDouble(token, decoded))
849 return false;
850 currentValue().swapPayload(decoded);
851 currentValue().setOffsetStart(token.start_ - begin_);
852 currentValue().setOffsetLimit(token.end_ - begin_);
853 return true;
854}
855
856bool Reader::decodeDouble(Token& token, Value& decoded) {
857 double value = 0;

Callers

nothing calls this directly

Calls 5

fixNumericLocaleInputFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80
c_strMethod · 0.80

Tested by

no test coverage detected