Lines Matching refs:currIdx
246 s32 currIdx = 0; // Index to control double buffer in LoadTexDataRL() local
252 DVDRead( &fileInfo, sReadBuf[ currIdx ], 32, 0 ); in LoadTexDataRL()
253 len[ currIdx ] = 32; in LoadTexDataRL()
257 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataRL()
280 ASSERT( len[ currIdx ] != 0 ); in LoadTexDataRL()
281 CXReadUncompRL( &context, sReadBuf[ currIdx ], len[ currIdx ] ); in LoadTexDataRL()
284 currIdx = (currIdx == 0)? 1 : 0; in LoadTexDataRL()
313 s32 currIdx = 0; // Index to control double buffer in LoadTexDataLZ() local
319 DVDRead( &fileInfo, sReadBuf[ currIdx ], 32, 0 ); in LoadTexDataLZ()
320 len[ currIdx ] = 32; in LoadTexDataLZ()
324 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataLZ()
347 ASSERT( len[ currIdx ] != 0 ); in LoadTexDataLZ()
348 CXReadUncompLZ( &context, sReadBuf[ currIdx ], len[ currIdx ] ); in LoadTexDataLZ()
351 currIdx = (currIdx == 0)? 1 : 0; in LoadTexDataLZ()
380 s32 currIdx = 0; // Index to control double buffer in LoadTexDataHuff() local
386 DVDRead( &fileInfo, sReadBuf[ currIdx ], 32, 0 ); in LoadTexDataHuff()
387 len[ currIdx ] = 32; in LoadTexDataHuff()
391 uncompSize = CXGetUncompressedSize ( sReadBuf[ currIdx ] ); in LoadTexDataHuff()
414 ASSERT( len[ currIdx ] != 0 ); in LoadTexDataHuff()
415 CXReadUncompHuffman( &context, sReadBuf[ currIdx ], len[ currIdx ] ); in LoadTexDataHuff()
418 currIdx = (currIdx == 0)? 1 : 0; in LoadTexDataHuff()