Searched refs:pure (Results 51 - 75 of 711) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/dragonflybsd/
H A Dstring.d20 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/freebsd/
H A Dstring.d20 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/linux/
H A Dstring.d21 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/netbsd/
H A Dstring.d20 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/src/std/experimental/allocator/
H A Dgc_allocator.d30 pure nothrow @trusted void[] allocate(size_t bytes) shared const
38 pure nothrow @trusted bool expand(ref void[] b, size_t delta) shared const
61 pure nothrow @system bool reallocate(ref void[] b, size_t newSize) shared const
78 pure nothrow @trusted @nogc
88 pure nothrow @system @nogc
96 pure nothrow @safe @nogc
114 package pure nothrow @trusted void[] allocateZeroed()(size_t bytes) shared const
137 pure @system unittest
145 pure @safe unittest
151 pure
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dencoding.d432 E peek() @safe pure @nogc nothrow { return s[0]; }
433 E read() @safe pure @nogc nothrow { E t = s[0]; s = s[1..$]; return t; }
439 E peek() @safe pure @nogc nothrow { return s[$-1]; }
440 E read() @safe pure @nogc nothrow { E t = s[$-1]; s = s[0..$-1]; return t; }
448 void write(E c) @safe pure nothrow { s ~= c; }
453 void write(E c) @safe pure @nogc nothrow { array[0] = c; array = array[1..$]; }
472 void skip() @safe pure @nogc nothrow { skipViaRead(); }
478 dchar decode() @safe pure @nogc nothrow { return decodeViaRead(); }
484 dchar safeDecode() @safe pure @nogc nothrow { return safeDecodeViaRead(); }
490 dchar decodeReverse() @safe pure
[all...]
H A Dxml.d138 bool isChar(dchar c) @safe @nogc pure nothrow // rule 2
162 @safe @nogc nothrow pure unittest
203 bool isSpace(dchar c) @safe @nogc pure nothrow
216 bool isDigit(dchar c) @safe @nogc pure nothrow
224 @safe @nogc nothrow pure unittest
241 bool isLetter(dchar c) @safe @nogc nothrow pure // rule 84
255 bool isIdeographic(dchar c) @safe @nogc nothrow pure
266 @safe @nogc nothrow pure unittest
290 bool isBaseChar(dchar c) @safe @nogc nothrow pure
304 bool isCombiningChar(dchar c) @safe @nogc nothrow pure
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Daav.d19 private size_t hash(size_t a) pure nothrow @nogc @safe
57 private size_t dmd_aaLen(const AA* aa) pure nothrow @nogc @safe
67 private Value* dmd_aaGet(AA** paa, Key key) pure nothrow
116 private Value dmd_aaGetRvalue(AA* aa, Key key) pure nothrow @nogc
140 @property auto asRange(AA* aa) pure nothrow @nogc
152 this(AA* aa) pure nothrow @nogc
161 @property bool empty() const pure nothrow @nogc @safe
166 @property auto front() const pure nothrow @nogc
171 void popFront() pure nothrow @nogc
182 private void toNext() pure nothro
[all...]
H A Dstringtable.d25 private size_t nextpow2(size_t val) @nogc nothrow pure @safe
63 char* lstring() @nogc nothrow pure return
68 size_t len() const @nogc nothrow pure @safe
73 const(char)* toDchars() const @nogc nothrow pure return
79 const(char)[] toString() const @nogc nothrow pure
95 void _init(size_t size = 0) nothrow pure
107 void reset(size_t size = 0) nothrow pure
113 ~this() nothrow pure
130 inout(StringValue!T)* lookup(scope const(char)[] str) inout @nogc nothrow pure
139 inout(StringValue!T)* lookup(scope const(char)* s, size_t length) inout @nogc nothrow pure
[all...]
H A Dstring.d14 inout(char)[] toDString (inout(char)* s) pure nothrow @nogc
33 extern(D) static bool iequals(const(char)[] s1, const(char)[] s2) pure nothrow @nogc
107 string stripLeadingLineTerminator(string str) pure nothrow @nogc @safe
236 @safe pure nothrow @nogc
262 @system pure nothrow @nogc
278 @system pure nothrow @nogc
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/math/
H A Drounding.d45 real ceil(real x) @trusted pure nothrow @nogc
51 asm pure nothrow @nogc
71 asm pure nothrow @nogc
104 @safe pure nothrow @nogc unittest
121 double ceil(double x) @trusted pure nothrow @nogc
136 @safe pure nothrow @nogc unittest
153 float ceil(float x) @trusted pure nothrow @nogc
168 @safe pure nothrow @nogc unittest
188 real floor(real x) @trusted pure nothrow @nogc
194 asm pure nothro
[all...]
H A Dtrigonometry.d67 real cos(real x) @safe pure nothrow @nogc { return core.math.cos(x); }
70 double cos(double x) @safe pure nothrow @nogc { return core.math.cos(x); }
73 float cos(float x) @safe pure nothrow @nogc { return core.math.cos(x); }
91 @safe pure nothrow @nogc unittest
125 real sin(real x) @safe pure nothrow @nogc { return core.math.sin(x); }
128 double sin(double x) @safe pure nothrow @nogc { return core.math.sin(x); }
131 float sin(float x) @safe pure nothrow @nogc { return core.math.sin(x); }
153 @safe pure nothrow @nogc unittest
178 real tan(real x) @safe pure nothrow @nogc
190 double tan(double x) @safe pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/arpa/
H A Dinet.d71 @trusted pure
94 @trusted pure
117 @trusted pure
140 @trusted pure
163 @safe pure extern (D)
196 @trusted pure
219 @trusted pure
241 @safe pure extern (D)
274 @trusted pure
297 @trusted pure
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/
H A Dobject.d213 override string toString() const pure @safe nothrow
227 int function(scope const char[] s1, scope const char[] s2) @trusted pure nothrow @nogc);
270 @property size_t tsize() nothrow pure const @safe @nogc { return 0; }
286 @property inout(TypeInfo) next() nothrow pure inout @nogc { return null; }
294 abstract const(void)[] initializer() nothrow pure const @safe @nogc;
298 @property uint flags() nothrow pure const @safe @nogc { return 0; }
309 @property size_t talign() nothrow pure const @safe @nogc { return tsize; }
322 @property immutable(void)* rtInfo() nothrow pure const @safe @nogc { return null; }
341 override @property size_t tsize() nothrow pure const { return base.tsize; }
344 override @property inout(TypeInfo) next() nothrow pure inou
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Dbitop.d45 this(ulong u64) @safe pure nothrow @nogc
73 int bsf(uint v) pure
80 int bsf(ulong v) pure
121 int bsr(uint v) pure
128 int bsr(ulong v) pure
171 private int softScan(N, bool forward)(N v) pure
270 int bt(const scope size_t* p, size_t bitnum) pure @system
280 @system pure unittest
295 int btc(size_t* p, size_t bitnum) pure @system;
301 int btr(size_t* p, size_t bitnum) pure
[all...]
H A Dint128.d49 pure
63 pure
78 pure
98 pure
111 pure
124 pure
139 pure
155 pure
171 pure
198 pure
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/format/
H A Dread.d49 @safe pure unittest
63 @safe pure unittest
73 @safe pure unittest
100 @safe pure unittest
123 @safe pure unittest
147 @safe pure unittest
184 @safe pure unittest
313 @safe pure unittest
333 @safe pure unittest
346 @safe pure unittes
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dpostblit.d50 @safe nothrow pure unittest
56 ~this() @safe nothrow pure
61 this(this) @safe nothrow pure
74 ~this() @safe nothrow pure
79 this(this) @safe nothrow pure
87 ~this() @safe nothrow pure
92 this(this) @safe nothrow pure
106 ~this() @safe nothrow pure { order ~= "destroy outer"; }
107 this(this) @safe nothrow pure { order ~= "copy outer"; }
H A Datomic.d52 inout(T) atomicLoad(MemoryOrder order = MemoryOrder.seq, T)(inout(T)* src) pure nothrow @nogc @trusted
61 asm pure nothrow @nogc @trusted
91 asm pure nothrow @nogc @trusted
111 asm pure nothrow @nogc @trusted
135 asm pure nothrow @nogc @trusted
154 asm pure nothrow @nogc @trusted
169 void atomicStore(MemoryOrder order = MemoryOrder.seq, T)(T* dest, T value) pure nothrow @nogc @trusted
178 asm pure nothrow @nogc @trusted
198 asm pure nothrow @nogc @trusted
215 asm pure nothro
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/internal/
H A Dmemory.d19 can be considered pure because it causes the program to abort if the result
29 void* enforceMalloc()(size_t size) @nogc nothrow pure @safe
37 void* enforceCalloc()(size_t nmemb, size_t size) @nogc nothrow pure @safe
45 void* enforceRealloc()(return scope void* ptr, size_t size) @nogc nothrow pure @system
53 extern (C) @nogc nothrow pure private
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/
H A Dutils.d14 private auto gcStatsPure() nothrow pure
18 auto impureBypass = cast(GC.Stats function() pure nothrow)&GC.stats;
22 private ulong accumulatePure(string file, int line, string funcname, string name, ulong size) nothrow pure
33 auto func = cast(ulong function(string file, int line, string funcname, string name, ulong size) @nogc nothrow pure)&impureBypass;
50 * is temporarily declared `@trusted pure` until the implementation can be brought up to modern D expectations.
52 auto _d_HookTraceImpl(T, alias Hook, string errorMessage)(string file, int line, string funcname, Parameters!Hook parameters) @trusted pure
82 // `pure` and it does not influence the result of this hook.
H A Dcapacity.d12 // HACK: `nothrow` and `pure` is faked.
13 private extern (C) void[] _d_arraysetlengthT(const TypeInfo ti, size_t newlength, void[]* p) nothrow pure;
14 private extern (C) void[] _d_arraysetlengthiT(const TypeInfo ti, size_t newlength, void[]* p) nothrow pure;
37 * The safety level of this function is faked. It shows itself as `@trusted pure nothrow` to not break existing code.
39 size_t _d_arraysetlengthT(return scope ref Tarr arr, size_t newlength) @trusted pure nothrow
62 * is temporarily declared `@trusted pure nothrow` until the implementation can be brought up to modern D expectations.
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dxml.d141 bool isChar(dchar c) @safe @nogc pure nothrow // rule 2
165 @safe @nogc nothrow pure unittest
206 bool isSpace(dchar c) @safe @nogc pure nothrow
219 bool isDigit(dchar c) @safe @nogc pure nothrow
227 @safe @nogc nothrow pure unittest
244 bool isLetter(dchar c) @safe @nogc nothrow pure // rule 84
258 bool isIdeographic(dchar c) @safe @nogc nothrow pure
269 @safe @nogc nothrow pure unittest
293 bool isBaseChar(dchar c) @safe @nogc nothrow pure
307 bool isCombiningChar(dchar c) @safe @nogc nothrow pure
[all...]
H A Dencoding.d490 E peek() @safe pure @nogc nothrow { return s[0]; }
491 E read() @safe pure @nogc nothrow { E t = s[0]; s = s[1..$]; return t; }
497 E peek() @safe pure @nogc nothrow { return s[$-1]; }
498 E read() @safe pure @nogc nothrow { E t = s[$-1]; s = s[0..$-1]; return t; }
506 void write(E c) @safe pure nothrow { s ~= c; }
511 void write(E c) @safe pure @nogc nothrow { array[0] = c; array = array[1..$]; }
530 void skip() @safe pure @nogc nothrow { skipViaRead(); }
536 dchar decode() @safe pure @nogc nothrow { return decodeViaRead(); }
542 dchar safeDecode() @safe pure @nogc nothrow { return safeDecodeViaRead(); }
548 dchar decodeReverse() @safe pure
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/typeinfo/
H A Dti_C.d22 //pure:
61 override @property size_t tsize() nothrow pure
71 override @property uint flags() nothrow pure

Completed in 158 milliseconds

1234567891011>>