| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| d-system.h | 29 /* Forward assert invariants to gcc_assert. */ 30 #undef assert macro 31 #define assert(EXPR) gcc_assert(EXPR) macro
|
| /src/usr.sbin/rpc.pcnfsd/ |
| common.h | 176 #define assert(ex) {if (!(ex)) \ macro
|
| /src/external/bsd/openldap/dist/include/ac/ |
| assert.h | 1 /* $NetBSD: assert.h,v 1.4 2025/09/05 21:16:20 christos Exp $ */ 3 /* Generic assert.h */ 22 #undef assert macro 29 #include <assert.h> 36 * no assert()... must be a very old compiler. 45 #define assert(test) \ macro 48 #define assert(test) \ macro 56 #define assert(test) ((void)0) macro
|
| /src/external/gpl2/groff/dist/src/include/ |
| assert.h | 1 /* $NetBSD: assert.h,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */ 35 #undef assert macro 38 #define assert(ignore) /* as nothing */ macro 40 #define assert(expr) do_assert(expr, __LINE__, __FILE__) macro
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| assert.h | 5 "fixinc/tests/inc/assert.h" 35 #define assert(EX) ((EX) ? (void)0 : __assert(#EX, __FILE__, __LINE__)) macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| assert.h | 5 "fixinc/tests/inc/assert.h" 35 #define assert(EX) ((EX) ? (void)0 : __assert(#EX, __FILE__, __LINE__)) macro
|
| /src/external/mpl/bind/dist/bin/tests/system/dnssec/ |
| dnssec_update_test.pl | 54 sub assert { subroutine 76 assert($rcode eq $expected, "expected $expected, got $rcode");
|
| /src/external/mpl/bind/dist/bin/tests/system/nsupdate/ |
| update_test.pl | 59 sub assert { subroutine 81 assert($rcode eq $expected, "expected $expected, got $rcode"); 341 assert($db_soa->mname eq "mname1"); 350 assert($db_soa->mname eq "mname1"); 358 assert($db_soa->mname eq "mname1"); 374 assert($ttl == 300, "incorrect TTL value $ttl != 300"); 380 assert($ttl == 301, "incorrect TTL value $ttl != 301"); 390 assert($ttl == 302, "incorrect TTL value $ttl != 302"); 402 assert($nanswers == 3, "wrong number of answers $nanswers != 3"); 405 assert($ttl == 303, "incorrect TTL value $ttl != 303") [all...] |
| /src/include/ |
| assert.h | 1 /* $NetBSD: assert.h,v 1.27 2025/03/29 01:43:38 riastradh Exp $ */ 36 * @(#)assert.h 8.2 (Berkeley) 1/21/94 40 * Unlike other ANSI header files, <assert.h> may usefully be included 48 #undef assert macro 51 # define assert(e) (__static_cast(void,0)) macro 54 # define assert(e) \ macro 58 # define assert(e) \ macro
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| assert.h | 5 * Define a custom assert() in order to reduce the chances of deadlock during 8 #ifndef assert 9 #define assert(e) do { \ macro 49 /* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| assert.h | 5 * Define a custom assert() in order to reduce the chances of deadlock during 8 #ifndef assert 9 #define assert(e) do { \ macro 49 /* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| assert.h | 5 * Define a custom assert() in order to reduce the chances of deadlock during 8 #ifndef assert 9 #define assert(e) do { \ macro 49 /* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| assert.h | 5 * Define a custom assert() in order to reduce the chances of deadlock during 8 #ifndef assert 9 #define assert(e) do { \ macro 49 /* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
| /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/ |
| support.scm | 22 ;; Symbolic values for the ARG parameter of assert-type. 29 (define-public (assert-type test-result arg pos func-name expecting)
|
| /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/ |
| support.scm | 22 ;; Symbolic values for the ARG parameter of assert-type. 29 (define-public (assert-type test-result arg pos func-name expecting)
|
| /src/libexec/ld.elf_so/ |
| rtldenv.h | 66 # define assert(cond) ((cond) ? (void) 0 : xassert(__FILE__, __LINE__, #cond)) macro 68 # define assert(cond) (void) 0 macro 71 # include <assert.h> 83 # define xassert assert
|
| /src/external/bsd/zstd/dist/contrib/linux-kernel/ |
| zstd_deps.h | 79 * assert() 87 #define assert(x) WARN_ON(!(x)) macro
|
| /src/external/bsd/zstd/dist/lib/common/ |
| debug.h | 18 * They regroup assert(), DEBUGLOG() and RAWLOG() for run-time, 23 * Level 1 enables assert() only. 40 /* static assert is triggered at compile time, leaving no runtime artefact. 41 * static assert only works with compile-time constants. 56 * 1 : enables assert() only, no display 73 # ifndef assert /* assert may be already defined, due to prior #include <assert.h> */ 74 # define assert(condition) ((void)0) /* disable assert (default) * macro [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/ryu/ |
| common.h | 30 assert(v < 1000000000); function 47 assert(e >= 0); 48 assert(e <= 3528); 57 assert(e >= 0); 58 assert(e <= 3528); 70 assert(e >= 0); 71 assert(e <= 1650); 78 assert(e >= 0); 79 assert(e <= 2620);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/ryu/ |
| common.h | 30 assert(v < 1000000000); function 47 assert(e >= 0); 48 assert(e <= 3528); 57 assert(e >= 0); 58 assert(e <= 3528); 70 assert(e >= 0); 71 assert(e <= 1650); 78 assert(e >= 0); 79 assert(e <= 2620);
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| FunctionSummary.h | 69 assert(I != Map.end()); 99 assert(ID < TotalIDs); function
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| GlobalTypeTableBuilder.h | 73 assert(RecordSize < UINT32_MAX && "Record too big"); function 74 assert(RecordSize % 4 == 0 && 92 assert(Result.first->second.getIndex() ==
|
| /src/sys/arch/acorn32/stand/lib/ |
| rmreloc.c | 60 #define assert(x) /* nothing */ macro 126 assert(dynp->d_un.d_val == sizeof(Elf_Rel));
|
| /src/external/bsd/libfido2/dist/examples/ |
| assert.c | 35 fprintf(stderr, "usage: assert [-t es256|es384|rs256|eddsa] " 46 fido_assert_t *assert = NULL; local 123 if ((assert = fido_assert_new()) == NULL) 127 r = fido_assert_set_clientdata(assert, cd, sizeof(cd)); 132 r = fido_assert_set_rp(assert, "localhost"); 137 r = fido_assert_set_count(assert, 1); 140 r = fido_assert_set_authdata(assert, 0, authdata_ptr, authdata_len); 145 r = fido_assert_set_extensions(assert, ext); 151 if (up && (r = fido_assert_set_up(assert, FIDO_OPT_TRUE)) != FIDO_OK) 155 if (uv && (r = fido_assert_set_uv(assert, FIDO_OPT_TRUE)) != FIDO_OK 182 fido_assert_t *assert = NULL; local [all...] |
| /src/external/bsd/libfido2/dist/tools/ |
| assert_verify.c | 27 fido_assert_t *assert = NULL; local 55 if ((assert = fido_assert_new()) == NULL) 57 if ((r = fido_assert_set_count(assert, 1)) != FIDO_OK) 60 if ((r = fido_assert_set_clientdata_hash(assert, cdh.ptr, 62 (r = fido_assert_set_rp(assert, rpid)) != FIDO_OK || 63 (r = fido_assert_set_authdata(assert, 0, authdata.ptr, 65 (r = fido_assert_set_sig(assert, 0, sig.ptr, sig.len)) != FIDO_OK) 69 if ((r = fido_assert_set_up(assert, FIDO_OPT_TRUE)) != FIDO_OK) 73 if ((r = fido_assert_set_uv(assert, FIDO_OPT_TRUE)) != FIDO_OK) 77 if ((r = fido_assert_set_extensions(assert, 154 fido_assert_t *assert = NULL; local [all...] |