HomeSort by: relevance | last modified time | path
    Searched refs:safe (Results 1 - 25 of 706) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/apache2/openssl/dist/doc/
perlvars.pm 14 $OpenSSL::safe::opt_v_synopsis = ""
45 $OpenSSL::safe::opt_v_item = ""
60 $OpenSSL::safe::opt_x_synopsis = ""
67 $OpenSSL::safe::opt_x_item = ""
76 $OpenSSL::safe::opt_name_synopsis = ""
78 $OpenSSL::safe::opt_name_item = ""
85 $OpenSSL::safe::opt_r_synopsis = ""
88 $OpenSSL::safe::opt_r_item = ""
94 $OpenSSL::safe::opt_provider_synopsis = ""
99 $OpenSSL::safe::opt_provider_item = "
    [all...]
  /src/crypto/external/bsd/openssl/dist/doc/
perlvars.pm 14 $OpenSSL::safe::opt_v_synopsis = ""
45 $OpenSSL::safe::opt_v_item = ""
60 $OpenSSL::safe::opt_x_synopsis = ""
67 $OpenSSL::safe::opt_x_item = ""
76 $OpenSSL::safe::opt_name_synopsis = ""
78 $OpenSSL::safe::opt_name_item = ""
85 $OpenSSL::safe::opt_r_synopsis = ""
88 $OpenSSL::safe::opt_r_item = ""
94 $OpenSSL::safe::opt_provider_synopsis = ""
98 $OpenSSL::safe::opt_provider_item = "
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
rd_safe.c 41 KRB_SAFE *safe)
51 c = safe->cksum;
52 safe->cksum.cksumtype = 0;
53 safe->cksum.checksum.data = NULL;
54 safe->cksum.checksum.length = 0;
56 ASN1_MALLOC_ENCODE(KRB_SAFE, buf, buf_size, safe, &len, ret);
80 safe->cksum = c;
93 KRB_SAFE safe; local
107 /* if these fields are not present in the safe-part, silently
112 ret = decode_KRB_SAFE (inbuf->data, inbuf->length, &safe, &len)
    [all...]
  /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/src/std/
typetuple.d 22 @safe unittest
35 @safe unittest
bigint.d 128 @safe unittest
174 pure @safe unittest
184 this(T)(T x) pure nothrow @safe if (isIntegral!T)
191 @safe unittest
199 this(T)(T x) pure nothrow @safe if (is(immutable T == immutable BigInt))
205 @safe unittest
213 BigInt opAssign(T)(T x) pure nothrow @safe if (isIntegral!T)
221 @safe unittest
229 BigInt opAssign(T:BigInt)(T x) pure @nogc @safe
237 @safe unittes
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/logger/
nulllogger.d 23 this(const LogLevel lv = LogLevel.all) @safe
29 override protected void writeLogMsg(ref LogEntry payload) @safe @nogc
35 @safe unittest
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
tests2.d 12 @safe unittest
19 @safe unittest
27 @safe unittest
35 @safe unittest
44 @safe unittest
59 @safe unittest
72 @safe unittest
103 @safe unittest
146 @safe unittest
228 @safe unittes
    [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/stdcpp/
array.d 61 size_type size() const @safe { return N; }
67 size_type max_size() const @safe { return N; }
69 bool empty() const @safe { return N == 0; }
72 ref inout(T) front() inout @safe { static if (N > 0) { return this[0]; } else { return as_array()[][0]; /* HACK: force OOB */ } }
74 ref inout(T) back() inout @safe { static if (N > 0) { return this[N-1]; } else { return as_array()[][0]; /* HACK: force OOB */ } }
79 inout(T)* data() inout @safe { return &_Elems[0]; }
81 ref inout(T)[N] as_array() inout @safe { return _Elems[0 .. N]; }
83 ref inout(T) at(size_type i) inout @safe { return _Elems[0 .. N][i]; }
91 inout(T)* data() inout @safe { static if (N > 0) { return &_M_elems[0]; } else { return null; } }
xutility.d 162 this(int) nothrow @nogc @safe;
163 ~this() nothrow @nogc @safe;
174 void _Orphan_all()() nothrow @nogc @safe {}
175 void _Swap_all()(ref _Container_base0) nothrow @nogc @safe {}
181 void _Adopt()(const(void)*) nothrow @nogc @safe {}
182 const(_Container_base0)* _Getcont()() const nothrow @nogc @safe { return null; }
196 inout(_Iterator_base12*)*_Getpfirst()() inout nothrow @nogc @safe
200 void _Orphan_all()() nothrow @nogc @safe
237 void _Adopt()(_Container_base12 *_Parent) nothrow @nogc @safe
266 void _Clrcont()() nothrow @nogc @safe
    [all...]
string_view.d 86 size_type size() const @safe { return __size; }
88 bool empty() const @safe { return __size == 0; }
91 const(T)* data() const @safe { return __data; }
99 ref const(T) front() const @safe { return this[0]; }
101 ref const(T) back() const @safe { return this[$-1]; }
  /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/internal/
postblit.d 50 @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"; }
134 @safe unittes
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
rootobject.d 41 this() nothrow pure @nogc @safe
63 DYNCAST dyncast() const nothrow pure @nogc @safe
hash.d 17 uint calcHash(scope const(char)[] data) @nogc nothrow pure @safe
23 uint calcHash(scope const(ubyte)[] data) @nogc nothrow pure @safe
74 size_t mixHash(size_t h, size_t k) @nogc nothrow pure @safe
  /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
  /src/external/mpl/bind/dist/lib/isc/
safe.c 1 /* $NetBSD: safe.c,v 1.7 2025/01/26 16:25:38 christos Exp $ */
18 #include <isc/safe.h>
  /src/external/mpl/dhcp/bind/dist/lib/isc/
safe.c 1 /* $NetBSD: safe.c,v 1.1 2024/02/18 20:57:50 christos Exp $ */
18 #include <isc/safe.h>
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/
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/src/std/math/
trigonometry.d 67 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); }
76 @safe unittest
85 @safe unittest
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); }
134 @safe unittes
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
slist.d 22 @safe unittest
83 private ref inout(Node*) _first() @property @safe nothrow pure inout
270 @safe unittest
322 @safe unittest
648 @safe unittest
680 @safe unittest
696 @safe unittest
703 @safe unittest
710 @safe unittest
718 @safe unittes
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/darwin/mach/
nlist.d 139 extern(D) ubyte GET_COMM_ALIGN(uint n_desc) @safe
145 extern(D) ref ushort SET_COMM_ALIGN(return ref ushort n_desc, size_t wanted_align) @safe
223 ubyte GET_LIBRARY_ORDINAL(uint n_desc) @safe { return ((n_desc) >> 8) & 0xff; }
225 ref ushort SET_LIBRARY_ORDINAL(return ref ushort n_desc, uint ordinal) @safe
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/
common.d 35 ) nothrow @nogc @safe

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>