Home | History | Annotate | Download | only in Analysis

Lines Matching refs:memcmp

11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
321 // memcmp()
329 #define memcmp bcmp
333 #define memcmp BUILTIN(memcmp)
334 int memcmp(const void *s1, const void *s2, size_t n);
343 memcmp(a, b, 4); // no-warning
350 memcmp(a, b, 5); // expected-warning{{out-of-bound}}
357 memcmp(a, b, 4); // expected-warning{{out-of-bound}}
363 if (memcmp(a, a, 4))
370 if (memcmp(a, input, 4))
377 if (memcmp(a, 0, 0)) // no-warning
379 if (memcmp(0, a, 0)) // no-warning
381 if (memcmp(a, input, 0)) // no-warning
386 int result = memcmp(a, b, n);
395 return memcmp(a, &a[x*y], n) +
396 memcmp(&a[x*y], a, n);