Lines Matching defs:rootp
103 Void_t* tsearch(const Void_t* key, Void_t** rootp,
106 Void_t* tsearch(key, rootp, comparf)
108 Void_t** rootp;
115 if(!rootp ||
116 (!(dt = *((Dt_t**)rootp)) && !(dt = dtopen((Dtdisc_t*)(&Treedisc),Dtoset))) )
130 *rootp = (Void_t*)dt;
131 else if(*rootp == NIL(Void_t*) )
139 Void_t* tfind(const Void_t* key, Void_t*const* rootp,
142 Void_t* tfind(key, rootp, comparf)
144 Void_t** rootp;
151 if(!rootp || !(dt = *((Dt_t**)rootp)) )
165 Void_t* tdelete(const Void_t* key, Void_t** rootp,
168 Void_t* tdelete(key, rootp, comparf)
170 Void_t** rootp;
178 if(!rootp || !(dt = *((Dt_t**)rootp)) )
188 *rootp = NIL(Void_t*);