/external/jemalloc/test/unit/ |
rtree.c | 22 rtree_t rtree; local 23 assert_false(rtree_new(&rtree, i, node_alloc, node_dalloc), 25 assert_ptr_null(rtree_get(&rtree, 0, false), 27 rtree_delete(&rtree); 38 rtree_t rtree; local 39 assert_false(rtree_new(&rtree, i, node_alloc, node_dalloc), 42 assert_false(rtree_set(&rtree, 0, &node_a), 44 assert_ptr_eq(rtree_get(&rtree, 0, true), &node_a, 47 assert_false(rtree_set(&rtree, ~((uintptr_t)0), &node_b), 49 assert_ptr_eq(rtree_get(&rtree, ~((uintptr_t)0), true), &node_b 65 rtree_t rtree; local 106 rtree_t rtree; local [all...] |
/external/skia/tests/ |
RTreeTest.cpp | 56 DEF_TEST(RTree, reporter) { 76 SkRTree rtree; local 77 REPORTER_ASSERT(reporter, 0 == rtree.getCount()); 83 rtree.insert(rects.get(), NUM_RECTS); 86 run_queries(reporter, rand, rects, rtree); 87 REPORTER_ASSERT(reporter, NUM_RECTS == rtree.getCount()); 88 REPORTER_ASSERT(reporter, expectedDepthMin <= rtree.getDepth() && 89 expectedDepthMax >= rtree.getDepth());
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XObject.java | 347 public DocumentFragment rtree(XPathContext support) method in class:XObject 376 public DocumentFragment rtree() method in class:XObject 515 // result = rtree(support);
|