| /llvm-project-15.0.7/libc/src/__support/ |
| H A D | common.h | 30 #define LLVM_LIBC_FUNCTION(type, name, arglist) \ macro 36 #define LLVM_LIBC_FUNCTION(type, name, arglist) type name arglist macro
|
| /llvm-project-15.0.7/libc/src/pthread/ |
| H A D | pthread_attr_destroy.cpp | 17 LLVM_LIBC_FUNCTION(int, pthread_attr_destroy, (pthread_attr_t * attr)) {
|
| H A D | pthread_mutexattr_destroy.cpp | 18 LLVM_LIBC_FUNCTION(int, pthread_mutexattr_destroy,
|
| /llvm-project-15.0.7/libc/src/ctype/ |
| H A D | toascii.cpp | 15 LLVM_LIBC_FUNCTION(int, toascii, (int c)) { return (c & 0x7f); }
|
| H A D | isascii.cpp | 15 LLVM_LIBC_FUNCTION(int, isascii, (int c)) {
|
| /llvm-project-15.0.7/libc/src/threads/ |
| H A D | mtx_destroy.cpp | 16 LLVM_LIBC_FUNCTION(void, mtx_destroy, (mtx_t * mutex)) {}
|
| /llvm-project-15.0.7/libc/src/fenv/ |
| H A D | fegetexcept.cpp | 15 LLVM_LIBC_FUNCTION(int, fegetexcept, ()) { return fputil::get_except(); }
|
| H A D | fegetround.cpp | 15 LLVM_LIBC_FUNCTION(int, fegetround, ()) { return fputil::get_round(); }
|
| /llvm-project-15.0.7/libc/src/stdlib/ |
| H A D | labs.cpp | 15 LLVM_LIBC_FUNCTION(long, labs, (long n)) { return integer_abs(n); }
|
| H A D | llabs.cpp | 15 LLVM_LIBC_FUNCTION(long long, llabs, (long long n)) { return integer_abs(n); }
|
| H A D | abs.cpp | 15 LLVM_LIBC_FUNCTION(int, abs, (int n)) { return integer_abs(n); }
|
| /llvm-project-15.0.7/libc/src/math/generic/ |
| H A D | ceil.cpp | 15 LLVM_LIBC_FUNCTION(double, ceil, (double x)) { return fputil::ceil(x); }
|
| H A D | ceill.cpp | 15 LLVM_LIBC_FUNCTION(long double, ceill, (long double x)) {
|
| H A D | floor.cpp | 15 LLVM_LIBC_FUNCTION(double, floor, (double x)) { return fputil::floor(x); }
|
| H A D | fabsl.cpp | 15 LLVM_LIBC_FUNCTION(long double, fabsl, (long double x)) {
|
| H A D | floorf.cpp | 15 LLVM_LIBC_FUNCTION(float, floorf, (float x)) { return fputil::floor(x); }
|
| H A D | floorl.cpp | 15 LLVM_LIBC_FUNCTION(long double, floorl, (long double x)) {
|
| H A D | fabsf.cpp | 15 LLVM_LIBC_FUNCTION(float, fabsf, (float x)) { return fputil::abs(x); }
|
| H A D | nearbyint.cpp | 15 LLVM_LIBC_FUNCTION(double, nearbyint, (double x)) {
|
| H A D | lrintf.cpp | 15 LLVM_LIBC_FUNCTION(long, lrintf, (float x)) {
|
| H A D | nearbyintl.cpp | 15 LLVM_LIBC_FUNCTION(long double, nearbyintl, (long double x)) {
|
| H A D | logb.cpp | 15 LLVM_LIBC_FUNCTION(double, logb, (double x)) { return fputil::logb(x); }
|
| H A D | lroundf.cpp | 15 LLVM_LIBC_FUNCTION(long, lroundf, (float x)) {
|
| H A D | nearbyintf.cpp | 15 LLVM_LIBC_FUNCTION(float, nearbyintf, (float x)) {
|
| H A D | roundl.cpp | 15 LLVM_LIBC_FUNCTION(long double, roundl, (long double x)) {
|