Lines Matching defs:cur
72 hashb_t *cur;
75 cur = &htp->tbl[i];
76 (void) mutex_destroy(&cur->block);
77 tmp = cur->first;
124 hashb_t *cur;
127 cur = &htp->tbl[bucket];
129 (void) mutex_lock(&cur->block);
131 tmp = cur->first;
136 (void) mutex_unlock(&cur->block);
157 new->next = cur->first;
162 cur->first = new;
164 (void) mutex_unlock(&cur->block);
179 hashb_t *cur;
186 cur = &tbl->tbl[i];
187 (void) mutex_lock(&cur->block);
189 tmp = cur->first;
204 hashb_t *cur;
209 cur = &tbl->tbl[i];
210 (void) mutex_unlock(&cur->block);
222 hashb_t *cur = NULL;
237 cur = &hash->tbl[i];
238 tmp = cur->first;