Lines Matching refs:curelm
202 struct type *curelm = (head)->slh_first; \
203 while(curelm->field.sle_next != (elm)) \
204 curelm = curelm->field.sle_next; \
205 curelm->field.sle_next = \
206 curelm->field.sle_next->field.sle_next; \
283 struct type *curelm = (head)->stqh_first; \
284 while (curelm->field.stqe_next != (elm)) \
285 curelm = curelm->field.stqe_next; \
286 if ((curelm->field.stqe_next = \
287 curelm->field.stqe_next->field.stqe_next) == NULL) \
288 (head)->stqh_last = &(curelm)->field.stqe_next; \
376 struct type *curelm = (head)->sqh_first; \
377 while (curelm->field.sqe_next != (elm)) \
378 curelm = curelm->field.sqe_next; \
379 if ((curelm->field.sqe_next = \
380 curelm->field.sqe_next->field.sqe_next) == NULL) \
381 (head)->sqh_last = &(curelm)->field.sqe_next; \