MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / deserialize

Function deserialize

deps/GraphBLAS/CUDA/jitify.hpp:3640–3645  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3638}
3639
3640inline bool deserialize(std::istream& stream, size_t* size) {
3641 uint64_t u64;
3642 stream.read(reinterpret_cast<char*>(&u64), sizeof(u64));
3643 *size = u64;
3644 return stream.good();
3645}
3646
3647inline void serialize(std::ostream& stream, std::string const& s) {
3648 serialize(stream, s.size());

Callers 4

getCachedMethod · 0.85
deserialize_magic_numberFunction · 0.85
deserializeMethod · 0.85
deserializeMethod · 0.85

Calls 2

deserialize_magic_numberFunction · 0.85
resizeMethod · 0.80

Tested by

no test coverage detected