(start)
| 248 | |
| 249 | @staticmethod |
| 250 | def _msb_lookup(start): |
| 251 | # type: (int) -> int |
| 252 | try: |
| 253 | return SignalField._lookup_table.index(start) |
| 254 | except ValueError: |
| 255 | raise Scapy_Exception("Only 64 bits for all SignalFields " |
| 256 | "are supported") |
| 257 | |
| 258 | @staticmethod |
| 259 | def _lsb_lookup(start, size): |
no test coverage detected