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.
111 HideValueFromCompiler(calloc(kTooBigAllocSize, 1))));
148 // The tests bellow check for overflows in new[] and calloc().
204 // Call calloc(), eventually free the memory and return whether or not
205 // calloc() did succeed.
208 static_cast<char*>(calloc(nmemb, size)));
210 // optimize away the call to calloc() entirely and assume
215 // Test if calloc() can overflow.
224 // It's also ok for calloc to just terminate the process.