| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| ctype.d | 23 pure int isalnum(int c); 25 pure int isalpha(int c); 27 pure int isblank(int c); 29 pure int iscntrl(int c); 31 pure int isdigit(int c); 33 pure int isgraph(int c); 35 pure int islower(int c); 37 pure int isprint(int c); 39 pure int ispunct(int c); 41 pure int isspace(int c) [all...] |
| wctype.d | 30 pure int iswalnum(wint_t wc); 32 pure int iswalpha(wint_t wc); 34 pure int iswblank(wint_t wc); 36 pure int iswcntrl(wint_t wc); 38 pure int iswdigit(wint_t wc); 40 pure int iswgraph(wint_t wc); 42 pure int iswlower(wint_t wc); 44 pure int iswprint(wint_t wc); 46 pure int iswpunct(wint_t wc); 48 pure int iswspace(wint_t wc) [all...] |
| math.d | 227 pure int fpclassify(float x); 228 pure int fpclassify(double x); 229 pure int fpclassify(real x); 232 pure int isfinite(float x); 233 pure int isfinite(double x); 234 pure int isfinite(real x); 237 pure int isinf(float x); 238 pure int isinf(double x); 239 pure int isinf(real x); 242 pure int isnan(float x) [all...] |
| string.d | 38 inout(void)* memchr(return scope inout void* s, int c, size_t n) pure; 40 int memcmp(scope const void* s1, scope const void* s2, size_t n) pure; 42 void* memcpy(return scope void* s1, scope const void* s2, size_t n) pure; 49 void* memmove(return scope void* s1, scope const void* s2, size_t n) pure; 51 void* memset(return scope void* s, int c, size_t n) pure; 54 char* strcat(return scope char* s1, scope const char* s2) pure; 56 inout(char)* strchr(return scope inout(char)* s, int c) pure; 58 int strcmp(scope const char* s1, scope const char* s2) pure; 62 char* strcpy(return scope char* s1, scope const char* s2) pure; 64 size_t strcspn(scope const char* s1, scope const char* s2) pure; [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| port.d | 22 static int memicmp(scope const char* s1, scope const char* s2, size_t n) pure; 24 static char* strupr(char* s) pure; 31 static void writelongLE(uint value, scope void* buffer) pure; 34 static uint readlongLE(scope const void* buffer) pure; 37 static void writelongBE(uint value, scope void* buffer) pure; 40 static uint readlongBE(scope const void* buffer) pure; 43 static uint readwordLE(scope const void* buffer) pure; 46 static uint readwordBE(scope const void* buffer) pure; 48 static void valcpy(scope void *dst, uint64_t val, size_t size) pure;
|
| ctfloat.d | 32 pure static real_t fabs(real_t x); 33 pure static real_t ldexp(real_t n, int exp); 35 pure @trusted 38 pure @trusted 41 pure 44 pure @trusted 47 static bool isInfinity(real_t r) pure;
|
| rootobject.d | 41 this() nothrow pure @nogc @safe 63 DYNCAST dyncast() const nothrow pure @nogc @safe
|
| bitarray.d | 26 size_t length() const @nogc nothrow pure @safe 31 void length(size_t nlen) nothrow pure 46 void opAssign(const ref BitArray b) nothrow pure 54 bool opIndex(size_t idx) const @nogc nothrow pure 62 void opIndexAssign(bool val, size_t idx) @nogc nothrow pure 73 bool opEquals(const ref BitArray b) const @nogc nothrow pure 78 void zero() @nogc nothrow pure 87 bool isZero() @nogc nothrow pure 98 void or(const ref BitArray b) @nogc nothrow pure 108 void swap(ref BitArray b) @nogc nothrow pure [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.betterc/ |
| test20613.d | 4 extern(C) int main() @nogc nothrow pure
|
| test19561.d | 6 extern(C) void main() @nogc nothrow pure
|
| test20088.d | 8 extern(C) int main() @nogc nothrow pure
|
| test19421.d | 6 extern(C) void main() @nogc nothrow pure
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/util/ |
| math.d | 20 T max(T)(T a, T b) pure nothrow @nogc @safe 32 T min(T)(T a, T b) pure nothrow @nogc @safe 38 @safe pure @nogc nothrow 47 @safe pure @nogc nothrow
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/ |
| string.d | 34 void* memccpy(return scope void* dst, scope const void* src, int c, size_t n) pure; 36 char* stpcpy(return scope char* dst, scope const char* src) pure; 38 char* stpncpy(return scope char* dst, const char* src, size_t len) pure; 46 size_t strnlen(scope const char* str, size_t maxlen) pure; 50 char* strtok_r(return scope char* str, scope const char* sep, char** context) pure;
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_hip_libdevice_declares.h | 19 __device__ __attribute__((pure)) float __ocml_acosh_f32(float); 21 __device__ __attribute__((pure)) float __ocml_asinh_f32(float); 24 __device__ __attribute__((pure)) float __ocml_atanh_f32(float); 25 __device__ __attribute__((pure)) float __ocml_cbrt_f32(float); 31 __device__ __attribute__((pure)) __device__ float __ocml_cosh_f32(float); 35 __device__ __attribute__((pure)) float __ocml_erfc_f32(float); 36 __device__ __attribute__((pure)) float __ocml_erfcinv_f32(float); 37 __device__ __attribute__((pure)) float __ocml_erfcx_f32(float); 38 __device__ __attribute__((pure)) float __ocml_erf_f32(float); 39 __device__ __attribute__((pure)) float __ocml_erfinv_f32(float) [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/openbsd/ |
| string.d | 21 pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen); 27 pure int timingsafe_bcmp(scope const void*, scope const void*, size_t); 28 pure int timingsafe_memcmp(scope const void*, scope const void*, size_t);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/ |
| sched.d | 45 size_t __CPUELT(size_t cpu) pure 49 cpu_mask __CPUMASK(size_t cpu) pure 59 size_t __CPU_ALLOC_SIZE(size_t count) pure 69 cpu_mask __CPU_SET_S(size_t cpu, size_t setsize, cpu_set_t* cpusetp) pure 80 bool __CPU_ISSET_S(size_t cpu, size_t setsize, cpu_set_t* cpusetp) pure 87 int __CPU_COUNT_S(size_t setsize, cpu_set_t* cpusetp) pure 112 size_t CPU_ALLOC_SIZE(size_t count) pure 122 cpu_mask CPU_SET(size_t cpu, cpu_set_t* cpusetp) pure 127 bool CPU_ISSET(size_t cpu, cpu_set_t* cpusetp) pure 132 int CPU_COUNT(cpu_set_t* cpusetp) pure [all...] |
| perf_event.d | 499 @property ulong disabled() @safe pure nothrow @nogc const 505 @property void disabled(ulong v) @safe pure nothrow @nogc 519 @property ulong inherit() @safe pure nothrow @nogc const 525 @property void inherit(ulong v) @safe pure nothrow @nogc 539 @property ulong pinned() @safe pure nothrow @nogc const 545 @property void pinned(ulong v) @safe pure nothrow @nogc 559 @property ulong exclusive() @safe pure nothrow @nogc const 565 @property void exclusive(ulong v) @safe pure nothrow @nogc 579 @property ulong exclude_user() @safe pure nothrow @nogc const 585 @property void exclude_user(ulong v) @safe pure nothrow @nog [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/ |
| select.d | 61 extern (D) auto __FDELT( int d ) pure 66 extern (D) auto __FDMASK( int d ) pure 79 extern (D) void FD_CLR( int fd, fd_set* fdset ) pure 84 extern (D) bool FD_ISSET( int fd, const(fd_set)* fdset ) pure 89 extern (D) void FD_SET( int fd, fd_set* fdset ) pure 94 extern (D) void FD_ZERO( fd_set* fdset ) pure 152 extern (D) void FD_CLR( int fd, fd_set* fdset ) pure 157 extern (D) bool FD_ISSET( int fd, const(fd_set)* fdset ) pure 162 extern (D) void FD_SET( int fd, fd_set* fdset ) pure 167 extern (D) void FD_ZERO( fd_set* fdset ) pure [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/netinet/ |
| in_.d | 550 extern (D) int IN6_IS_ADDR_UNSPECIFIED( in6_addr* addr ) pure 558 extern (D) int IN6_IS_ADDR_LOOPBACK( in6_addr* addr ) pure 566 extern (D) int IN6_IS_ADDR_MULTICAST( in6_addr* addr ) pure 571 extern (D) int IN6_IS_ADDR_LINKLOCAL( in6_addr* addr ) pure 576 extern (D) int IN6_IS_ADDR_SITELOCAL( in6_addr* addr ) pure 581 extern (D) int IN6_IS_ADDR_V4MAPPED( in6_addr* addr ) pure 588 extern (D) int IN6_IS_ADDR_V4COMPAT( in6_addr* addr ) pure 596 extern (D) int IN6_IS_ADDR_MC_NODELOCAL( in6_addr* addr ) pure 602 extern (D) int IN6_IS_ADDR_MC_LINKLOCAL( in6_addr* addr ) pure 608 extern (D) int IN6_IS_ADDR_MC_SITELOCAL( in6_addr* addr ) pure [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/ |
| builtins.d | 53 void __ctfeWrite(scope const(char)[] s) @nogc @safe pure nothrow {}
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/bionic/ |
| string.d | 17 pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen);
|
| /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/ |
| future_message.d | 7 @nogc @safe pure nothrow this(string msg, Throwable next = null) 15 @nogc @safe pure nothrow this(string msg, Throwable next = null) 28 @nogc @safe pure nothrow this(string msg, Throwable next = null) 41 @nogc @safe pure nothrow this(string msg, Throwable next = null)
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sync/ |
| exception.d | 23 @safe pure nothrow this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null) 28 @safe pure nothrow this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__)
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/thread/ |
| context.d | 28 void opAssign(void function() fn) pure nothrow @nogc @safe 33 void opAssign(void delegate() dg) pure nothrow @nogc @safe
|