MCPcopy Create free account
hub / github.com/catboost/catboost / Write

Method Write

util/stream/zlib.cpp:231–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229 }
230
231 inline void Write(const void* buf, size_t size) {
232 const Bytef* b = (const Bytef*)buf;
233 const Bytef* e = b + size;
234
235 Y_DEFER {
236 Z()->next_in = nullptr;
237 Z()->avail_in = 0;
238 };
239 do {
240 b = WritePart(b, e);
241 } while (b < e);

Callers 3

FlushBufferFunction · 0.45
FinishFunction · 0.45
zlib.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected