Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/arm-optimized-routines/networking/include/networking.h
48254 views
1
/*
2
* Public API.
3
*
4
* Copyright (c) 2020, Arm Limited.
5
* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6
*/
7
8
unsigned short __chksum (const void *, unsigned int);
9
#if __aarch64__ && __ARM_NEON
10
unsigned short __chksum_aarch64_simd (const void *, unsigned int);
11
#endif
12
#if __arm__ && __ARM_NEON
13
unsigned short __chksum_arm_simd (const void *, unsigned int);
14
#endif
15
16