Home | History | Annotate | Download | only in base

Lines Matching full:calloc

34 // as something we don't need (see the comment with calloc below).
78 // The sanitizers' calloc dies on OOM instead of returning NULL.
113 HideValueFromCompiler(calloc(kTooBigAllocSize, 1))));
150 // The tests bellow check for overflows in new[] and calloc().
206 // Call calloc(), eventually free the memory and return whether or not
207 // calloc() did succeed.
210 static_cast<char*>(calloc(nmemb, size)));
212 // optimize away the call to calloc() entirely and assume
217 // Test if calloc() can overflow.
226 // It's also ok for calloc to just terminate the process.