Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/cpu/cortexm4/
DappSupport.c31 #define APP_FLASH_RELOC(_base, _offset) ((uint32_t)(_base) + FLASH_RELOC_OFFSET + (_offset)) macro
32 #define APP_FLASH_RELOC_BASE(_base) APP_FLASH_RELOC(_base, 0)
144 const uint8_t *relocsStart = (const uint8_t*)APP_FLASH_RELOC(app, sect->rel_start); in cpuAppLoad()
145 const uint8_t *relocsEnd = (const uint8_t*)APP_FLASH_RELOC(app, sect->rel_end); in cpuAppLoad()
158 …memcpy(mem + sect->data_start, (uint8_t*)APP_FLASH_RELOC(app, sect->data_data), sect->got_end - se… in cpuAppLoad()