HomeSort by: relevance | last modified time | path
    Searched refs:dl_prev (Results 1 - 2 of 2) sorted by relevancy

  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_list.c 34 * (dl_prev) pointers. The current head and tail list elements have their
45 dt_list_t *p = dlp->dl_prev; /* p = tail list element */
48 dlp->dl_prev = q;
49 q->dl_prev = p;
68 p->dl_prev = NULL;
72 assert(q->dl_prev == NULL);
73 q->dl_prev = p;
75 assert(dlp->dl_prev == NULL);
76 dlp->dl_prev = p;
92 q->dl_prev = p
    [all...]
dt_list.h 37 struct dt_list *dl_prev; member in struct:dt_list
41 #define dt_list_prev(elem) ((void *)(((dt_list_t *)(elem))->dl_prev))

Completed in 16 milliseconds