mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
50 lines
1.8 KiB
C
50 lines
1.8 KiB
C
/* riscv_functions.h -- RISCV implementations for arch-specific functions.
|
|
*
|
|
* Copyright (C) 2023 SiFive, Inc. All rights reserved.
|
|
* Contributed by Alex Chiang <alex.chiang@sifive.com>
|
|
*
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
#ifndef RISCV_FUNCTIONS_H_
|
|
#define RISCV_FUNCTIONS_H_
|
|
|
|
#ifdef RISCV_RVV
|
|
uint32_t adler32_rvv(uint32_t adler, const uint8_t *buf, size_t len);
|
|
uint32_t adler32_fold_copy_rvv(uint32_t adler, uint8_t *dst, const uint8_t *src, size_t len);
|
|
uint32_t chunksize_rvv(void);
|
|
uint8_t* chunkmemset_safe_rvv(uint8_t *out, unsigned dist, unsigned len, unsigned left);
|
|
uint32_t compare256_rvv(const uint8_t *src0, const uint8_t *src1);
|
|
|
|
uint32_t longest_match_rvv(deflate_state *const s, Pos cur_match);
|
|
uint32_t longest_match_slow_rvv(deflate_state *const s, Pos cur_match);
|
|
void slide_hash_rvv(deflate_state *s);
|
|
void inflate_fast_rvv(PREFIX3(stream) *strm, uint32_t start);
|
|
#endif
|
|
|
|
#ifdef DISABLE_RUNTIME_CPU_DETECTION
|
|
// RISCV - RVV
|
|
# if defined(RISCV_RVV) && defined(__riscv_v) && defined(__linux__)
|
|
# undef native_adler32
|
|
# define native_adler32 adler32_rvv
|
|
# undef native_adler32_fold_copy
|
|
# define native_adler32_fold_copy adler32_fold_copy_rvv
|
|
# undef native_chunkmemset_safe
|
|
# define native_chunkmemset_safe chunkmemset_safe_rvv
|
|
# undef native_chunksize
|
|
# define native_chunksize chunksize_rvv
|
|
# undef native_compare256
|
|
# define native_compare256 compare256_rvv
|
|
# undef native_inflate_fast
|
|
# define native_inflate_fast inflate_fast_rvv
|
|
# undef native_longest_match
|
|
# define native_longest_match longest_match_rvv
|
|
# undef native_longest_match_slow
|
|
# define native_longest_match_slow longest_match_slow_rvv
|
|
# undef native_slide_hash
|
|
# define native_slide_hash slide_hash_rvv
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* RISCV_FUNCTIONS_H_ */
|