PageRenderTime 48ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/cocos2d/external/xxhash/xxhash.h

https://gitlab.com/gasabr/flappy-test
C Header | 164 lines | 20 code | 26 blank | 118 comment | 0 complexity | c693c52e6025e0aa9db191e530923f69 MD5 | raw file
  1. /*
  2. xxHash - Fast Hash algorithm
  3. Header File
  4. Copyright (C) 2012-2014, Yann Collet.
  5. BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
  6. Redistribution and use in source and binary forms, with or without
  7. modification, are permitted provided that the following conditions are
  8. met:
  9. * Redistributions of source code must retain the above copyright
  10. notice, this list of conditions and the following disclaimer.
  11. * Redistributions in binary form must reproduce the above
  12. copyright notice, this list of conditions and the following disclaimer
  13. in the documentation and/or other materials provided with the
  14. distribution.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  16. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  17. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  18. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  19. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  20. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  22. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  23. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  25. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. You can contact the author at :
  27. - xxHash source repository : http://code.google.com/p/xxhash/
  28. */
  29. /* Notice extracted from xxHash homepage :
  30. xxHash is an extremely fast Hash algorithm, running at RAM speed limits.
  31. It also successfully passes all tests from the SMHasher suite.
  32. Comparison (single thread, Windows Seven 32 bits, using SMHasher on a Core 2 Duo @3GHz)
  33. Name Speed Q.Score Author
  34. xxHash 5.4 GB/s 10
  35. CrapWow 3.2 GB/s 2 Andrew
  36. MumurHash 3a 2.7 GB/s 10 Austin Appleby
  37. SpookyHash 2.0 GB/s 10 Bob Jenkins
  38. SBox 1.4 GB/s 9 Bret Mulvey
  39. Lookup3 1.2 GB/s 9 Bob Jenkins
  40. SuperFastHash 1.2 GB/s 1 Paul Hsieh
  41. CityHash64 1.05 GB/s 10 Pike & Alakuijala
  42. FNV 0.55 GB/s 5 Fowler, Noll, Vo
  43. CRC32 0.43 GB/s 9
  44. MD5-32 0.33 GB/s 10 Ronald L. Rivest
  45. SHA1-32 0.28 GB/s 10
  46. Q.Score is a measure of quality of the hash function.
  47. It depends on successfully passing SMHasher test set.
  48. 10 is a perfect score.
  49. */
  50. #pragma once
  51. #if defined (__cplusplus)
  52. extern "C" {
  53. #endif
  54. //****************************
  55. // Type
  56. //****************************
  57. typedef enum { XXH_OK=0, XXH_ERROR } XXH_errorcode;
  58. //****************************
  59. // Simple Hash Functions
  60. //****************************
  61. unsigned int XXH32 (const void* input, int len, unsigned int seed);
  62. /*
  63. XXH32() :
  64. Calculate the 32-bits hash of sequence of length "len" stored at memory address "input".
  65. The memory between input & input+len must be valid (allocated and read-accessible).
  66. "seed" can be used to alter the result predictably.
  67. This function successfully passes all SMHasher tests.
  68. Speed on Core 2 Duo @ 3 GHz (single thread, SMHasher benchmark) : 5.4 GB/s
  69. Note that "len" is type "int", which means it is limited to 2^31-1.
  70. If your data is larger, use the advanced functions below.
  71. */
  72. //****************************
  73. // Advanced Hash Functions
  74. //****************************
  75. void* XXH32_init (unsigned int seed);
  76. XXH_errorcode XXH32_update (void* state, const void* input, int len);
  77. unsigned int XXH32_digest (void* state);
  78. /*
  79. These functions calculate the xxhash of an input provided in several small packets,
  80. as opposed to an input provided as a single block.
  81. It must be started with :
  82. void* XXH32_init()
  83. The function returns a pointer which holds the state of calculation.
  84. This pointer must be provided as "void* state" parameter for XXH32_update().
  85. XXH32_update() can be called as many times as necessary.
  86. The user must provide a valid (allocated) input.
  87. The function returns an error code, with 0 meaning OK, and any other value meaning there is an error.
  88. Note that "len" is type "int", which means it is limited to 2^31-1.
  89. If your data is larger, it is recommended to chunk your data into blocks
  90. of size for example 2^30 (1GB) to avoid any "int" overflow issue.
  91. Finally, you can end the calculation anytime, by using XXH32_digest().
  92. This function returns the final 32-bits hash.
  93. You must provide the same "void* state" parameter created by XXH32_init().
  94. Memory will be freed by XXH32_digest().
  95. */
  96. int XXH32_sizeofState(void);
  97. XXH_errorcode XXH32_resetState(void* state, unsigned int seed);
  98. #define XXH32_SIZEOFSTATE 48
  99. typedef struct { long long ll[(XXH32_SIZEOFSTATE+(sizeof(long long)-1))/sizeof(long long)]; } XXH32_stateSpace_t;
  100. /*
  101. These functions allow user application to make its own allocation for state.
  102. XXH32_sizeofState() is used to know how much space must be allocated for the xxHash 32-bits state.
  103. Note that the state must be aligned to access 'long long' fields. Memory must be allocated and referenced by a pointer.
  104. This pointer must then be provided as 'state' into XXH32_resetState(), which initializes the state.
  105. For static allocation purposes (such as allocation on stack, or freestanding systems without malloc()),
  106. use the structure XXH32_stateSpace_t, which will ensure that memory space is large enough and correctly aligned to access 'long long' fields.
  107. */
  108. unsigned int XXH32_intermediateDigest (void* state);
  109. /*
  110. This function does the same as XXH32_digest(), generating a 32-bit hash,
  111. but preserve memory context.
  112. This way, it becomes possible to generate intermediate hashes, and then continue feeding data with XXH32_update().
  113. To free memory context, use XXH32_digest(), or free().
  114. */
  115. //****************************
  116. // Deprecated function names
  117. //****************************
  118. // The following translations are provided to ease code transition
  119. // You are encouraged to no longer this function names
  120. #define XXH32_feed XXH32_update
  121. #define XXH32_result XXH32_digest
  122. #define XXH32_getIntermediateResult XXH32_intermediateDigest
  123. #if defined (__cplusplus)
  124. }
  125. #endif