Home
last modified time | relevance | path

Searched refs:crc (Results 1 – 25 of 32) sorted by relevance

12

/include/linux/
Dcrc-ccitt.h10 extern u16 crc_ccitt(u16 crc, const u8 *buffer, size_t len);
11 extern u16 crc_ccitt_false(u16 crc, const u8 *buffer, size_t len);
13 static inline u16 crc_ccitt_byte(u16 crc, const u8 c) in crc_ccitt_byte() argument
15 return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff]; in crc_ccitt_byte()
18 static inline u16 crc_ccitt_false_byte(u16 crc, const u8 c) in crc_ccitt_false_byte() argument
20 return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c]; in crc_ccitt_false_byte()
Dcrc-itu-t.h18 extern u16 crc_itu_t(u16 crc, const u8 *buffer, size_t len);
20 static inline u16 crc_itu_t_byte(u16 crc, const u8 data) in crc_itu_t_byte() argument
22 return (crc << 8) ^ crc_itu_t_table[((crc >> 8) ^ data) & 0xff]; in crc_itu_t_byte()
Dcrc16.h20 extern u16 crc16(u16 crc, const u8 *buffer, size_t len);
22 static inline u16 crc16_byte(u16 crc, const u8 data) in crc16_byte() argument
24 return (crc >> 8) ^ crc16_table[(crc ^ data) & 0xff]; in crc16_byte()
Dcrc7.h8 static inline u8 crc7_be_byte(u8 crc, u8 data) in crc7_be_byte() argument
10 return crc7_be_syndrome_table[crc ^ data]; in crc7_be_byte()
13 extern u8 crc7_be(u8 crc, const u8 *buffer, size_t len);
Dcrc32.h11 u32 __pure crc32_le(u32 crc, unsigned char const *p, size_t len);
12 u32 __pure crc32_be(u32 crc, unsigned char const *p, size_t len);
32 u32 __attribute_const__ crc32_le_shift(u32 crc, size_t len);
39 u32 __pure __crc32c_le(u32 crc, unsigned char const *p, size_t len);
59 u32 __attribute_const__ __crc32c_le_shift(u32 crc, size_t len);
Dcrc64.h12 u64 __pure crc64_be(u64 crc, const void *p, size_t len);
13 u64 __pure crc64_rocksoft_generic(u64 crc, const void *p, size_t len);
16 u64 crc64_rocksoft_update(u64 crc, const unsigned char *buffer, size_t len);
Dcrc-t10dif.h11 extern __u16 crc_t10dif_generic(__u16 crc, const unsigned char *buffer,
14 extern __u16 crc_t10dif_update(__u16 crc, unsigned char const *, size_t);
Dexport-internal.h67 #define SYMBOL_CRC(sym, crc, sec) \ argument
71 ".long " #crc "\n" \
Dcrc32c.h7 extern u32 crc32c(u32 crc, const void *address, unsigned int length);
Dcrc8.h99 u8 crc8(const u8 table[CRC8_TABLE_SIZE], const u8 *pdata, size_t nbytes, u8 crc);
Dw1.h22 crc:8; member
24 __u64 crc:8,
Dxz.h368 XZ_EXTERN uint32_t xz_crc32(const uint8_t *buf, size_t size, uint32_t crc);
Dnubus.h56 unsigned long crc; member
/include/media/
Dvsp1.h38 void (*callback)(void *data, unsigned int status, u32 crc);
107 struct vsp1_du_crc_config crc; member
/include/uapi/linux/
Dbcm933xx_hcs.h22 __u32 crc; member
Dcramfs_fs.h46 __u32 crc; member
Dbatadv_packet.h591 __be32 crc; member
Didxd.h387 uint32_t crc; member
/include/linux/platform_data/media/
Domap4iss.h43 unsigned crc:1; member
/include/linux/mtd/
Donfi.h125 __le16 crc; member
151 __le16 crc; member
Djedec.h91 __le16 crc; member
/include/linux/ceph/
Dmsgr.h169 __le32 crc; /* header crc32c */ member
188 __le32 crc; /* header crc32c */ member
/include/scsi/
Dsas.h298 __be32 crc; member
471 __be32 crc; member
519 __be32 crc; member
692 __be32 crc; member
/include/uapi/linux/genwqe/
Dgenwqe_card.h340 __u32 crc; /* crc of this image */ member
/include/drm/
Ddrm_crtc.h1142 struct drm_crtc_crc crc; member

12