Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:30:29

0001 /*
0002  * xxHash - Extremely Fast Hash algorithm
0003  * Development source file for `xxh3`
0004  * Copyright (C) 2019-2020 Yann Collet
0005  *
0006  * BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php)
0007  *
0008  * Redistribution and use in source and binary forms, with or without
0009  * modification, are permitted provided that the following conditions are
0010  * met:
0011  *
0012  *    * Redistributions of source code must retain the above copyright
0013  *      notice, this list of conditions and the following disclaimer.
0014  *    * Redistributions in binary form must reproduce the above
0015  *      copyright notice, this list of conditions and the following disclaimer
0016  *      in the documentation and/or other materials provided with the
0017  *      distribution.
0018  *
0019  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
0020  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
0021  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
0022  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
0023  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
0024  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
0025  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
0026  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
0027  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
0028  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
0029  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0030  *
0031  * You can contact the author at:
0032  *   - xxHash homepage: https://www.xxhash.com
0033  *   - xxHash source repository: https://github.com/Cyan4973/xxHash
0034  */
0035 
0036 /*
0037  * Note: This file used to host the source code of XXH3_* variants.
0038  * during the development period.
0039  * The source code is now properly integrated within xxhash.h.
0040  *
0041  * xxh3.h is no longer useful,
0042  * but it is still provided for compatibility with source code
0043  * which used to include it directly.
0044  *
0045  * Programs are now highly discouraged to include xxh3.h.
0046  * Include `xxhash.h` instead, which is the officially supported interface.
0047  *
0048  * In the future, xxh3.h will start to generate warnings, then errors,
0049  * then it will be removed from source package and from include directory.
0050  */
0051 
0052 /* Simulate the same impact as including the old xxh3.h source file */
0053 
0054 #define XXH_INLINE_ALL
0055 #include "xxhash.h"