MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Snappy_GetUncompressedLength

Function Snappy_GetUncompressedLength

tensorflow/core/platform/posix/port.cc:336–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334}
335
336bool Snappy_GetUncompressedLength(const char* input, size_t length,
337 size_t* result) {
338#ifdef TF_USE_SNAPPY
339 return snappy::GetUncompressedLength(input, length, result);
340#else
341 return false;
342#endif
343}
344
345bool Snappy_Uncompress(const char* input, size_t length, char* output) {
346#ifdef TF_USE_SNAPPY

Callers 2

ReadBlockFunction · 0.50
InflateMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected