Lines Matching refs:off
649 unsigned int off; /* Offset of last byte */ in print_trailer() local
672 off = s->offset + sizeof(void *); in print_trailer()
674 off = s->inuse; in print_trailer()
677 off += 2 * sizeof(struct track); in print_trailer()
679 off += kasan_metadata_size(s); in print_trailer()
681 if (off != size_from_object(s)) in print_trailer()
683 print_section(KERN_ERR, "Padding ", p + off, in print_trailer()
684 size_from_object(s) - off); in print_trailer()
799 unsigned long off = s->inuse; /* The end of info */ in check_pad_bytes() local
803 off += sizeof(void *); in check_pad_bytes()
807 off += 2 * sizeof(struct track); in check_pad_bytes()
809 off += kasan_metadata_size(s); in check_pad_bytes()
811 if (size_from_object(s) == off) in check_pad_bytes()
815 p + off, POISON_INUSE, size_from_object(s) - off); in check_pad_bytes()