Home
last modified time | relevance | path

Searched refs:got_end (Results 1 – 4 of 4) sorted by relevance

/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess_elf.c266 uint32_t gotSz = sect->got_end - sect->data_start; in finalizeAndWrite()
377 else if (IS_IN_RANGE_E(relocs[i].where, sect->got_start, sect->got_end)) in handleApp()
512 !IS_IN_RAM(sect->bss_end) || !IS_IN_RAM(sect->got_start) || !IS_IN_RAM(sect->got_end)) { in handleApp()
521 sect->got_end -= RAM_BASE; in handleApp()
686 fixupAddrElf(&hdr->sect.got_end) != NANO_RELOC_TYPE_RAM) { in fixupHeaderElf()
718 size_t gotCount = (sect->got_end - sect->got_start) / sizeof(uint32_t); in genElfNanoRelocs()
768 for (uint32_t offset = sect->got_start; offset < sect->got_end; in genElfNanoRelocs()
Dpostprocess.c267 size_t gotSz = sect->got_end - sect->data_start; in finalizeAndWrite()
437 !IS_IN_RAM(sect->bss_end) || !IS_IN_RAM(sect->got_start) || !IS_IN_RAM(sect->got_end)) { in handleApp()
498 else if (IS_IN_RANGE_E(reloc->where, sect->got_start, sect->got_end)) in handleApp()
559 sect->got_end -= RAM_BASE; in handleApp()
/device/google/contexthub/lib/include/nanohub/
Dnanohub.h99 uint32_t got_end; member
/device/google/contexthub/firmware/os/cpu/cortexm4/
DappSupport.c158 …memcpy(mem + sect->data_start, (uint8_t*)APP_FLASH_RELOC(app, sect->data_data), sect->got_end - se… in cpuAppLoad()