Lines Matching refs:estart
419 estart = addr - start
420 return unsigned(start + estart - (estart % esize))
643 estart = None
652 estart = meta.getElementAddress(addr)
653 if estart is None:
655 elif meta.isElementFree(estart):
657 elif estart in GetZoneCachedElements(meta.zone):
671 if estart is not None:
681 if estart > start:
682 data_array = kern.GetValueFromAddress(estart - 16, "uint8_t *")
683 print_hex_data(data_array[0:16], estart - 16, "")
689 data_array = kern.GetValueFromAddress(estart, "uint8_t *")
690 print_hex_data(data_array[0:esize], estart, "", marks)
698 data_array = kern.GetValueFromAddress(estart + esize, "uint8_t *")
699 print_hex_data(data_array[0:16], estart + esize, "")