Searched defs:assert (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/include/
H A Dassert.h1 /* $OpenBSD: assert.h,v 1.12 2006/01/31 10:53:51 hshoexer Exp $ */
2 /* $NetBSD: assert.h,v 1.6 1994/10/26 00:55:44 cgd Exp $ */
37 * @(#)assert.h 8.2 (Berkeley) 1/21/94
41 * Unlike other ANSI header files, <assert.h> may usefully be included
47 #undef assert macro
51 # define assert(e) ((void)0) macro
54 # define _assert(e) assert(e)
56 # define assert(e) ((e) ? (void)0 : __assert2(__FILE__, __LINE__, __func__, #e)) macro
58 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) macro
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c308 check cannot die with an "assert" or even print an informative
341 version of the assert macro causes malloc to be called, which will
1258 assert(malloc_usable_size(p) >= 256);
1445 #undef assert macro
1446 #define assert(x) if(!(x)) ABORT macro
1448 #include <assert.h>
1451 #ifndef assert
1452 #define assert(x) macro
1845 assert(*sl != 0);
1923 assert(l
[all...]

Completed in 79 milliseconds