Lines Matching defs:Limit
127 // Crash on a single malloc that exceeds the rss limit.
133 Printf(" To change the out-of-memory limit use -rss_limit_mb=<N>\n\n");
313 "==%lu== ERROR: libFuzzer: out-of-memory (used: %zdMb; limit: %zdMb)\n",
315 Printf(" To change the out-of-memory limit use -rss_limit_mb=<N>\n\n");
542 const size_t Limit = 64;
545 // Compare first and last Limit/2 bytes.
546 return !memcmp(A, B, Limit / 2) &&
547 !memcmp(A + Size - Limit / 2, B + Size - Limit / 2, Limit / 2);