Lines Matching refs:tmp
1964 char *tmp; in read_symbols() local
1967 tmp = NOFAIL(strdup(modname)); in read_symbols()
1968 tmp[strlen(tmp) - 2] = '\0'; in read_symbols()
1970 if (strends(tmp, ".lto")) in read_symbols()
1971 tmp[strlen(tmp) - 4] = '\0'; in read_symbols()
1972 mod = new_module(tmp); in read_symbols()
1973 free(tmp); in read_symbols()
2082 char tmp[SZ]; in buf_printf() local
2087 len = vsnprintf(tmp, SZ, fmt, ap); in buf_printf()
2088 buf_write(buf, tmp, len); in buf_printf()
2336 char *tmp; in write_if_changed() local
2350 tmp = NOFAIL(malloc(b->pos)); in write_if_changed()
2351 if (fread(tmp, 1, b->pos, file) != b->pos) in write_if_changed()
2354 if (memcmp(tmp, b->p, b->pos) != 0) in write_if_changed()
2357 free(tmp); in write_if_changed()
2362 free(tmp); in write_if_changed()
2533 struct dump_list *tmp; in main() local
2536 tmp = dump_read_start->next; in main()
2538 dump_read_start = tmp; in main()