1 /* adler32_simd.h 2 * 3 * Copyright 2017 The Chromium Authors 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the Chromium source repository LICENSE file. 6 */ 7 8 #include <stdint.h> 9 10 #include "zconf.h" 11 #include "zutil.h" 12 13 uint32_t ZLIB_INTERNAL adler32_simd_( 14 uint32_t adler, 15 const unsigned char *buf, 16 z_size_t len); 17