flat_import_buf    49 tools/elf2flt/elfflt.c import_record_t* flat_import_buf; // point to begining of import table in memory
flat_import_buf   575 tools/elf2flt/elfflt.c   flat_import_buf=malloc( flatrelocsize* sizeof(import_record_t)/sizeof(reloc_record_t) );      		
flat_import_buf   576 tools/elf2flt/elfflt.c   if ( !flat_import_buf) { PRINTERR(stderr, "fail to malloc flat import buf\n"); return ELFFLT_OUTPUT_ERROR;}
flat_import_buf   577 tools/elf2flt/elfflt.c   memset(flat_import_buf, 0, flatrelocsize);
flat_import_buf   621 tools/elf2flt/elfflt.c   flat_import_cur = flat_import_buf;
flat_import_buf   680 tools/elf2flt/elfflt.c           if (flat_import_buf[i].offs != 0)
flat_import_buf   684 tools/elf2flt/elfflt.c               uint32_t idx = flat_import_buf[i].importidx;
flat_import_buf   690 tools/elf2flt/elfflt.c                   if (flat_import_buf[j].importidx == idx)
flat_import_buf   692 tools/elf2flt/elfflt.c                       new_import_buf[new_import_cnt++] = flat_import_buf[j].offs;
flat_import_buf   693 tools/elf2flt/elfflt.c                       flat_import_buf[j].offs = 0;
flat_import_buf    61 tools/elf2flt/elfflt.h extern import_record_t* flat_import_buf; // point to begining of import table in memory