HomeSort by relevance Sort by last modified time
    Searched refs:statePtr (Results 1 - 6 of 6) sorted by null

  /external/lz4/lib/
xxhash.h 172 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr);
175 XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed);
176 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t length);
177 XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr);
230 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr);
233 XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed);
234 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
235 XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr);
xxhash.c 355 XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr)
357 XXH_free(statePtr);
366 XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed)
374 memcpy(statePtr, &state, sizeof(state));
725 XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr)
727 XXH_free(statePtr);
736 XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed)
744 memcpy(statePtr, &state, sizeof(state));
lz4hc.c 537 LZ4_streamHC_t* const statePtr = (LZ4_streamHC_t*)malloc(sizeof(LZ4_streamHC_t));
540 LZ4_streamHC_t* const statePtr = &state;
542 int const cSize = LZ4_compress_HC_extStateHC(statePtr, src, dst, srcSize, maxDstSize, compressionLevel);
544 free(statePtr);
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclwstrings.swg 25 Tcl_EncodingState *statePtr = 0;
29 Tcl_UtfToExternal(0, encoding, src, srcLen, flags, statePtr, dst,
53 Tcl_EncodingState *statePtr = 0;
58 Tcl_ExternalToUtf(0, encoding, src, srcLen, flags, statePtr, dst,
  /external/skia/src/pdf/
SkPDFGraphicState.cpp 91 if (sk_sp<SkPDFDict>* statePtr = fillMap.find(fillKey)) {
92 return *statePtr;
106 if (sk_sp<SkPDFDict>* statePtr = sMap.find(strokeKey)) {
107 return *statePtr;
  /external/lz4/tests/
fuzzer.c 677 { LZ4_stream_t* statePtr;
683 statePtr = LZ4_createStream();
684 FUZ_CHECKTEST(statePtr==NULL, "LZ4_createStream() allocation failed")
    [all...]

Completed in 217 milliseconds