Lines Matching refs:i
43 int i; in splayprint() local
49 for(i = 0; i < d; i++) in splayprint()
55 (long)t->key.tv_usec, i); in splayprint()
80 int i, j; variable
85 for(i = 0; i < NUM_NODES; i++) {
89 key.tv_usec = (541*i)%1023;
90 storage[i] = key.tv_usec;
91 Curl_splayset(&nodes[i], &storage[i]);
92 root = Curl_splayinsert(key, root, &nodes[i]);
98 for(i = 0; i < NUM_NODES; i++) {
99 int rem = (i + 7)%NUM_NODES;
115 for(i = 0; i < NUM_NODES; i++) {
119 key.tv_usec = (541*i)%1023;
122 for(j = 0; j <= i % 3; j++) {
123 storage[i * 3 + j] = key.tv_usec*10 + j;
124 Curl_splayset(&nodes[i * 3 + j], &storage[i * 3 + j]);
125 root = Curl_splayinsert(key, root, &nodes[i * 3 + j]);
130 for(i = 0; i <= 1100; i += 100) {
131 printf("Removing nodes not larger than %d\n", i);
132 tv_now.tv_usec = i;