Home | History | Annotate | Download | only in nanoapp_postprocess

Lines Matching defs:where

55     uint32_t where;
363 " Where: 0x%08" PRIX32 "\n"
366 i, relocs[i].where, relocs[i].info & 0xff, whichSym);
374 i, relocs[i].where, relocs[i].info & 0xff, whichSym, syms[whichSym].addr);
376 if (IS_IN_RANGE_E(relocs[i].where, sect->bss_start, sect->bss_end))
378 else if (IS_IN_RANGE_E(relocs[i].where, sect->data_start, sect->data_end))
380 else if (IS_IN_RANGE_E(relocs[i].where, sect->got_start, sect->got_end))
382 else if (IS_IN_RANGE_E(relocs[i].where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr)))
390 if (IS_IN_FLASH(relocs[i].where) && relocs[i].where - FLASH_BASE < sizeof(struct BinHdr) && relocType == RELOC_TYPE_SECT) {
398 valThereP = (uint32_t*)(buf + relocs[i].where - FLASH_BASE);
405 i, relocs[i].where
422 if (!IS_IN_RAM(relocs[i].where)) {
428 i, relocs[i].where, relocType, whichSym, syms[whichSym].addr);
432 valThereP = (uint32_t*)(buf + relocs[i].where + sect->data_data - RAM_BASE - FLASH_BASE);
434 nanoRelocs[outNumRelocs].ofstInRam = relocs[i].where - RAM_BASE;