Home
last modified time | relevance | path

Searched refs:shade_map (Results 1 – 1 of 1) sorted by relevance

/dragonfly/sys/dev/netif/sln/
H A Dif_sln.c543 static u_char shade_map[] = { 0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, 0xe, variable
571 crcr = shade_map[crc >> 28]; in sln_ether_crc32()
572 crcr |= (shade_map[(crc >> 24) & 0xf] << 4); in sln_ether_crc32()
573 crcr |= (shade_map[(crc >> 20) & 0xf] << 8); in sln_ether_crc32()
574 crcr |= (shade_map[(crc >> 16) & 0xf] << 12); in sln_ether_crc32()
575 crcr |= (shade_map[(crc >> 12) & 0xf] << 16); in sln_ether_crc32()
576 crcr |= (shade_map[(crc >> 8) & 0xf] << 20); in sln_ether_crc32()
577 crcr |= (shade_map[(crc >> 4) & 0xf] << 24); in sln_ether_crc32()
578 crcr |= (shade_map[crc & 0xf] << 28); in sln_ether_crc32()