MCPcopy Create free account
hub / github.com/bytedance/bolt / writeInt32

Function writeInt32

bolt/serializers/PrestoSerializer.cpp:1181–1183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1179}
1180
1181void writeInt32(OutputStream* out, int32_t value) {
1182 out->write(reinterpret_cast<char*>(&value), sizeof(value));
1183}
1184
1185void writeInt64(OutputStream* out, int64_t value) {
1186 out->write(reinterpret_cast<char*>(&value), sizeof(value));

Callers 4

flushMethod · 0.70
flushUncompressedFunction · 0.70
flushSerializationFunction · 0.70
flushCompressedFunction · 0.70

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected