Searched refs:oob_distance (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_test_utils.h75 string RightOOBErrorMessage(int oob_distance, bool is_write);
76 string RightOOBWriteMessage(int oob_distance);
77 string RightOOBReadMessage(int oob_distance);
78 string LeftOOBErrorMessage(int oob_distance, bool is_write);
79 string LeftOOBWriteMessage(int oob_distance);
80 string LeftOOBReadMessage(int oob_distance);
81 string LeftOOBAccessMessage(int oob_distance);
H A Dasan_test.cc708 string RightOOBErrorMessage(int oob_distance, bool is_write) { argument
709 assert(oob_distance >= 0);
719 oob_distance);
723 string RightOOBWriteMessage(int oob_distance) { argument
724 return RightOOBErrorMessage(oob_distance, /*is_write*/true);
727 string RightOOBReadMessage(int oob_distance) { argument
728 return RightOOBErrorMessage(oob_distance, /*is_write*/false);
732 string LeftOOBErrorMessage(int oob_distance, bool is_write) { argument
733 assert(oob_distance > 0);
743 oob_distance);
747 LeftOOBWriteMessage(int oob_distance) argument
751 LeftOOBReadMessage(int oob_distance) argument
755 LeftOOBAccessMessage(int oob_distance) argument
[all...]

Completed in 349 milliseconds