George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 1 | /* |
Szabolcs Nagy | 0d51c04 | 2018-04-25 13:26:22 +0100 | [diff] [blame] | 2 | * Public API. |
George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 3 | * |
Szabolcs Nagy | a7711a3 | 2018-06-05 11:43:57 +0100 | [diff] [blame^] | 4 | * Copyright (c) 2015-2018, Arm Limited. |
Szabolcs Nagy | 1b94597 | 2018-05-14 14:46:40 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 |
George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 6 | * |
Szabolcs Nagy | 1b94597 | 2018-05-14 14:46:40 +0100 | [diff] [blame] | 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 10 | * |
Szabolcs Nagy | 1b94597 | 2018-05-14 14:46:40 +0100 | [diff] [blame] | 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 12 | * |
Szabolcs Nagy | 1b94597 | 2018-05-14 14:46:40 +0100 | [diff] [blame] | 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
George Lander | da55ef9 | 2015-11-19 12:05:06 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
Szabolcs Nagy | 0d51c04 | 2018-04-25 13:26:22 +0100 | [diff] [blame] | 20 | float sinf(float); |
| 21 | float cosf(float); |
| 22 | float tanf(float); |
| 23 | float expf(float); |
| 24 | float exp2f(float); |
| 25 | float logf(float); |
| 26 | float log2f(float); |
| 27 | float powf(float, float); |
Wilco Dijkstra | 269dc16 | 2018-05-16 15:39:22 +0100 | [diff] [blame] | 28 | float sinf(float); |
| 29 | float cosf(float); |
| 30 | void sincosf(float, float*, float*); |
Szabolcs Nagy | a7711a3 | 2018-06-05 11:43:57 +0100 | [diff] [blame^] | 31 | |
| 32 | double exp(double); |
| 33 | double exp2(double); |
| 34 | double log(double); |