Lines Matching refs:tries
35 static long long tries = 5ULL << 32; variable
55 tries = atoll(optarg); in main()
80 collect_sample(sample, tries, threshold); in main()
81 analyze_sample(sample, tries, threshold); in main()
91 tries_done, tries, (tries_done * 100.0) / tries); in progress()
99 collect_sample(unsigned char *sample, long long tries, uint32_t threshold) in collect_sample() argument
107 for (i = 0; i < tries; i++) { in collect_sample()
127 analyze_sample(const unsigned char *sample, long long tries, uint32_t threshold) in analyze_sample() argument
143 average = total / tries; in analyze_sample()
158 if (median == threshold && n > tries / 2) in analyze_sample()
170 variance /= tries; in analyze_sample()
174 printf("\tobservations: %lld\n", tries); in analyze_sample()
186 average = (double)tries / threshold; in analyze_sample()