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 20extern "C" { 21#endif 22 23int TestCabs(); 24int TestCabsf(); 25int TestCabsl(); 26int TestCacos(); 27int TestCacosf(); 28int TestCacosh(); 29int TestCacoshf(); 30int TestCacoshl(); 31int TestCacosl(); 32int TestCarg(); 33int TestCargf(); 34int TestCargl(); 35int TestCasin(); 36int TestCasinf(); 37int TestCasinh(); 38int TestCasinhf(); 39int TestCasinhl(); 40int TestCasinl(); 41int TestCatan(); 42int TestCatanf(); 43int TestCatanh(); 44int TestCatanhf(); 45int TestCatanhl(); 46int TestCatanl(); 47int TestCcos(); 48int TestCcosf(); 49int TestCcosh(); 50int TestCcoshf(); 51int TestCcoshl(); 52int TestCcosl(); 53int TestCexp(); 54int TestCexpf(); 55int TestCexpl(); 56int TestCimag(); 57int TestCimagf(); 58int TestCimagl(); 59int TestClog(); 60int TestClogf(); 61int TestClogl(); 62int TestConj(); 63int TestConjf(); 64int TestConjl(); 65int TestCpow(); 66int TestCpowf(); 67int TestCpowl(); 68int TestCproj(); 69int TestCprojf(); 70int TestCprojl(); 71int TestCreal(); 72int TestCrealf(); 73int TestCreall(); 74int TestCsin(); 75int TestCsinf(); 76int TestCsinh(); 77int TestCsinhf(); 78int TestCsinhl(); 79int TestCsinl(); 80int TestCsqrt(); 81int TestCsqrtf(); 82int TestCsqrtl(); 83int TestCtan(); 84int TestCtanf(); 85int TestCtanh(); 86int TestCtanhf(); 87int TestCtanhl(); 88int TestCtanl(); 89 90#ifdef __cplusplus 91} 92#endif 93 94#endif