MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / LZ4_createStream

Function LZ4_createStream

Source/ThirdParty/LZ4/lz4.cpp:933–939  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

931********************************/
932
933LZ4_stream_t* LZ4_createStream(void)
934{
935 LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64);
936 LZ4_STATIC_ASSERT(LZ4_STREAMSIZE >= sizeof(LZ4_stream_t_internal)); /* A compilation error here means LZ4_STREAMSIZE is not large enough */
937 LZ4_resetStream(lz4s);
938 return lz4s;
939}
940
941void LZ4_resetStream (LZ4_stream_t* LZ4_stream)
942{

Callers 1

ProfilerMethod · 0.85

Calls 1

LZ4_resetStreamFunction · 0.85

Tested by

no test coverage detected