Lines Matching refs:size
53 unsigned long size, unsigned long step) in benchmark_insert() argument
61 for (index = 0 ; index < size ; index += step) in benchmark_insert()
70 size, step, nsec); in benchmark_insert()
74 unsigned long size, unsigned long step) in benchmark_tagging() argument
82 for (index = 0 ; index < size ; index += step) in benchmark_tagging()
91 size, step, nsec); in benchmark_tagging()
95 unsigned long size, unsigned long step) in benchmark_delete() argument
103 for (index = 0 ; index < size ; index += step) in benchmark_delete()
112 size, step, nsec); in benchmark_delete()
115 static void benchmark_size(unsigned long size, unsigned long step) in benchmark_size() argument
120 benchmark_insert(&tree, size, step); in benchmark_size()
121 benchmark_tagging(&tree, size, step); in benchmark_size()
127 size, step, tagged); in benchmark_size()
129 size, step, normal); in benchmark_size()
131 benchmark_delete(&tree, size, step); in benchmark_size()
139 unsigned long size[] = {1 << 10, 1 << 20, 0}; in benchmark() local
147 for (c = 0; size[c]; c++) in benchmark()
149 benchmark_size(size[c], step[s]); in benchmark()