| /openbmc/libmctp/ |
| H A D | crc-16-ccitt.c | 46 uint16_t crc_16_ccitt(uint16_t fcs, const uint8_t *cp, uint32_t len) in crc_16_ccitt() argument 49 fcs = crc_16_ccitt_byte(fcs, *cp++); in crc_16_ccitt() 51 return fcs; in crc_16_ccitt() 54 uint16_t crc_16_ccitt_byte(uint16_t fcs, const uint8_t c) in crc_16_ccitt_byte() argument 56 return (fcs >> 8) ^ crc_16_ccitt_table[(fcs ^ c) & 0xff]; in crc_16_ccitt_byte()
|
| H A D | crc-16-ccitt.h | 10 uint16_t crc_16_ccitt(uint16_t fcs, const uint8_t *cp, uint32_t len); 12 uint16_t crc_16_ccitt_byte(uint16_t fcs, const uint8_t c);
|
| H A D | serial.c | 154 uint16_t fcs; in mctp_binding_serial_tx() local 166 fcs = crc_16_ccitt(FCS_INIT_16, (const uint8_t *)hdr + 1, 2); in mctp_binding_serial_tx() 167 fcs = crc_16_ccitt(fcs, (const uint8_t *)mctp_pktbuf_hdr(pkt), len); in mctp_binding_serial_tx() 181 tlr->fcs_msb = fcs >> 8; in mctp_binding_serial_tx() 182 tlr->fcs_lsb = fcs & 0xff; in mctp_binding_serial_tx()
|
| /openbmc/u-boot/doc/device-tree-bindings/regulator/ |
| H A D | fan53555.txt | 4 - compatible: "fcs,fan53555" 8 - fcs,suspend-voltage-selector: declare which of the two available 17 compatible = "fcs,fan53555"; 22 fcs,suspend-voltage-selector = <1>;
|
| /openbmc/u-boot/arch/arm/dts/ |
| H A D | rk3399-puma.dtsi | 212 compatible = "fcs,fan53555"; 221 fcs,suspend-voltage-selector = <1>; 415 compatible = "fcs,fan53555"; 424 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3288-rock2-som.dtsi | 211 fcs,suspend-voltage-selector = <1>; 225 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3288-evb.dtsi | 182 fcs,suspend-voltage-selector = <1>; 194 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3288-miqi.dtsi | 137 fcs,suspend-voltage-selector = <1>; 151 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3288-firefly.dtsi | 173 fcs,suspend-voltage-selector = <1>; 185 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3399-rock960.dtsi | 114 fcs,suspend-voltage-selector = <1>; 132 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3288-phycore-som.dtsi | 395 compatible = "fcs,fan53555"; 397 fcs,suspend-voltage-selector = <1>;
|
| H A D | rk3399-firefly.dts | 410 fcs,suspend-voltage-selector = <0>; 427 fcs,suspend-voltage-selector = <1>;
|
| /openbmc/qemu/hw/net/ |
| H A D | vmxnet3.h | 416 u32 fcs:1; /* Frame CRC correct */ member 434 u32 fcs:1; /* Frame CRC correct */
|
| H A D | pcnet.c | 1060 uint32_t fcs = ~0; in pcnet_receive() local 1064 CRC(fcs, *p++); in pcnet_receive() 1065 *(uint32_t *)p = htonl(fcs); in pcnet_receive() 1068 uint32_t fcs = ~0; in pcnet_receive() local 1072 CRC(fcs, *p++); in pcnet_receive() 1073 crc_err = (*(uint32_t *)p != htonl(fcs)); in pcnet_receive()
|
| H A D | vmxnet3.c | 918 rxcd->fcs = rxcd->tuc = rxcd->ipc = 1; in vmxnet3_rx_update_descr()
|
| /openbmc/qemu/linux-user/i386/ |
| H A D | signal.c | 43 uint32_t fcs; member
|
| /openbmc/qemu/target/i386/ |
| H A D | cpu.h | 1662 uint32_t fcs; member
|