Searched refs:rtree (Results 1 - 12 of 12) sorted by relevance

/external/skia/tests/
H A DRTreeTest.cpp84 SkRTree* rtree = SkRTree::Create(MIN_CHILDREN, MAX_CHILDREN); local
85 SkAutoUnref au(rtree);
86 REPORTER_ASSERT(reporter, NULL != rtree);
110 rtree->insert(rects[i].data, rects[i].rect, true);
112 rtree->flushDeferredInserts();
113 runQueries(reporter, rand, rects, *rtree);
114 REPORTER_ASSERT(reporter, NUM_RECTS == rtree->getCount());
115 REPORTER_ASSERT(reporter, expectedDepthMin <= rtree->getDepth() &&
116 expectedDepthMax >= rtree->getDepth());
117 rtree
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree_perf.tcl5 ifcapable !rtree {
26 set sql2 {CREATE VIRTUAL TABLE rtree USING rtree(ii, x1, x2, y1, y2)}
46 puts -nonewline "Inserting into rtree... "
52 db eval {INSERT INTO rtree VALUES($ii, $x1, $x2, $y1, $y2)}
67 puts -nonewline "Selecting from rtree... "
71 db eval {SELECT * FROM rtree WHERE x1<$x1 AND x2>$x2 AND y1<$y1 AND y2>$y2}
H A Dviewrtree.tcl40 WHERE type='table' AND sql LIKE '%virtual%table%using%rtree%'
/external/chromium_org/third_party/sqlite/src/tool/
H A Dmksqlite3h.tcl68 # Process the src/sqlite.h.in ext/rtree/sqlite3rtree.h files.
70 foreach file [list $TOP/src/sqlite.h.in $TOP/ext/rtree/sqlite3rtree.h] {
H A Dmksqlite3c.tcl104 rtree.h
308 rtree.c
/external/chromium_org/third_party/sqlite/src/
H A DMakefile.vxworks193 -I$(TOP)/ext/rtree -I$(TOP)/ext/icu -I$(TOP)/ext/fts3 \
210 random.o resolve.o rowset.o rtree.o select.o status.o \
343 $(TOP)/ext/rtree/rtree.h \
344 $(TOP)/ext/rtree/rtree.c
447 $(TOP)/ext/rtree/rtree.h
592 rtree.o: $(TOP)/ext/rtree/rtre
[all...]
H A Dmain.mk48 TCCX += -I$(TOP)/ext/rtree -I$(TOP)/ext/icu -I$(TOP)/ext/fts3
65 random.o resolve.o rowset.o rtree.o select.o status.o \
211 $(TOP)/ext/rtree/rtree.h \
212 $(TOP)/ext/rtree/rtree.c
361 $(TOP)/ext/rtree/rtree.h
514 rtree.o: $(TOP)/ext/rtree/rtre
[all...]
H A DMakefile.in29 TCC = @CC@ @CPPFLAGS@ @CFLAGS@ -I. -I${TOP}/src -I${TOP}/ext/rtree
177 random.lo resolve.lo rowset.lo rtree.lo select.lo status.lo \
325 $(TOP)/ext/rtree/rtree.h \
326 $(TOP)/ext/rtree/rtree.c
467 $(TOP)/ext/rtree/rtree.h
471 $(TOP)/ext/rtree/sqlite3rtree.h
847 rtree
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java347 public DocumentFragment rtree(XPathContext support) method in class:XObject
376 public DocumentFragment rtree() method in class:XObject
515 // result = rtree(support);
/external/chromium_org/third_party/jemalloc/chromium/
H A Djemalloc.c2411 * We leak the rtree here, since there's no generic base
2422 malloc_rtree_get(malloc_rtree_t *rtree, uintptr_t key) argument
2429 malloc_spin_lock(&rtree->lock);
2430 for (i = lshift = 0, height = rtree->height, node = rtree->root;
2433 bits = rtree->level2bits[i];
2437 malloc_spin_unlock(&rtree->lock);
2443 bits = rtree->level2bits[i];
2446 malloc_spin_unlock(&rtree->lock);
2452 malloc_rtree_set(malloc_rtree_t *rtree, uintptr_ argument
[all...]
/external/chromium_org/third_party/jemalloc/vendor/
H A Djemalloc.c2400 * We leak the rtree here, since there's no generic base
2411 malloc_rtree_get(malloc_rtree_t *rtree, uintptr_t key) argument
2418 malloc_spin_lock(&rtree->lock);
2419 for (i = lshift = 0, height = rtree->height, node = rtree->root;
2422 bits = rtree->level2bits[i];
2426 malloc_spin_unlock(&rtree->lock);
2432 bits = rtree->level2bits[i];
2435 malloc_spin_unlock(&rtree->lock);
2441 malloc_rtree_set(malloc_rtree_t *rtree, uintptr_ argument
[all...]
/external/skia/gm/
H A Dgmmain.cpp767 * @param renderModeDescriptor e.g., "-rtree", "-deferred"
1350 DEFINE_bool(rtree, true, "Exercise the R-Tree variant of SkPicture test pass.");
1639 const char renderModeDescriptor[] = "-rtree";

Completed in 439 milliseconds