Home
last modified time | relevance | path

Searched refs:uncompSize (Results 1 – 2 of 2) sorted by relevance

/RvlSDK-3.1.4/build/demos/cxdemo/src/
Dcx_uncompress.c247 u32 uncompSize; in LoadTexDataRL() local
253 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataRL()
254 uncompData = DEMOAlloc( uncompSize ); in LoadTexDataRL()
258 DCFlushRange( uncompData, uncompSize ); in LoadTexDataRL()
281 u32 uncompSize; in LoadTexDataLZ() local
287 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataLZ()
288 uncompData = DEMOAlloc( uncompSize ); in LoadTexDataLZ()
292 DCFlushRange( uncompData, uncompSize ); in LoadTexDataLZ()
315 u32 uncompSize; in LoadTexDataHuff() local
321 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataHuff()
[all …]
Dcx_uncompress_stream.c243 u32 uncompSize; // Data size after decompression in LoadTexDataRL() local
257 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataRL()
258 uncompBuf = DEMOAlloc( uncompSize ); in LoadTexDataRL()
288 DCFlushRange( uncompBuf, uncompSize ); in LoadTexDataRL()
310 u32 uncompSize; // Data size after decompression in LoadTexDataLZ() local
324 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataLZ()
325 uncompBuf = DEMOAlloc( uncompSize ); in LoadTexDataLZ()
355 DCFlushRange( uncompBuf, uncompSize ); in LoadTexDataLZ()
377 u32 uncompSize; // Data size after decompression in LoadTexDataHuff() local
391 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataHuff()
[all …]