HomeSort by: relevance | last modified time | path
    Searched defs:oom (Results 1 - 7 of 7) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/test/integration/
mallocx.c 46 * potential OOM on e.g. 32-bit Windows.
60 "Expected OOM for mallocx(size=%#zx, 0)", largemax+1);
63 "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
66 "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
69 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
76 bool oom; local
85 oom = false;
89 oom = true;
92 assert_true(oom,
93 "Expected OOM during series of calls to mallocx(size=%zu, 0)"
    [all...]
  /src/external/bsd/jemalloc/dist/test/integration/
mallocx.c 46 * potential OOM on e.g. 32-bit Windows.
70 "Expected OOM for mallocx(size=%#zx, 0)", largemax+1);
73 "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
76 "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
79 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
118 bool oom; local
127 oom = false;
131 oom = true;
134 expect_true(oom,
135 "Expected OOM during series of calls to mallocx(size=%zu, 0)"
    [all...]
smallocx.c 66 * potential OOM on e.g. 32-bit Windows.
90 "Expected OOM for smallocx(size=%#zx, 0)", largemax+1);
93 "Expected OOM for smallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
96 "Expected OOM for smallocx(size=%#zx, 0)", SIZE_T_MAX);
99 "Expected OOM for smallocx(size=1, MALLOCX_ALIGN(%#zx))",
142 bool oom; local
151 oom = false;
155 oom = true;
158 expect_true(oom,
159 "Expected OOM during series of calls to smallocx(size=%zu, 0)"
    [all...]
  /src/external/bsd/jemalloc/dist/src/
hpa.c 92 bool *oom) {
103 *oom = false;
111 *oom = true;
137 *oom = true;
144 *oom = true;
154 *oom = true;
558 bool *oom) {
562 *oom = true;
616 *oom = true;
627 bool *oom, size_t nallocs, edata_list_active_t *results
651 bool oom = false; local
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
mem.c 237 #define CHECK_OOM(ptr, size) (void)((ptr != NULL) || (oom(size), false))
240 oom(size_t size) { function
  /src/external/public-domain/sqlite/dist/
shell.c 3677 char oom; /* True if an OOM is encountered */ member in struct:Decimal
3714 p->oom = 0;
3881 if( p==0 || p->oom ){
3942 if( p==0 || p->oom ){
4064 p->oom = 1;
4090 if( pA->oom || pB==0 || pB->oom ){
4091 pA->oom = 1;
4108 if( pA->oom || pB->oom )
    [all...]
sqlite3.c 11933 ** If some other error occurs (e.g. an OOM condition), an SQLite error code
11967 ** If some other error occurs (e.g. an OOM condition), an SQLite error code
11995 ** If some other error occurs (e.g. an OOM condition), an SQLite error code
13111 ** an OOM condition or IO error), an appropriate SQLite error code is
13125 ** an OOM condition or IO error), an appropriate SQLite error code is
13231 ** If an error (e.g. an OOM condition) occurs within this function,
19734 u8 earlyCleanup; /* OOM inside sqlite3ParserAddCleanup() */
203536 u8 oom; \/* Set to true if out of memory *\/ member in struct:JsonParse
    [all...]

Completed in 71 milliseconds