sys/dev/i2c/si70xx.c
40
static uint8_t si70xx_crc(uint8_t *, size_t);
sys/dev/i2c/si70xx.c
665
crc1 = si70xx_crc(testcrcpt1, 4);
sys/dev/i2c/si70xx.c
672
validcrcpt1 = (si70xx_crc(&testcrcpt1[0],1) == buf[1] &&
sys/dev/i2c/si70xx.c
673
si70xx_crc(&testcrcpt1[1],1) == buf[3] &&
sys/dev/i2c/si70xx.c
674
si70xx_crc(&testcrcpt1[2],1) == buf[5] &&
sys/dev/i2c/si70xx.c
675
si70xx_crc(&testcrcpt1[3],1) == buf[7]);
sys/dev/i2c/si70xx.c
697
crc2 = si70xx_crc(testcrcpt2, 4);
sys/dev/i2c/si70xx.c
707
validcrcpt2 = (si70xx_crc(&testcrcpt2[0],2) == buf[2] &&
sys/dev/i2c/si70xx.c
708
si70xx_crc(&testcrcpt2[2],2) == buf[5]);
sys/dev/i2c/si70xx.c
935
si70xx_crc(buf, 2)));
sys/dev/i2c/si70xx.c
941
crc = si70xx_crc(buf, 2);