/src/sys/dev/ir/ |
sir.h | 87 static __inline u_int16_t updateFCS(u_int16_t fcs, int c) { 88 return (fcs >> 8) ^ irda_fcstab[(fcs^c) & 0xff];
|
/src/sys/net/ |
ppp_defs.h | 46 #define PPP_FCSLEN 2 /* octets for FCS */ 104 * Values for FCS calculations. 106 #define PPP_INITFCS 0xffff /* Initial FCS value */ 107 #define PPP_GOODFCS 0xf0b8 /* Good final FCS value */ 108 #define PPP_FCS(fcs, c) (((fcs) >> 8) ^ fcstab[((fcs) ^ (c)) & 0xff])
|
ppp_tty.c | 156 static uint16_t pppfcs(uint16_t fcs, const uint8_t *cp, int len); 484 * FCS lookup table as calculated by genfcstab. 522 * Calculate a new FCS given the current FCS and the new data. 525 pppfcs(uint16_t fcs, const uint8_t *cp, int len) 528 fcs = PPP_FCS(fcs, *cp++); 529 return (fcs); 575 /* Calculate the FCS for the first mbuf's worth. */ 622 * If we emptied the last mbuf, try to add the FCS and closin [all...] |
/src/sys/netbt/ |
rfcomm_session.c | 152 #define FCS(f, d) crctable[(f) ^ (d)] 613 uint8_t fcs, b; local in function:rfcomm_session_input 619 * UIH frames: FCS is only calculated on address and control fields 620 * For other frames: FCS is calculated on address, control and length 623 fcs = 0xff; 633 fcs = FCS(fcs, b); 639 fcs = FCS(fcs, b) 1469 uint8_t fcs, cr; local in function:rfcomm_session_send_frame 1532 uint8_t fcs, *hdr; local in function:rfcomm_session_send_uih [all...] |
rfcomm.h | 165 uint8_t fcs; member in struct:rfcomm_cmd_hdr
|
/src/sys/dev/usb/ |
uslsa.c | 529 struct slsa_fcs fcs; local in function:uslsa_set_flow 543 status = usbd_do_request(sc->sc_udev, &req, &fcs); 550 ulControlHandshake = le32toh(fcs.ulControlHandshake); 551 ulFlowReplace = le32toh(fcs.ulFlowReplace); 562 fcs.ulControlHandshake = htole32(ulControlHandshake); 563 fcs.ulFlowReplace = htole32(ulFlowReplace); 571 status = usbd_do_request(sc->sc_udev, &req, &fcs);
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/ |
imx8mq-nitrogen-som.dtsi | 97 compatible = "fcs,fan53555"; 112 compatible = "fcs,fan53555"; 127 compatible = "fcs,fan53555";
|
imx8mq-nitrogen.dts | 151 compatible = "fcs,fan53555"; 168 compatible = "fcs,fan53555"; 185 compatible = "fcs,fan53555";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/amlogic/ |
meson-gxm-s912-libretech-pc.dts | 46 compatible = "fcs,fusb302";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/ |
rk3368-evb-act8846.dts | 20 fcs,suspend-voltage-selector = <1>; 32 fcs,suspend-voltage-selector = <1>;
|
rk3399-puma.dtsi | 311 compatible = "fcs,fan53555"; 313 fcs,suspend-voltage-selector = <1>; 345 compatible = "fcs,fan53555"; 352 fcs,suspend-voltage-selector = <1>;
|
rk3399-roc-pc.dtsi | 478 fcs,suspend-voltage-selector = <1>; 497 fcs,suspend-voltage-selector = <1>; 532 compatible = "fcs,fusb302"; 549 compatible = "fcs,fusb302";
|
rk3399-evb.dts | 360 fcs,suspend-voltage-selector = <1>; 377 fcs,suspend-voltage-selector = <1>;
|
rk3399-firefly.dts | 500 fcs,suspend-voltage-selector = <0>; 517 fcs,suspend-voltage-selector = <1>; 561 compatible = "fcs,fusb302";
|
rk3399-hugsun-x99.dts | 219 fcs,suspend-voltage-selector = <1>; 237 fcs,suspend-voltage-selector = <1>; 453 compatible = "fcs,fusb302";
|
rk3399-nanopi4.dtsi | 227 fcs,suspend-voltage-selector = <1>; 246 fcs,suspend-voltage-selector = <1>; 479 compatible = "fcs,fusb302";
|
rk3399-orangepi.dts | 441 fcs,suspend-voltage-selector = <1>; 460 fcs,suspend-voltage-selector = <1>; 534 compatible = "fcs,fusb302";
|
rk3399-rockpro64.dtsi | 476 fcs,suspend-voltage-selector = <1>; 495 fcs,suspend-voltage-selector = <1>; 530 compatible = "fcs,fusb302";
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
rk3288-evb-act8846.dts | 36 fcs,suspend-voltage-selector = <1>; 48 fcs,suspend-voltage-selector = <1>;
|
rk3288-firefly-reload-core.dtsi | 73 fcs,suspend-voltage-selector = <1>; 87 fcs,suspend-voltage-selector = <1>;
|
rk3288-rock2-som.dtsi | 187 fcs,suspend-voltage-selector = <1>; 201 fcs,suspend-voltage-selector = <1>;
|
rk3288-miqi.dts | 142 fcs,suspend-voltage-selector = <1>; 156 fcs,suspend-voltage-selector = <1>;
|
rk3288-phycore-som.dtsi | 320 compatible = "fcs,fan53555"; 322 fcs,suspend-voltage-selector = <1>;
|
rk3288-r89.dts | 135 fcs,suspend-voltage-selector = <1>; 149 fcs,suspend-voltage-selector = <1>;
|
/src/sys/dev/pci/ |
if_vmxreg.h | 165 uint32_t fcs:1; /* Frame CRC correct */ member in struct:vmxnet3_rxcompdesc
|