Searched refs:findPath (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_bvgraph_test.cc96 if (g.findPath(from, target, path, len) == len)
199 EXPECT_EQ(g.findPath(f0, target, path, ARRAY_SIZE(path)), 3U);
203 EXPECT_EQ(g.findPath(f1, target, path, ARRAY_SIZE(path)), 2U);
254 EXPECT_EQ(g.findPath(start, target, path, g.size()), i - start + 1);
284 EXPECT_EQ(0U, g.findPath(1, t7, path, 1));
286 EXPECT_EQ(2U, g.findPath(1, t7, path, 2));
287 EXPECT_EQ(2U, g.findPath(1, t7, path, 3));
288 EXPECT_EQ(2U, g.findPath(1, t7, path, 4));
289 EXPECT_EQ(2U, g.findPath(1, t7, path, 5));
290 EXPECT_EQ(2U, g.findPath(
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { function
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
144 // Same as findPath, but finds a shortest path.
148 if (findPath(from, targets, path, p) == p)
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_bvgraph.h126 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { function
136 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
142 // Same as findPath, but finds a shortest path.
146 if (findPath(from, targets, path, p) == p)
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_bvgraph.h127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { function
137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
143 // Same as findPath, but finds a shortest path.
147 if (findPath(from, targets, path, p) == p)

Completed in 101 milliseconds