Symbol: ASSERT
common/lib/libc/misc/ubsan.c
50
#define ASSERT(x) KASSERT(x)
common/lib/libc/misc/ubsan.c
71
#define ASSERT(x) _DIAGASSERT(x)
common/lib/libc/misc/ubsan.c
74
#define ASSERT(x) assert(x)
lib/libbsdmalloc/malloc.c
138
#define ASSERT(p) if (!(p)) botch(__STRING(p))
lib/libbsdmalloc/malloc.c
174
#define ASSERT(p) ((void)sizeof((long)(p)))
libexec/ld.elf_so/xmalloc.c
148
#define ASSERT(p) if (!(p)) botch("p")
libexec/ld.elf_so/xmalloc.c
156
#define ASSERT(p)
sys/altq/altq_var.h
131
#define ASSERT(e) ((e) ? (void)0 : altq_assert(__FILE__, __LINE__, #e))
sys/altq/altq_var.h
133
#define ASSERT(e) ((e) ? (void)0 : altq_assert(__FILE__, __LINE__, "e"))
sys/altq/altq_var.h
136
#define ASSERT(e) ((void)0)
sys/arch/amd64/stand/prekern/prekern.h
44
#define ASSERT(a) if (!(a)) fatal("ASSERT: " #a);
sys/arch/hpcmips/stand/pbsdboot/palette.c
50
#define ASSERT(a) \
sys/arch/shark/shark/scr.c
169
#define ASSERT(f) do { if (!(f)) { DEBUGGER;} }while(0)
sys/arch/shark/shark/scr.c
173
#define ASSERT(f)
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
67
#define ASSERT KASSERT
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
73
#define ASSERT assert
sys/dev/pci/ixgbe/ixgbe_osdep.h
57
#define ASSERT(x) if (!(x)) panic("IXGBE: x")
sys/kern/subr_thmap.c
133
#define ASSERT KASSERT
sys/lib/libkern/entpool.c
79
#define ASSERT KASSERT
sys/lib/libkern/entpool.c
86
#define ASSERT assert
sys/net/npf/lpm.c
73
#define ASSERT assert
sys/net/npf/lpm.c
75
#define ASSERT(x)
tests/kernel/t_proccwd.c
107
#define ASSERT(x) do { if (!(x)) _exit(EXIT_FAILURE); } while (0)
tests/kernel/t_zombie.c
86
#define ASSERT(x) \
tests/lib/libc/stdlib/h_atexit.c
55
#define ASSERT(expr) \
tests/lib/libpthread/h_atexit.c
60
#define ASSERT(expr) \