OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:XXH32_state_t
(Results
1 - 3
of
3
) sorted by null
/external/lz4/lib/
xxhash.h
103
typedef struct { long long ll[ 6]; }
XXH32_state_t
;
113
XXH32_state_t
* XXH32_createState(void);
114
XXH_errorcode XXH32_freeState(
XXH32_state_t
* statePtr);
125
XXH_errorcode XXH32_reset (
XXH32_state_t
* statePtr, unsigned seed);
126
XXH_errorcode XXH32_update (
XXH32_state_t
* statePtr, const void* input, size_t length);
127
unsigned int XXH32_digest (const
XXH32_state_t
* statePtr);
xxhash.c
342
XXH32_state_t
state;
536
XXH32_state_t
* XXH32_createState(void)
538
XXH_STATIC_ASSERT(sizeof(
XXH32_state_t
) >= sizeof(XXH_istate32_t)); /* A compilation error here means
XXH32_state_t
is not large enough */
539
return (
XXH32_state_t
*)XXH_malloc(sizeof(
XXH32_state_t
));
541
XXH_errorcode XXH32_freeState(
XXH32_state_t
* statePtr)
561
XXH_errorcode XXH32_reset(
XXH32_state_t
* state_in, U32 seed)
588
FORCE_INLINE XXH_errorcode XXH32_update_endian (
XXH32_state_t
* state_in, const void* input, size_t len, XXH_endianess endian)
677
XXH_errorcode XXH32_update (
XXH32_state_t
* state_in, const void* input, size_t len
[
all
...]
lz4frame.c
125
XXH32_state_t
xxh;
147
XXH32_state_t
xxh;
[
all
...]
Completed in 75 milliseconds