Lines Matching defs:width
316 int width; /* Width of field, 0 means use data_length. */
644 get_bits(struct link_packet *packet, int offset, int width)
650 shift = 32 - (offset & 31) - width;
651 mask = width == 32 ? ~0 : (1 << width) - 1;
710 bits = get_bits(packet, offset, f->width);
712 } else if (f->width == 0) {
720 if ((offset & ~31) != ((offset + f->width - 1) & ~31)) {
723 low_width = f->width - high_width;
729 bits = get_bits(packet, offset, f->width);
732 printf("%s=0x%0*llx", f->name, (f->width + 3) / 4, bits);