Lines Matching defs:tmp
577 struct textbuf *tmp, *list = *buf_p;
581 tmp = calloc(1, alloc_len);
582 if (!tmp)
585 tmp->text = ((void *) tmp) + sizeof(*tmp);
586 memcpy(tmp->text, text, text_len + 1);
587 tmp->len = text_len;
591 list = tmp;
592 tmp->prev = tmp;
594 tmp->prev = list->prev;
595 tmp->prev->next = tmp;
596 list->prev = tmp;
598 tmp->next = list;
605 struct textbuf *tmp, *list = *buf_p;
608 tmp = list;
609 if (tmp->next == tmp)
612 tmp->prev->next = tmp->next;
613 tmp->next->prev = tmp->prev;
614 list = tmp->next;
617 fputs(tmp->text, stdout);
619 free(tmp);
721 char tmp[16];
722 strcpy(tmp, stor_op_name(op1));
724 atom->insn, tmp, stor_op_name(op2), comment);