Lines Matching refs:uid

53  * uid	- the object UID.
61 const uint32_t uid
67 if (x->uid > uid) {
69 } else if (x->uid < uid) {
86 * uid - the previous object UID.
94 const uint32_t uid
101 if (x->uid > uid) {
104 } else if (x->uid <= uid) {
302 if (x->uid < q->uid) {
309 if (x->uid < q->uid) {
315 if (x->uid < a->uid) {
324 if (x->uid < p->uid) {
369 if (x->uid > tab->buid) {
370 tab->buid = x->uid;
380 * uid - the UID of the node.
388 uint32_t uid
396 if (uid == 0) {
398 uid ++;
399 while (uid != 0 &&
400 avl_search(tab, uid) != NULL) {
401 uid ++;
403 if (uid == 0) {
410 if (uid > tab->buid &&
414 start = uid;
416 end = uid;
432 x->uid = start;
467 uint32_t uid = *uid_p;
471 if (uid != 0) {
473 x = avl_search(tab, uid);
475 x = new_uid(tab, uid);
478 /* the item with this uid will override an */
509 *uid_p = x->uid;
544 uint32_t uid;
564 uid = tab->c->get_uid(item->p);
567 uid) {
708 uint32_t uid = 0;
756 uid = tab->c->get_uid(p);
757 switch (uid_insert(tab, &uid, hval)) {
767 tab->c->set_uid(p, uid);
785 tab->c->get_uid((*itemp)->p) > uid) {
808 /* set the return uid */
810 *uid_p = uid;
828 * uid - the UID of the object.
838 uint32_t uid,
853 if (uid != 0) {
854 x = avl_search(tab, uid);
917 uid = tab->c->get_uid(zhizi);
918 ASSERT(uid != 0);
919 x = avl_search(tab, uid);
922 /* mark the uid item as invalid */
950 * uid - the UID of the object.
963 uint32_t uid,
979 if (uid != 0) {
980 x = avl_search(tab, uid);
1008 /* set the return uid */
1036 /* set the return uid to 0 */
1049 * uid - the previous objet UID.
1057 uint32_t uid
1064 x = avl_search_next(tab, uid);
1066 uid = x->uid;
1069 return (uid);