1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef KERNEL_MATH_COMPLEX_TEST 17 #define KERNEL_MATH_COMPLEX_TEST 18 19 #ifdef __cplusplus 20 extern "C" { 21 #endif 22 23 int TestCabs(); 24 int TestCabsf(); 25 int TestCabsl(); 26 int TestCacos(); 27 int TestCacosf(); 28 int TestCacosh(); 29 int TestCacoshf(); 30 int TestCacoshl(); 31 int TestCacosl(); 32 int TestCarg(); 33 int TestCargf(); 34 int TestCargl(); 35 int TestCasin(); 36 int TestCasinf(); 37 int TestCasinh(); 38 int TestCasinhf(); 39 int TestCasinhl(); 40 int TestCasinl(); 41 int TestCatan(); 42 int TestCatanf(); 43 int TestCatanh(); 44 int TestCatanhf(); 45 int TestCatanhl(); 46 int TestCatanl(); 47 int TestCcos(); 48 int TestCcosf(); 49 int TestCcosh(); 50 int TestCcoshf(); 51 int TestCcoshl(); 52 int TestCcosl(); 53 int TestCexp(); 54 int TestCexpf(); 55 int TestCexpl(); 56 int TestCimag(); 57 int TestCimagf(); 58 int TestCimagl(); 59 int TestClog(); 60 int TestClogf(); 61 int TestClogl(); 62 int TestConj(); 63 int TestConjf(); 64 int TestConjl(); 65 int TestCpow(); 66 int TestCpowf(); 67 int TestCpowl(); 68 int TestCproj(); 69 int TestCprojf(); 70 int TestCprojl(); 71 int TestCreal(); 72 int TestCrealf(); 73 int TestCreall(); 74 int TestCsin(); 75 int TestCsinf(); 76 int TestCsinh(); 77 int TestCsinhf(); 78 int TestCsinhl(); 79 int TestCsinl(); 80 int TestCsqrt(); 81 int TestCsqrtf(); 82 int TestCsqrtl(); 83 int TestCtan(); 84 int TestCtanf(); 85 int TestCtanh(); 86 int TestCtanhf(); 87 int TestCtanhl(); 88 int TestCtanl(); 89 90 #ifdef __cplusplus 91 } 92 #endif 93 94 #endif