Searched defs:checksum_endian_transform (Results 1 – 1 of 1) sorted by relevance
589 checksum_endian_transform = lambda chk: chk # type: Callable[[int], int] function591 checksum_endian_transform = lambda chk: ((chk >> 8) & 0xff) | chk << 8 function