Lines Matching refs:buf
221 void* buf; in LoadTexData() local
225 buf = DEMOAlloc( OSRoundUp32B( fileInfo.length ) ); in LoadTexData()
226 DVDRead( &fileInfo, buf, (s32)OSRoundUp32B( fileInfo.length ), 0 ); in LoadTexData()
229 return buf; in LoadTexData()
245 void* buf; in LoadTexDataRL() local
250 buf = LoadTexData( path ); in LoadTexDataRL()
253 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataRL()
257 CXUncompressRL( buf, uncompData ); in LoadTexDataRL()
261 DEMOFree( buf ); in LoadTexDataRL()
279 void* buf; in LoadTexDataLZ() local
284 buf = LoadTexData( path ); in LoadTexDataLZ()
287 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataLZ()
291 CXUncompressLZ( buf, uncompData ); in LoadTexDataLZ()
295 DEMOFree( buf ); in LoadTexDataLZ()
313 void* buf; in LoadTexDataHuff() local
318 buf = LoadTexData( path ); in LoadTexDataHuff()
321 uncompSize = CXGetUncompressedSize( buf ); in LoadTexDataHuff()
325 CXUncompressHuffman( buf, uncompData ); in LoadTexDataHuff()
329 DEMOFree( buf ); in LoadTexDataHuff()