Lines Matching refs:SAMPLE_RAW_COUNT
47 #define SAMPLE_RAW_COUNT ( 33 + 1 ) macro
77 static char sampleString[ SAMPLE_RAW_COUNT ][ 256 ];
237 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in SampleReport()
247 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in SampleReport()
250 if( sampleNextRawIndex >= SAMPLE_RAW_COUNT ) in SampleReport()
252 sampleRawIndex = ( sampleRawIndex + 1 ) % SAMPLE_RAW_COUNT; in SampleReport()
257 sampleString[ sampleNextRawIndex % SAMPLE_RAW_COUNT ][ sampleNextColIndex ] = *p; in SampleReport()
262 if( sampleNextRawIndex >= SAMPLE_RAW_COUNT ) in SampleReport()
264 sampleRawIndex = ( sampleRawIndex + 1 ) % SAMPLE_RAW_COUNT; in SampleReport()
448 for( i = 0; i < ( SAMPLE_RAW_COUNT - 1 ); i ++ ) in RenderString()
451 y = (s16)( ( scrHeight * i ) / ( SAMPLE_RAW_COUNT - 1 ) ); in RenderString()
453 h = (s16)( scrHeight / ( SAMPLE_RAW_COUNT - 1 ) ); in RenderString()
455 ptr = &( sampleString[ ( sampleRawIndex + i ) % SAMPLE_RAW_COUNT ][ 0 ] ); in RenderString()