adler32_simd.h 385 B

12345678910111213141516
  1. /* adler32_simd.h
  2. *
  3. * Copyright 2017 The Chromium Authors. All rights reserved.
  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. #include <stdint.h>
  8. #include "zconf.h"
  9. #include "zutil.h"
  10. uint32_t ZLIB_INTERNAL adler32_simd_(
  11. uint32_t adler,
  12. const unsigned char *buf,
  13. z_size_t len);