HomeSort by relevance Sort by last modified time
    Searched refs:IS_IN_RANGE_E (Results 1 - 2 of 2) sorted by null

  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 42 #define IS_IN_RANGE_E(_val, _rstart, _rend) (((_val) >= (_rstart)) && ((_val) < (_rend)))
43 #define IS_IN_RANGE(_val, _rstart, _rsz) IS_IN_RANGE_E((_val), (_rstart), ((_rstart) + (_rsz)))
494 if (IS_IN_RANGE_E(reloc->where, sect->bss_start, sect->bss_end))
496 else if (IS_IN_RANGE_E(reloc->where, sect->data_start, sect->data_end))
498 else if (IS_IN_RANGE_E(reloc->where, sect->got_start, sect->got_end))
500 else if (IS_IN_RANGE_E(reloc->where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr)))
postprocess_elf.c 44 #define IS_IN_RANGE_E(_val, _rstart, _rend) (((_val) >= (_rstart)) && ((_val) < (_rend)))
45 #define IS_IN_RANGE(_val, _rstart, _rsz) IS_IN_RANGE_E((_val), (_rstart), ((_rstart) + (_rsz)))
373 if (IS_IN_RANGE_E(relocs[i].where, sect->bss_start, sect->bss_end))
375 else if (IS_IN_RANGE_E(relocs[i].where, sect->data_start, sect->data_end))
377 else if (IS_IN_RANGE_E(relocs[i].where, sect->got_start, sect->got_end))
379 else if (IS_IN_RANGE_E(relocs[i].where, FLASH_BASE, FLASH_BASE + sizeof(struct BinHdr)))
    [all...]

Completed in 358 milliseconds