Lines Matching refs:tmp
2024 char *tmp; in read_symbols() local
2027 tmp = NOFAIL(strdup(modname)); in read_symbols()
2028 tmp[strlen(tmp) - 2] = '\0'; in read_symbols()
2030 if (strends(tmp, ".lto")) in read_symbols()
2031 tmp[strlen(tmp) - 4] = '\0'; in read_symbols()
2032 mod = new_module(tmp); in read_symbols()
2033 free(tmp); in read_symbols()
2142 char tmp[SZ]; in buf_printf() local
2147 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf()
2148 buf_write(buf, tmp, len); in buf_printf()
2418 char *tmp; in write_if_changed() local
2432 tmp = NOFAIL(malloc(b->pos)); in write_if_changed()
2433 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed()
2436 if (memcmp(tmp, b->p, b->pos) != 0) in write_if_changed()
2439 free(tmp); in write_if_changed()
2444 free(tmp); in write_if_changed()
2615 struct dump_list *tmp; in main() local
2618 tmp = dump_read_start->next; in main()
2620 dump_read_start = tmp; in main()