| /netbsd-src/crypto/external/bsd/openssl/dist/doc/ |
| H A D | 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 …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| H A D | rd_safe.c | 41 KRB_SAFE *safe) in verify_checksum() argument 51 c = safe->cksum; in verify_checksum() 52 safe->cksum.cksumtype = 0; in verify_checksum() 53 safe->cksum.checksum.data = NULL; in verify_checksum() 54 safe->cksum.checksum.length = 0; in verify_checksum() 56 ASN1_MALLOC_ENCODE(KRB_SAFE, buf, buf_size, safe, &len, ret); in verify_checksum() 80 safe->cksum = c; in verify_checksum() 93 KRB_SAFE safe; in krb5_rd_safe() local 112 ret = decode_KRB_SAFE (inbuf->data, inbuf->length, &safe, &len); in krb5_rd_safe() 115 if (safe.pvno != 5) { in krb5_rd_safe() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
| H A D | 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 unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/linux/ |
| H A D | perf_event.d | 499 @property ulong disabled() @safe pure nothrow @nogc const in disabled() 505 @property void disabled(ulong v) @safe pure nothrow @nogc in disabled() 519 @property ulong inherit() @safe pure nothrow @nogc const in inherit() 525 @property void inherit(ulong v) @safe pure nothrow @nogc in inherit() 539 @property ulong pinned() @safe pure nothrow @nogc const in pinned() 545 @property void pinned(ulong v) @safe pure nothrow @nogc in pinned() 559 @property ulong exclusive() @safe pure nothrow @nogc const in exclusive() 565 @property void exclusive(ulong v) @safe pure nothrow @nogc in exclusive() 579 @property ulong exclude_user() @safe pure nothrow @nogc const in exclude_user() 585 @property void exclude_user(ulong v) @safe pure nothrow @nogc in exclude_user() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | xml.d | 141 bool isChar(dchar c) @safe @nogc pure nothrow // rule 2 in isChar() 165 @safe @nogc nothrow pure unittest 206 bool isSpace(dchar c) @safe @nogc pure nothrow in isSpace() 219 bool isDigit(dchar c) @safe @nogc pure nothrow in isDigit() 227 @safe @nogc nothrow pure unittest 244 bool isLetter(dchar c) @safe @nogc nothrow pure // rule 84 in isLetter() 258 bool isIdeographic(dchar c) @safe @nogc nothrow pure in isIdeographic() 269 @safe @nogc nothrow pure unittest 293 bool isBaseChar(dchar c) @safe @nogc nothrow pure in isBaseChar() 307 bool isCombiningChar(dchar c) @safe @nogc nothrow pure in isCombiningChar() [all …]
|
| H A D | encoding.d | 490 E peek() @safe pure @nogc nothrow { return s[0]; } in EncoderFunctions() 491 E read() @safe pure @nogc nothrow { E t = s[0]; s = s[1..$]; return t; } in EncoderFunctions() 497 E peek() @safe pure @nogc nothrow { return s[$-1]; } in EncoderFunctions() 498 E read() @safe pure @nogc nothrow { E t = s[$-1]; s = s[0..$-1]; return t; } in EncoderFunctions() 506 void write(E c) @safe pure nothrow { s ~= c; } in EncoderFunctions() 511 void write(E c) @safe pure @nogc nothrow { array[0] = c; array = array[1..$]; } in EncoderFunctions() 530 void skip() @safe pure @nogc nothrow { skipViaRead(); } in EncoderFunctions() 536 dchar decode() @safe pure @nogc nothrow { return decodeViaRead(); } in EncoderFunctions() 542 dchar safeDecode() @safe pure @nogc nothrow { return safeDecodeViaRead(); } in EncoderFunctions() 548 dchar decodeReverse() @safe pure @nogc nothrow { return decodeReverseViaRead(); } in EncoderFunctions() [all …]
|
| H A D | 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 unittest [all …]
|
| H A D | sumtype.d | 3 design-by-introspection to generate safe and efficient code. Its features 8 * Full attribute correctness (`pure`, `@safe`, `@nogc`, and `nothrow` are 10 * A type-safe and memory-safe API compatible with DIP 1000 (`scope`). 22 @safe unittest 89 @safe unittest 251 () nothrow @safe { hashOf(T.init); } 839 @safe unittest 848 @safe unittest 857 @safe unittest 867 @safe unittest [all …]
|
| H A D | meta.d | 92 @safe unittest 104 @safe unittest 114 @safe unittest 182 @safe unittest 196 @safe unittest 241 @safe unittest 270 @safe unittest 282 @safe unittest 319 @safe unittest 326 @safe unittest [all …]
|
| H A D | uuid.d | 101 @safe unittest 136 @safe pure nothrow @nogc Char toChar(Char)(size_t i) const in toChar() 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) 289 @safe unittest 296 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | xml.d | 138 bool isChar(dchar c) @safe @nogc pure nothrow // rule 2 in isChar() 162 @safe @nogc nothrow pure unittest 203 bool isSpace(dchar c) @safe @nogc pure nothrow in isSpace() 216 bool isDigit(dchar c) @safe @nogc pure nothrow in isDigit() 224 @safe @nogc nothrow pure unittest 241 bool isLetter(dchar c) @safe @nogc nothrow pure // rule 84 in isLetter() 255 bool isIdeographic(dchar c) @safe @nogc nothrow pure in isIdeographic() 266 @safe @nogc nothrow pure unittest 290 bool isBaseChar(dchar c) @safe @nogc nothrow pure in isBaseChar() 304 bool isCombiningChar(dchar c) @safe @nogc nothrow pure in isCombiningChar() [all …]
|
| H A D | encoding.d | 432 E peek() @safe pure @nogc nothrow { return s[0]; } in EncoderFunctions() 433 E read() @safe pure @nogc nothrow { E t = s[0]; s = s[1..$]; return t; } in EncoderFunctions() 439 E peek() @safe pure @nogc nothrow { return s[$-1]; } in EncoderFunctions() 440 E read() @safe pure @nogc nothrow { E t = s[$-1]; s = s[0..$-1]; return t; } in EncoderFunctions() 448 void write(E c) @safe pure nothrow { s ~= c; } in EncoderFunctions() 453 void write(E c) @safe pure @nogc nothrow { array[0] = c; array = array[1..$]; } in EncoderFunctions() 472 void skip() @safe pure @nogc nothrow { skipViaRead(); } in EncoderFunctions() 478 dchar decode() @safe pure @nogc nothrow { return decodeViaRead(); } in EncoderFunctions() 484 dchar safeDecode() @safe pure @nogc nothrow { return safeDecodeViaRead(); } in EncoderFunctions() 490 dchar decodeReverse() @safe pure @nogc nothrow { return decodeReverseViaRead(); } in EncoderFunctions() [all …]
|
| H A D | meta.d | 87 @safe unittest 99 @safe unittest 114 @safe unittest 197 @safe unittest 211 @safe unittest 258 @safe unittest 285 @safe unittest 325 @safe unittest 363 @safe unittest 393 @safe unittest [all …]
|
| H A D | uuid.d | 101 @safe unittest 136 @safe pure nothrow @nogc Char toChar(Char)(size_t i) const in toChar() 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) 289 @safe unittest 296 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/ |
| H A D | trigonometry.d | 67 real cos(real x) @safe pure nothrow @nogc { return core.math.cos(x); } in pragma() 70 double cos(double x) @safe pure nothrow @nogc { return core.math.cos(x); } in pragma() 73 float cos(float x) @safe pure nothrow @nogc { return core.math.cos(x); } in pragma() 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); } in pragma() 128 double sin(double x) @safe pure nothrow @nogc { return core.math.sin(x); } in pragma() 131 float sin(float x) @safe pure nothrow @nogc { return core.math.sin(x); } in pragma() 134 @safe unittest [all …]
|
| H A D | algebraic.d | 64 @safe pure nothrow @nogc unittest 75 @safe pure nothrow @nogc unittest 85 @safe pure nothrow @nogc unittest 98 @safe pure nothrow @nogc unittest 104 @safe unittest 129 real fabs(real x) @safe pure nothrow @nogc { return core.math.fabs(x); } in pragma() 133 double fabs(double x) @safe pure nothrow @nogc { return core.math.fabs(x); } in pragma() 137 float fabs(float x) @safe pure nothrow @nogc { return core.math.fabs(x); } in pragma() 140 @safe unittest 157 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdcpp/ |
| H A D | xutility.d | 162 this(int) nothrow @nogc @safe; in version() 163 ~this() nothrow @nogc @safe; in version() 174 void _Orphan_all()() nothrow @nogc @safe {} in version() 175 void _Swap_all()(ref _Container_base0) nothrow @nogc @safe {} in version() 181 void _Adopt()(const(void)*) nothrow @nogc @safe {} in version() 182 const(_Container_base0)* _Getcont()() const nothrow @nogc @safe { return null; } in version() 196 inout(_Iterator_base12*)*_Getpfirst()() inout nothrow @nogc @safe in version() 200 void _Orphan_all()() nothrow @nogc @safe in version() 237 void _Adopt()(_Container_base12 *_Parent) nothrow @nogc @safe in version() 266 void _Clrcont()() nothrow @nogc @safe in version() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| H A D | slist.d | 22 @safe unittest 82 private ref inout(Node*) _first() @property @safe nothrow pure inout in SList() 214 @safe unittest in SList() 266 @safe unittest in SList() 594 @safe unittest 610 @safe unittest 617 @safe unittest 624 @safe unittest 632 @safe unittest 640 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | slist.d | 22 @safe unittest 83 private ref inout(Node*) _first() @property @safe nothrow pure inout in inout() 270 @safe unittest 322 @safe unittest 648 @safe unittest 680 @safe unittest 696 @safe unittest 703 @safe unittest 710 @safe unittest 718 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/ |
| H A D | tests.d | 15 @safe unittest 57 @safe unittest 470 @safe unittest 477 @safe unittest 485 @safe unittest 493 @safe unittest 502 @safe unittest 517 @safe unittest 530 @safe unittest 561 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/ |
| H A D | read.d | 49 @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 unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
| H A D | postblit.d | 50 @safe nothrow pure unittest 56 ~this() @safe nothrow pure in ~this() 61 this(this) @safe nothrow pure in this() 74 ~this() @safe nothrow pure in ~this() 79 this(this) @safe nothrow pure in this() 87 ~this() @safe nothrow pure in ~this() 92 this(this) @safe nothrow pure in this() 106 ~this() @safe nothrow pure { order ~= "destroy outer"; } in ~this() 107 this(this) @safe nothrow pure { order ~= "copy outer"; } in this() 134 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
| H A D | primitives.d | 172 @safe unittest 223 @safe unittest 289 @safe unittest 409 @safe pure nothrow @nogc unittest 463 pure @safe unittest 470 @safe pure unittest 477 @safe unittest 489 @safe unittest 498 @safe unittest 506 @safe unittest [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/range/ |
| H A D | primitives.d | 180 @safe unittest 231 @safe unittest 311 @safe unittest 439 @safe pure unittest 465 @safe pure nothrow unittest 483 @safe pure unittest 493 @safe pure nothrow unittest 503 @safe pure nothrow @nogc unittest 557 pure @safe unittest 564 @safe pure unittest [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | SafeStack.rst | 14 the safe stack and the unsafe stack. The safe stack stores return addresses, 15 register spills, and local variables that are always accessed in a safe way, 18 on the safe stack. 36 used through multiple stack frames. Moving such objects away from the safe 56 changed to look for the live pointers on both safe and unsafe stacks. 64 ``__attribute__((no_sanitize("safe-stack")))`` below). 72 are always accessed in a safe way by separating them in a dedicated safe stack 73 region. The safe stack is automatically protected against stack-based buffer 75 is always accessed in a safe way. In the current implementation, the safe stack 77 randomization and information hiding: the safe stack is allocated at a random [all …]
|