Home | History | Annotate | Download | only in arch

Lines Matching defs:unpacked

36   for (int unpacked = 0, packed = 0; unpacked < tags.size ();
37 unpacked += 2, packed++)
38 tags[packed] = (tags[unpacked + 1] << 4) | tags[unpacked];
53 /* An unpacked MTE tags vector will have twice the number of elements
54 compared to an unpacked one. */
57 int unpacked = 0, packed = 0;
61 /* We are not interested in the first unpacked element, just discard
63 unpacked_tags[unpacked] = (tags[packed] >> 4) & 0xf;
64 unpacked++;
68 for (; packed < tags.size (); unpacked += 2, packed++)
70 unpacked_tags[unpacked] = tags[packed] & 0xf;
71 unpacked_tags[unpacked + 1] = (tags[packed] >> 4) & 0xf;