Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/
H A Dsctp_crc32.c57 uint8_t byte0, byte1, byte2, byte3; in sctp_finalize_crc32c() local
68 byte0 = result & 0x000000ff; in sctp_finalize_crc32c()
72 crc32c = ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3); in sctp_finalize_crc32c()
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_hsi_eth.h307 u8 byte0 /* cdu_validation */; member
418 u8 byte0 /* cdu_validation */; member
462 u8 byte0 /* cdu_validation */; member
1777 u8 byte0 /* cdu_validation */; member
H A Decore_hsi_common.h344 u8 byte0 /* cdu_validation */; member
2352 u8 byte0 /* cdu_validation */; member
2537 u8 byte0 /* cdu_validation */; member
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-dfm-defs.h2377 uint64_t byte0 : 6; /**< Deskew setting */ member
2379 uint64_t byte0 : 6;
3135 uint64_t byte0 : 5; /**< Deskew setting member
3138 uint64_t byte0 : 5;
H A Dcvmx-lmcx-defs.h6658 uint64_t byte0 : 4; /**< Deskew setting */ member
6660 uint64_t byte0 : 4;
6942 uint64_t byte0 : 6; /**< Deskew setting */ member
6944 uint64_t byte0 : 6;
8181 uint64_t byte0 : 5; /**< Deskew setting member
8184 uint64_t byte0 : 5;
/f-stack/freebsd/contrib/zstd/doc/
H A Dzstd_compression_format.md630 Let's call its first byte `byte0`.
631 - `if (byte0 == 0)` : there are no sequences.
635 - `if (byte0 < 128)` : `Number_of_Sequences = byte0` . Uses 1 byte.
636 - `if (byte0 < 255)` : `Number_of_Sequences = ((byte0-128) << 8) + byte1` . Uses 2 bytes.
637 - `if (byte0 == 255)`: `Number_of_Sequences = byte1 + (byte2<<8) + 0x7F00` . Uses 3 bytes.
/f-stack/freebsd/netinet/libalias/
H A Dalias_sctp.c890 uint8_t byte0, byte1, byte2, byte3; in local_sctp_finalize_crc32() local
901 byte0 = result & 0x000000ff; in local_sctp_finalize_crc32()
905 crc32c = ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3); in local_sctp_finalize_crc32()