Home
last modified time | relevance | path

Searched defs:srcSize (Results 1 – 4 of 4) sorted by relevance

/device/generic/vulkan-cereal/third-party/lz4/
Dlz4hc.c523 int LZ4_compress_HC_extStateHC (void* state, const char* src, char* dst, int srcSize, int maxDstSiz… in LZ4_compress_HC_extStateHC()
534 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int maxDstSize, int compressionLevel) in LZ4_compress_HC()
670 int LZ4_compressHC(const char* src, char* dst, int srcSize) { return LZ4_compress_HC (src, dst, src… in LZ4_compressHC()
671 int LZ4_compressHC_limitedOutput(const char* src, char* dst, int srcSize, int maxDstSize) { return … in LZ4_compressHC_limitedOutput()
672 int LZ4_compressHC2(const char* src, char* dst, int srcSize, int cLevel) { return LZ4_compress_HC (… in LZ4_compressHC2()
673 int LZ4_compressHC2_limitedOutput(const char* src, char* dst, int srcSize, int maxDstSize, int cLev… in LZ4_compressHC2_limitedOutput()
674 int LZ4_compressHC_withStateHC (void* state, const char* src, char* dst, int srcSize) { return LZ4_… in LZ4_compressHC_withStateHC()
675 int LZ4_compressHC_limitedOutput_withStateHC (void* state, const char* src, char* dst, int srcSize,… in LZ4_compressHC_limitedOutput_withStateHC()
676 int LZ4_compressHC2_withStateHC (void* state, const char* src, char* dst, int srcSize, int cLevel) … in LZ4_compressHC2_withStateHC()
677 int LZ4_compressHC2_limitedOutput_withStateHC (void* state, const char* src, char* dst, int srcSize in LZ4_compressHC2_limitedOutput_withStateHC()
[all …]
Dlz4frame.c244 …c LZ4F_blockSizeID_t LZ4F_optimalBSID(const LZ4F_blockSizeID_t requestedBSID, const size_t srcSize) in LZ4F_optimalBSID()
263 static size_t LZ4F_compressBound_internal(size_t srcSize, const LZ4F_preferences_t* preferencesPtr,… in LZ4F_compressBound_internal()
287 size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr) in LZ4F_compressFrameBound()
309 …essFrame(void* dstBuffer, size_t dstCapacity, const void* srcBuffer, size_t srcSize, const LZ4F_pr… in LZ4F_compressFrame()
493 size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr) in LZ4F_compressBound()
501 static size_t LZ4F_compressBlock(void* dst, const void* src, size_t srcSize, compressFunc_t compres… in LZ4F_compressBlock()
516 …ompress_limitedOutput_withState(void* ctx, const char* src, char* dst, int srcSize, int dstCapacit… in LZ4F_localLZ4_compress_limitedOutput_withState()
522 …compress_limitedOutput_continue(void* ctx, const char* src, char* dst, int srcSize, int dstCapacit… in LZ4F_localLZ4_compress_limitedOutput_continue()
528 …mpressHC_limitedOutput_continue(void* ctx, const char* src, char* dst, int srcSize, int dstSize, i… in LZ4F_localLZ4_compressHC_limitedOutput_continue()
562 …cctxPtr, void* dstBuffer, size_t dstCapacity, const void* srcBuffer, size_t srcSize, const LZ4F_co… in LZ4F_compressUpdate()
[all …]
Dlz4.c1405 int LZ4_compress_limitedOutput_withState (void* state, const char* src, char* dst, int srcSize, int… in LZ4_compress_limitedOutput_withState()
1406 int LZ4_compress_withState (void* state, const char* src, char* dst, int srcSize) { return LZ4_comp… in LZ4_compress_withState()
1407 …Output_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int maxDstSize… in LZ4_compress_limitedOutput_continue()
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/renderer/d3d/d3d9/
DFramebuffer9.cpp258 gl::Extents srcSize(readRenderTarget->getWidth(), readRenderTarget->getHeight(), 1); in blitImpl() local