Searched refs:pure (Results 76 - 100 of 711) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Ddemangle.d29 string demangle(string name) @safe pure nothrow
38 @safe pure unittest
H A Dcomplex.d46 auto complex(R)(const R re) @safe pure nothrow @nogc
56 auto complex(R, I)(const R re, const I im) @safe pure nothrow @nogc
66 @safe pure nothrow unittest
129 string toString() const @safe /* TODO: pure nothrow */
171 @safe pure nothrow @nogc:
483 @safe pure nothrow unittest
660 @safe pure nothrow unittest
671 @safe pure nothrow unittest
719 @safe pure nothrow unittest
741 T abs(T)(Complex!T z) @safe pure nothro
[all...]
H A Duuid.d136 @safe pure nothrow @nogc Char toChar(Char)(size_t i) const
144 @safe pure nothrow unittest
232 @safe pure unittest
252 @safe pure nothrow @nogc this(ref const scope ubyte[16] uuidData)
257 @safe pure nothrow @nogc this(const ubyte[16] uuidData)
263 @safe pure unittest
277 @safe pure this(T...)(T uuidData)
391 @safe pure unittest
403 @safe pure unittest
465 @trusted pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dcpuid.d120 @property pure
515 version (GNU_OR_LDC) asm pure nothrow @nogc {
517 } else asm pure nothrow @nogc {
559 version (GNU_OR_LDC) asm pure nothrow @nogc {
561 } else asm pure nothrow @nogc {
599 version (GNU_OR_LDC) asm pure nothrow @nogc {
601 } else asm pure nothrow @nogc {
618 version (GNU_OR_LDC) asm pure nothrow @nogc {
620 } else asm pure nothrow @nogc {
629 version (GNU_OR_LDC) asm pure nothro
[all...]
H A Dexception.d27 this( string file = __FILE__, size_t line = __LINE__, Throwable next = null ) @nogc nothrow pure @safe
32 protected this( string msg, string file, size_t line, Throwable next = null ) @nogc nothrow pure @safe
71 size_t line = __LINE__, Throwable next = null) @nogc nothrow pure @safe
78 // but even `snprintf` isn't `pure`.
93 @safe pure unittest
129 size_t line = __LINE__, Throwable next = null) @nogc nothrow pure @safe
160 @safe pure unittest
186 private void rangeMsgPut(ref char[] r, scope const(char)[] e) @nogc nothrow pure @safe
198 @safe pure nothrow @nogc this( string file, size_t line )
203 @safe pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/
H A Dconcatenation.d12 private extern (C) void[] _d_arraycatnTX(const TypeInfo ti, scope byte[][] arrs) pure nothrow;
31 * is temporarily declared `@trusted pure nothrow` until the implementation can be brought up to modern D expectations.
33 ResultArrT _d_arraycatnTX(scope const Tarr arrs) @trusted pure nothrow
53 * is temporarily declared `@trusted pure nothrow` until the implementation can be brought up to modern D expectations.
H A Dappending.d13 private extern (C) byte[] _d_arrayappendcTX(const TypeInfo ti, ref return scope byte[] px, size_t n) @trusted pure nothrow;
35 * is temporarily declared `@trusted pure` until the implementation can be brought up to modern D expectations.
38 ref Tarr _d_arrayappendcTX(return ref scope Tarr px, size_t n) @trusted pure nothrow
45 ref Tarr _d_arrayappendcTX(return ref scope Tarr px, size_t n) @trusted pure nothrow
74 * is temporarily declared `@trusted pure` until the implementation can be brought up to modern D expectations.
96 * is temporarily declared `@trusted pure` until the implementation can be brought up to modern D expectations.
99 ref Tarr _d_arrayappendT(return ref scope Tarr x, scope Tarr y) @trusted pure nothrow
106 ref Tarr _d_arrayappendT(return ref scope Tarr x, scope Tarr y) @trusted pure
142 * is temporarily declared `@trusted pure` until the implementation can be brought up to modern D expectations.
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/
H A Dutf.d24 extern (C) void onUnicodeError( string msg, size_t idx, string file = __FILE__, size_t line = __LINE__ ) @safe pure;
36 @safe @nogc pure nothrow
86 @safe @nogc pure nothrow
96 @safe @nogc pure nothrow
107 @safe @nogc pure nothrow
118 @safe pure
137 @safe pure
156 @safe @nogc pure nothrow
165 @safe pure
181 @safe @nogc pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dutf.d24 extern (C) void onUnicodeError( string msg, size_t idx, string file = __FILE__, size_t line = __LINE__ ) @safe pure;
36 @safe @nogc pure nothrow
86 @safe @nogc pure nothrow
96 @safe @nogc pure nothrow
107 @safe @nogc pure nothrow
118 @safe pure
137 @safe pure
156 @safe @nogc pure nothrow
165 @safe pure
181 @safe @nogc pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdc/
H A Dstdio.d1341 pure void clearerr()(FILE* stream) { stream._flag = stream._flag & ~(_IOERR|_IOEOF); }
1343 pure int feof()(FILE* stream) { return stream._flag&_IOEOF; }
1345 pure int ferror()(FILE* stream) { return stream._flag&_IOERR; }
1347 pure int fileno()(FILE* stream) { return stream._file; }
1389 pure void clearerr(FILE* stream);
1391 pure int feof(FILE* stream);
1393 pure int ferror(FILE* stream);
1395 pure int fileno(FILE* stream);
1470 pure void clearerr(FILE* stream);
1472 pure in
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Dregion.d80 RegionPos savePos() pure @nogc @safe
90 void release(RegionPos pos) pure @nogc @safe
118 bool contains(void* p) pure @nogc
131 size_t size() pure @nogc @safe
H A Darray.d44 this(size_t dim) pure nothrow
52 ~this() pure nothrow
117 ref Array push(T ptr) return pure nothrow
124 extern (D) ref Array pushSlice(T[] a) return pure nothrow
132 ref Array append(typeof(this)* a) return pure nothrow
138 void reserve(size_t nentries) pure nothrow
204 void remove(size_t i) pure nothrow @nogc
212 void insert(size_t index, typeof(this)* a) pure nothrow
225 void insert(size_t index, T ptr) pure nothrow
233 void setDim(size_t newdim) pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/darwin/netinet/
H A Din_.d166 extern(D) bool IN_CLASSA(in_addr_t i) pure @safe { return (i & 0x80000000) == 0; }
172 extern(D) bool IN_CLASSB(in_addr_t i) pure @safe { return (i & 0xc0000000) == 0x80000000; }
178 extern(D) bool IN_CLASSC(in_addr_t i) pure @safe { return (i & 0xe0000000) == 0xc0000000; }
183 extern(D) bool IN_CLASSD(in_addr_t i) pure @safe { return (i & 0xf0000000) == 0xe0000000; }
187 extern(D) bool IN_MULTICAST(in_addr_t i) pure @safe { return IN_CLASSD(i); }
193 extern(D) bool IN_EXPERIMENTAL(in_addr_t i) pure @safe { return (i & 0xf0000000) == 0xf0000000; }
194 extern(D) bool IN_BADCLASS(in_addr_t i) pure @safe { return (i & 0xf0000000) == 0xf0000000; }
206 extern(D) bool IN_LINKLOCAL(in_addr_t i) pure @safe { return (i & IN_CLASSB_NET) == IN_LINKLOCALNETNUM; }
207 extern(D) bool IN_LOOPBACK(in_addr_t i) pure @safe { return (i & 0xff000000) == 0x7f000000; }
208 extern(D) bool IN_ZERONET(in_addr_t i) pure
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/darwin/
H A Dstring.d30 pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen);
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/dragonflybsd/sys/
H A D_bitset.d10 extern (C) pure nothrow @nogc @system:
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/freebsd/sys/
H A D_bitset.d9 extern (C) pure nothrow @nogc:
H A D_cpuset.d9 extern (C) pure nothrow @nogc:
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/freebsd/
H A Dunistd.d19 int getosreldate() pure @trusted;
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dstrings.d26 int ffs(int i) @safe pure;
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Dtraits.d31 bool isNaN(X)(X x) @nogc @trusted pure nothrow
88 @safe pure nothrow @nogc unittest
98 @safe pure nothrow @nogc unittest
138 bool isFinite(X)(X x) @trusted pure nothrow @nogc
151 @safe pure nothrow @nogc unittest
160 @safe pure nothrow @nogc unittest
203 bool isNormal(X)(X x) @trusted pure nothrow @nogc
216 @safe pure nothrow @nogc unittest
235 @safe pure nothrow @nogc unittest
265 bool isSubnormal(X)(X x) @trusted pure nothro
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dmath.d76 * these functions are pure nothrow.
465 T floorImpl(T)(const T x) @trusted pure nothrow @nogc
608 Num abs(Num)(Num x) @safe pure nothrow
620 auto abs(Num)(Num z) @safe pure nothrow @nogc
628 auto abs(Num)(Num y) @safe pure nothrow @nogc
636 @safe pure nothrow @nogc unittest
648 @safe pure nothrow @nogc unittest
673 auto conj(Num)(Num z) @safe pure nothrow @nogc
686 auto conj(Num)(Num y) @safe pure nothrow @nogc
694 @safe pure nothro
[all...]
H A Duuid.d136 @safe pure nothrow @nogc Char toChar(Char)(size_t i) const
144 @safe pure nothrow unittest
232 @safe pure unittest
252 @safe pure nothrow @nogc this(ref in ubyte[16] uuidData)
257 @safe pure nothrow @nogc this(in ubyte[16] uuidData)
263 @safe pure unittest
277 @safe pure this(T...)(T uuidData)
391 @safe pure unittest
403 @safe pure unittest
465 @trusted pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/
H A Dobject.d193 * bool opEquals(const Child c) const @safe pure nothrow @nogc
338 bool opEquals(const F o) const @safe nothrow pure
399 this(int member) pure @safe nothrow @nogc
409 bool opEquals(const Base rhs) const @nogc pure nothrow @safe
417 // works through the direct class with attributes enabled, except for pure and nogc in the current TypeInfo implementation
449 this(int member, int member2) pure @safe nothrow @nogc
465 bool opEquals(const Child rhs) const @nogc pure nothrow @safe
635 @property size_t tsize() nothrow pure const @safe @nogc { return 0; }
668 @property override size_t tsize() nothrow pure const @safe @nogc { return tsize_val; }
695 @property inout(TypeInfo) next() nothrow pure inou
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/internal/math/
H A Dbiguintcore.d99 pure invariant()
106 this(immutable(BigDigit) [] x) pure nothrow @nogc @safe
111 this(T)(T x) pure nothrow @safe if (isIntegral!T)
116 enum trustedAssumeUnique = function(BigDigit[] input) pure @trusted @nogc {
121 @property size_t uintLength() pure nothrow const @safe @nogc
133 @property size_t ulongLength() pure nothrow const @safe @nogc
146 ulong peekUlong(int n) pure nothrow const @safe @nogc
158 uint peekUint(int n) pure nothrow const @safe @nogc
172 void opAssign(Tulong)(Tulong u) pure nothrow @safe if (is (Tulong == ulong))
199 void opAssign(Tdummy = void)(BigUint y) pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/
H A Dvector.d63 size_t[2] opSlice(size_t dim : 0)(size_t start, size_t end) const pure nothrow @safe @nogc { return [start, end]; }
66 ref inout(T) opIndex(size_t index) inout pure nothrow @safe @nogc { return as_array[index]; }
68 inout(T)[] opIndex(size_t[2] slice) inout pure nothrow @safe @nogc { return as_array[slice[0] .. slice[1]]; }
70 inout(T)[] opIndex() inout pure nothrow @safe @nogc { return as_array(); }
106 ref inout(T) front() inout pure nothrow @safe @nogc { return as_array[0]; }
108 ref inout(T) back() inout pure nothrow @safe @nogc { return as_array[$-1]; }
185 ref inout(Alloc) get_allocator() inout pure nothrow @safe @nogc { return _Getal(); }
188 size_type max_size() const pure nothrow @safe @nogc { return ((size_t.max / T.sizeof) - 1) / 2; } // HACK: clone the windows version precisely?
191 size_type size() const pure nothrow @safe @nogc { return _Get_data()._Mylast - _Get_data()._Myfirst; }
193 size_type capacity() const pure nothro
[all...]

Completed in 170 milliseconds

1234567891011>>