/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | llvmlibc-implementation-in-namespace.rst | 13 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {} 23 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {} 27 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {}
|
/external/llvm-project/libc/docs/ |
D | clang_tidy_checks.rst | 42 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {} 52 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {} 56 void LLVM_LIBC_ENTRYPOINT(strcpy)(char *dest, const char *src) {}
|
/external/llvm-project/libc/src/fenv/ |
D | fegetround.cpp | 14 int LLVM_LIBC_ENTRYPOINT(fegetround)() { return fputil::getRound(); } in LLVM_LIBC_ENTRYPOINT() function
|
D | fesetround.cpp | 14 int LLVM_LIBC_ENTRYPOINT(fesetround)(int m) { return fputil::setRound(m); } in LLVM_LIBC_ENTRYPOINT() function
|
D | feraiseexcept.cpp | 14 int LLVM_LIBC_ENTRYPOINT(feraiseexcept)(int e) { in LLVM_LIBC_ENTRYPOINT() function
|
D | feclearexcept.cpp | 14 int LLVM_LIBC_ENTRYPOINT(feclearexcept)(int e) { in LLVM_LIBC_ENTRYPOINT() function
|
D | fetestexcept.cpp | 14 int LLVM_LIBC_ENTRYPOINT(fetestexcept)(int e) { return fputil::testExcept(e); } in LLVM_LIBC_ENTRYPOINT() function
|
/external/llvm-project/libc/src/errno/ |
D | __errno_location.cpp | 20 int *LLVM_LIBC_ENTRYPOINT(__errno_location)() { return &__errno; } in LLVM_LIBC_ENTRYPOINT() function
|
/external/llvm-project/libc/src/math/ |
D | sqrtl.cpp | 14 long double LLVM_LIBC_ENTRYPOINT(sqrtl)(long double x) { in LLVM_LIBC_ENTRYPOINT() function
|
D | round.cpp | 14 double LLVM_LIBC_ENTRYPOINT(round)(double x) { return fputil::round(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | logbf.cpp | 14 float LLVM_LIBC_ENTRYPOINT(logbf)(float x) { return fputil::logb(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | roundf.cpp | 14 float LLVM_LIBC_ENTRYPOINT(roundf)(float x) { return fputil::round(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | truncl.cpp | 14 long double LLVM_LIBC_ENTRYPOINT(truncl)(long double x) { in LLVM_LIBC_ENTRYPOINT() function
|
D | ceilf.cpp | 14 float LLVM_LIBC_ENTRYPOINT(ceilf)(float x) { return fputil::ceil(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | floor.cpp | 14 double LLVM_LIBC_ENTRYPOINT(floor)(double x) { return fputil::floor(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | sqrtf.cpp | 14 float LLVM_LIBC_ENTRYPOINT(sqrtf)(float x) { return fputil::sqrt(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | fabsl.cpp | 14 long double LLVM_LIBC_ENTRYPOINT(fabsl)(long double x) { in LLVM_LIBC_ENTRYPOINT() function
|
D | fabsf.cpp | 14 float LLVM_LIBC_ENTRYPOINT(fabsf)(float x) { return fputil::abs(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | sqrt.cpp | 14 double LLVM_LIBC_ENTRYPOINT(sqrt)(double x) { return fputil::sqrt(x); } in LLVM_LIBC_ENTRYPOINT() function
|
D | roundl.cpp | 14 long double LLVM_LIBC_ENTRYPOINT(roundl)(long double x) { in LLVM_LIBC_ENTRYPOINT() function
|
D | ilogbf.cpp | 14 int LLVM_LIBC_ENTRYPOINT(ilogbf)(float x) { return fputil::ilogb(x); } in LLVM_LIBC_ENTRYPOINT() function
|
/external/llvm-project/libc/src/ctype/ |
D | isprint.cpp | 17 int LLVM_LIBC_ENTRYPOINT(isprint)(int c) { in LLVM_LIBC_ENTRYPOINT() function
|
D | isgraph.cpp | 18 int LLVM_LIBC_ENTRYPOINT(isgraph)(int c) { return internal::isgraph(c); } in LLVM_LIBC_ENTRYPOINT() function
|
D | islower.cpp | 18 int LLVM_LIBC_ENTRYPOINT(islower)(int c) { return internal::islower(c); } in LLVM_LIBC_ENTRYPOINT() function
|
D | isalpha.cpp | 18 int LLVM_LIBC_ENTRYPOINT(isalpha)(int c) { return internal::isalpha(c); } in LLVM_LIBC_ENTRYPOINT() function
|