Searched refs:interval_tree_iter_first (Results 1 – 4 of 4) sorted by relevance
| /openbmc/qemu/tests/unit/ |
| H A D | test-interval-tree.c | 35 g_assert(interval_tree_iter_first(&root, 0, UINT64_MAX) == NULL); in test_empty() 46 g_assert(interval_tree_iter_first(&root, 0, 9) == &nodes[0]); in test_find_one_point() 48 g_assert(interval_tree_iter_first(&root, 0, 0) == NULL); in test_find_one_point() 50 g_assert(interval_tree_iter_first(&root, 0, 1) == &nodes[0]); in test_find_one_point() 51 g_assert(interval_tree_iter_first(&root, 1, 1) == &nodes[0]); in test_find_one_point() 52 g_assert(interval_tree_iter_first(&root, 1, 2) == &nodes[0]); in test_find_one_point() 53 g_assert(interval_tree_iter_first(&root, 2, 2) == NULL); in test_find_one_point() 72 find0 = interval_tree_iter_first(&root, 0, 9); in test_find_two_point() 81 g_assert(interval_tree_iter_first(&root, 0, 9) == &nodes[0]); in test_find_two_point() 95 g_assert(interval_tree_iter_first(&root, 0, 9) == &nodes[0]); in test_find_one_range() [all …]
|
| /openbmc/qemu/include/qemu/ |
| H A D | interval-tree.h | 83 IntervalTreeNode *interval_tree_iter_first(IntervalTreeRoot *root,
|
| /openbmc/qemu/util/ |
| H A D | interval-tree.c | 795 IntervalTreeNode *interval_tree_iter_first(IntervalTreeRoot *root, in interval_tree_iter_first() function
|
| /openbmc/qemu/tcg/ |
| H A D | optimize.c | 158 IntervalTreeNode *r = interval_tree_iter_first(&ctx->mem_copy, s, l); in mem_copy_first()
|