mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
771 B
29 lines
771 B
/* arch_functions.h -- Arch-specific function prototypes. |
|
* Copyright (C) 2017 Hans Kristian Rosbach |
|
* For conditions of distribution and use, see copyright notice in zlib.h |
|
*/ |
|
|
|
#ifndef CPU_FUNCTIONS_H_ |
|
#define CPU_FUNCTIONS_H_ |
|
|
|
#include "zbuild.h" |
|
#include "zutil.h" |
|
#include "crc32.h" |
|
#include "deflate.h" |
|
#include "fallback_builtins.h" |
|
|
|
#include "arch/generic/generic_functions.h" |
|
|
|
#if defined(X86_FEATURES) |
|
# include "arch/x86/x86_functions.h" |
|
#elif defined(ARM_FEATURES) |
|
# include "arch/arm/arm_functions.h" |
|
#elif defined(PPC_FEATURES) || defined(POWER_FEATURES) |
|
# include "arch/power/power_functions.h" |
|
#elif defined(S390_FEATURES) |
|
# include "arch/s390/s390_functions.h" |
|
#elif defined(RISCV_FEATURES) |
|
# include "arch/riscv/riscv_functions.h" |
|
#endif |
|
|
|
#endif
|
|
|