Home | History | Annotate | Download | only in json-c

Lines Matching refs:tail

259      * string is aligned, the masked-off tail is in the same word as the
475 t->tail = new_t->tail;
514 t->head = t->tail = &t->table[n];
517 t->tail->next = &t->table[n];
518 t->table[n].prev = t->tail;
520 t->tail = &t->table[n];
575 if(t->tail == &t->table[n] && t->head == &t->table[n]) {
576 t->head = t->tail = NULL;
580 } else if (t->tail == &t->table[n]) {
581 t->tail->prev->next = NULL;
582 t->tail = t->tail->prev;