opal_fifo_ghost    27 opal/class/opal_fifo.c     OBJ_CONSTRUCT(&fifo->opal_fifo_ghost, opal_list_item_t);
opal_fifo_ghost    29 opal/class/opal_fifo.c     fifo->opal_fifo_ghost.opal_list_next = &fifo->opal_fifo_ghost;
opal_fifo_ghost    32 opal/class/opal_fifo.c     fifo->opal_fifo_ghost.item_free = 0;
opal_fifo_ghost    35 opal/class/opal_fifo.c     fifo->opal_fifo_head.data.item = (intptr_t) &fifo->opal_fifo_ghost;
opal_fifo_ghost    38 opal/class/opal_fifo.c     fifo->opal_fifo_tail.data.item = (intptr_t) &fifo->opal_fifo_ghost;
opal_fifo_ghost    53 opal/class/opal_fifo.h     opal_list_item_t opal_fifo_ghost;
opal_fifo_ghost    76 opal/class/opal_fifo.h     return opal_fifo_head (fifo) == &fifo->opal_fifo_ghost;
opal_fifo_ghost    89 opal/class/opal_fifo.h     const opal_list_item_t * const ghost = &fifo->opal_fifo_ghost;
opal_fifo_ghost   120 opal/class/opal_fifo.h     opal_list_item_t *item, *next, *ghost = &fifo->opal_fifo_ghost;
opal_fifo_ghost   184 opal/class/opal_fifo.h     const opal_list_item_t * const ghost = &fifo->opal_fifo_ghost;
opal_fifo_ghost   214 opal/class/opal_fifo.h     const opal_list_item_t * const ghost = &fifo->opal_fifo_ghost;
opal_fifo_ghost   298 opal/class/opal_fifo.h     item->opal_list_next = &fifo->opal_fifo_ghost;
opal_fifo_ghost   301 opal/class/opal_fifo.h     if (&fifo->opal_fifo_ghost == opal_fifo_head (fifo)) {
opal_fifo_ghost   314 opal/class/opal_fifo.h     if (item == &fifo->opal_fifo_ghost) {
opal_fifo_ghost   319 opal/class/opal_fifo.h     if (&fifo->opal_fifo_ghost == opal_fifo_head (fifo)) {
opal_fifo_ghost   320 opal/class/opal_fifo.h         fifo->opal_fifo_tail.data.item = (intptr_t) &fifo->opal_fifo_ghost;
opal_fifo_ghost   110 test/class/opal_fifo.c     for (count = 0, item = fifo->opal_fifo_head.data.item ; item != &fifo->opal_fifo_ghost ;
opal_fifo_ghost   138 test/class/opal_fifo.c     if (&fifo.opal_fifo_ghost == prev) {