Home | History | Annotate | Download | only in tests

Lines Matching defs:histo

361 		int            histo[HISTOSIZE];
370 for (i = 0; i < HISTOSIZE; i++) histo[i] = 0;
380 if (wt <= 2.5) ++histo[8];
381 if (wt < 5.0) ++histo[0];
382 else if (wt < 50.0) ++histo[1];
383 else if (wt < 500.0) ++histo[2];
384 else if (wt < 5000.0) ++histo[3];
385 else if (wt < 50000.0) ++histo[4];
386 else if (wt < 500000.0) ++histo[5];
387 else if (wt < 5000000.0) ++histo[6];
388 else ++histo[7];
394 printf( "%9d <= 2.5 uS\n", histo[8]);
395 printf( "%9d < 5 uS\n", histo[0]);
396 printf( "%9d < 50 uS\n", histo[1]);
397 printf( "%9d < 500 uS\n", histo[2]);
398 printf( "%9d < 5000 uS\n", histo[3]);
399 printf( "%9d < 50000 uS\n", histo[4]);
400 printf( "%9d < 500000 uS\n", histo[5]);
401 printf( "%9d < 5000000 uS\n", histo[6]);
402 printf( "%9d >= 5000000 uS\n", histo[7]);