Lines Matching refs:estart
385 estart = addr - start
386 return unsigned(start + estart - (estart % esize))
494 estart = None
503 estart = meta.getElementAddress(addr)
504 if estart is None:
506 elif meta.isElementFree(estart):
508 elif estart in GetZoneCachedElements(meta.zone):
522 if estart is not None:
531 if estart > start:
532 data_array = kern.GetValueFromAddress(estart - 16, "uint8_t *")
533 print_hex_data(data_array[0:16], estart - 16, "")
539 data_array = kern.GetValueFromAddress(estart, "uint8_t *")
540 print_hex_data(data_array[0:esize], estart, "", marks)
547 data_array = kern.GetValueFromAddress(estart + esize, "uint8_t *")
548 print_hex_data(data_array[0:16], estart + esize, "")