Lines Matching refs:key
54 timediff_t comp = compare(i, t->key); in Curl_splay()
58 if(compare(i, t->smaller->key) < 0) { in Curl_splay()
73 if(compare(i, t->larger->key) > 0) { in Curl_splay()
115 if(compare(i, t->key) == 0) { in Curl_splayinsert()
120 node->key = KEY_NOTUSED; /* we set the key in the sub node to NOTUSED in Curl_splayinsert()
134 else if(compare(i, t->key) < 0) { in Curl_splayinsert()
145 node->key = i; in Curl_splayinsert()
171 if(compare(i, t->key) < 0) { in Curl_splaygetbest()
184 x->key = t->key; in Curl_splaygetbest()
227 if(compare(KEY_NOTUSED, removenode->key) == 0) { in Curl_splayremove()
244 t = Curl_splay(removenode->key, t); in Curl_splayremove()
264 x->key = t->key; in Curl_splayremove()
275 x = Curl_splay(removenode->key, t->smaller); in Curl_splayremove()