Lines Matching refs:SAMPLE_RAW_COUNT
53 #define SAMPLE_RAW_COUNT ( 33 + 1 ) macro
83 static char sampleString[ SAMPLE_RAW_COUNT ][ 256 ];
243 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in SampleReport()
253 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in SampleReport()
256 if( sampleNextRawIndex >= SAMPLE_RAW_COUNT ) in SampleReport()
258 sampleRawIndex = ( sampleRawIndex + 1 ) % SAMPLE_RAW_COUNT; in SampleReport()
263 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = *p; in SampleReport()
268 if( sampleNextRawIndex >= SAMPLE_RAW_COUNT ) in SampleReport()
270 sampleRawIndex = ( sampleRawIndex + 1 ) % SAMPLE_RAW_COUNT; in SampleReport()
454 for( i = 0; i < ( SAMPLE_RAW_COUNT - 1 ); i ++ ) in RenderString()
457 y = (s16)( ( scrHeight * i ) / ( SAMPLE_RAW_COUNT - 1 ) ); in RenderString()
459 h = (s16)( scrHeight / ( SAMPLE_RAW_COUNT - 1 ) ); in RenderString()
461 ptr = &( sampleString[ ( sampleRawIndex + i ) % SAMPLE_RAW_COUNT ][ 0 ] ); in RenderString()