Lines Matching defs:bits
314 int offset; /* Location of field, specified in bits; */
708 uint32_t bits;
710 bits = get_bits(packet, offset, f->width);
711 printf("%s", f->value_names[bits]);
717 unsigned long long bits;
725 bits = get_bits(packet, offset, high_width);
726 bits = (bits << low_width) |
729 bits = get_bits(packet, offset, f->width);
732 printf("%s=0x%0*llx", f->name, (f->width + 3) / 4, bits);
735 data_length = bits;