CRC checksums (CRC-16, CRC-32, CRC-32C) for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pus: rename test_ functions, fix service_type doc (merlint E330/E410)

+4 -3
+4 -3
lib/crc.mli
··· 6 6 (** {1 Hardware acceleration} *) 7 7 8 8 val has_hardware_crc : bool 9 - (** [has_hardware_crc] is [true] if the CPU supports hardware CRC instructions (SSE4.2 on x86_64, CRC 10 - extensions on ARM). When [true], CRC-32C uses hardware intrinsics and CRC-32 11 - uses hardware on ARM (software slicing-by-8 on x86_64). *) 9 + (** [has_hardware_crc] is [true] if the CPU supports hardware CRC instructions 10 + (SSE4.2 on x86_64, CRC extensions on ARM). When [true], CRC-32C uses 11 + hardware intrinsics and CRC-32 uses hardware on ARM (software slicing-by-8 12 + on x86_64). *) 12 13 13 14 (** {1 CRC-16} *) 14 15