| 202 | } |
| 203 | |
| 204 | void build(int a, int b, int count, int step) |
| 205 | { |
| 206 | struct { int key,value; } *map=NULL; |
| 207 | int i,j,n,k; |
| 208 | for (i=0; i < a; ++i) |
| 209 | hmput(map,i*step,i+1); |
| 210 | measure(); |
| 211 | churn_inserts = i; |
| 212 | hmfree(map); |
| 213 | dont_measure(); |
| 214 | } |
| 215 | |
| 216 | #ifdef STB__INCLUDE_STB_H |
| 217 | void build_stb(int a, int b, int count, int step) |
no test coverage detected