Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/os/platform/stm32/misc/
Dshowsizes.sh17 bss_end=$(getvar $1 __bss_end)
18 bss_sz=$(($bss_end-$bss_start))
/device/google/contexthub/firmware/os/cpu/cortexm4/
DappSupport.c146 uint8_t *mem = heapAlloc(sect->bss_end); in cpuAppLoad()
155 memset(mem + sect->bss_start, 0, sect->bss_end - sect->bss_start); in cpuAppLoad()
/device/google/contexthub/lib/include/nanohub/
Dnanohub.h108 uint32_t bss_end; member
/device/google/contexthub/util/nanoapp_postprocess/
Dpostprocess.c268 size_t bssSz = sect->bss_end - sect->bss_start; in finalizeAndWrite()
437 !IS_IN_RAM(sect->bss_end) || !IS_IN_RAM(sect->got_start) || !IS_IN_RAM(sect->got_end)) { in handleApp()
494 if (IS_IN_RANGE_E(reloc->where, sect->bss_start, sect->bss_end)) in handleApp()
557 sect->bss_end -= RAM_BASE; in handleApp()
Dpostprocess_elf.c270 uint32_t bssSz = sect->bss_end - sect->bss_start; in finalizeAndWrite()
376 if (IS_IN_RANGE_E(relocs[i].where, sect->bss_start, sect->bss_end)) in handleApp()
515 !IS_IN_RAM(sect->bss_end) || !IS_IN_RAM(sect->got_start) || !IS_IN_RAM(sect->got_end)) { in handleApp()
522 sect->bss_end -= RAM_BASE; in handleApp()
687 fixupAddrElf(&hdr->sect.bss_end) != NANO_RELOC_TYPE_RAM || in fixupHeaderElf()
/device/google/contexthub/firmware/os/core/
DnanohubCommand.c1549 … success = copyTLV32(data, &offset, max_len, tags[i], app->sect.bss_end - app->sect.bss_start); in processAppTags()