Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/cpu/cortexm4/
DappSupport.c61 static bool handleRelocs(const uint8_t *relStart, const uint8_t *relEnd, uint32_t flashStart, uint3… in handleRelocs() argument
66 while (relStart != relEnd) { in handleRelocs()
68 uint32_t rel = *relStart++; in handleRelocs()
78 if (relEnd - relStart < 4) in handleRelocs()
80 rel = *(uint32_t*)relStart; in handleRelocs()
81 relStart += sizeof(uint32_t); in handleRelocs()
87 if (relEnd - relStart < 3) in handleRelocs()
89 rel = *(uint16_t*)relStart; in handleRelocs()
90 relStart += sizeof(uint16_t); in handleRelocs()
91 rel += ((uint32_t)(*relStart++)) << 16; in handleRelocs()
[all …]