Home
last modified time | relevance | path

Searched refs:LLVM_LIBC_FUNCTION (Results 1 – 25 of 288) sorted by relevance

12345678910>>...12

/llvm-project-15.0.7/libc/src/__support/
H A Dcommon.h30 #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 Dpthread_attr_destroy.cpp17 LLVM_LIBC_FUNCTION(int, pthread_attr_destroy, (pthread_attr_t * attr)) {
H A Dpthread_mutexattr_destroy.cpp18 LLVM_LIBC_FUNCTION(int, pthread_mutexattr_destroy,
/llvm-project-15.0.7/libc/src/ctype/
H A Dtoascii.cpp15 LLVM_LIBC_FUNCTION(int, toascii, (int c)) { return (c & 0x7f); }
H A Disascii.cpp15 LLVM_LIBC_FUNCTION(int, isascii, (int c)) {
/llvm-project-15.0.7/libc/src/threads/
H A Dmtx_destroy.cpp16 LLVM_LIBC_FUNCTION(void, mtx_destroy, (mtx_t * mutex)) {}
/llvm-project-15.0.7/libc/src/fenv/
H A Dfegetexcept.cpp15 LLVM_LIBC_FUNCTION(int, fegetexcept, ()) { return fputil::get_except(); }
H A Dfegetround.cpp15 LLVM_LIBC_FUNCTION(int, fegetround, ()) { return fputil::get_round(); }
/llvm-project-15.0.7/libc/src/stdlib/
H A Dlabs.cpp15 LLVM_LIBC_FUNCTION(long, labs, (long n)) { return integer_abs(n); }
H A Dllabs.cpp15 LLVM_LIBC_FUNCTION(long long, llabs, (long long n)) { return integer_abs(n); }
H A Dabs.cpp15 LLVM_LIBC_FUNCTION(int, abs, (int n)) { return integer_abs(n); }
/llvm-project-15.0.7/libc/src/math/generic/
H A Dceil.cpp15 LLVM_LIBC_FUNCTION(double, ceil, (double x)) { return fputil::ceil(x); }
H A Dceill.cpp15 LLVM_LIBC_FUNCTION(long double, ceill, (long double x)) {
H A Dfloor.cpp15 LLVM_LIBC_FUNCTION(double, floor, (double x)) { return fputil::floor(x); }
H A Dfabsl.cpp15 LLVM_LIBC_FUNCTION(long double, fabsl, (long double x)) {
H A Dfloorf.cpp15 LLVM_LIBC_FUNCTION(float, floorf, (float x)) { return fputil::floor(x); }
H A Dfloorl.cpp15 LLVM_LIBC_FUNCTION(long double, floorl, (long double x)) {
H A Dfabsf.cpp15 LLVM_LIBC_FUNCTION(float, fabsf, (float x)) { return fputil::abs(x); }
H A Dnearbyint.cpp15 LLVM_LIBC_FUNCTION(double, nearbyint, (double x)) {
H A Dlrintf.cpp15 LLVM_LIBC_FUNCTION(long, lrintf, (float x)) {
H A Dnearbyintl.cpp15 LLVM_LIBC_FUNCTION(long double, nearbyintl, (long double x)) {
H A Dlogb.cpp15 LLVM_LIBC_FUNCTION(double, logb, (double x)) { return fputil::logb(x); }
H A Dlroundf.cpp15 LLVM_LIBC_FUNCTION(long, lroundf, (float x)) {
H A Dnearbyintf.cpp15 LLVM_LIBC_FUNCTION(float, nearbyintf, (float x)) {
H A Droundl.cpp15 LLVM_LIBC_FUNCTION(long double, roundl, (long double x)) {

12345678910>>...12