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/bionic/
H A Ddlmalloc.c273 check cannot die with an "assert" or even print an informative
306 version of the assert macro causes malloc to be called, which will
1079 assert(malloc_usable_size(p) >= 256);
1289 #define assert(x) if(!(x)) ABORT macro
1291 #include <assert.h>
1294 #define assert(x) macro
2722 assert((is_aligned(chunk2mem(p))) || (p->head == FENCEPOST_HEAD));
2723 assert(ok_address(m, p));
2730 assert(sp != 0);
2731 assert((is_aligne
[all...]

Completed in 368 milliseconds