OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Splay
(Results
1 - 7
of
7
) sorted by null
/external/v8/src/
splay-tree-inl.h
8
#include "src/
splay
-tree.h"
28
//
Splay
on the key to move the last node on the search path
30
Splay
(key);
65
Splay
(key);
92
//
Splay
on the key to move the node with the given key or the last
94
Splay
(key);
116
//
Splay
on the key to move the node with the given key or the last
118
Splay
(key);
166
Splay
(new_key);
200
//
Splay
to make sure that the new root has an empty right child
[
all
...]
splay-tree.h
14
// A
splay
tree. The config type parameter encapsulates the different
15
// configurations of a concrete
splay
tree:
94
// Perform the
splay
operation for the given key. Moves the node with
98
void
Splay
(const Key& key);
/external/skia/tests/
ColorPrivTest.cpp
7
DEF_TEST(
Splay
, r) {
/external/v8/benchmarks/
splay.js
32
// used for old nodes. Because of the way
splay
trees work, the engine
36
var
Splay
= new BenchmarkSuite('
Splay
', 81491, [
37
new Benchmark("
Splay
", SplayRun, SplaySetup, SplayTearDown)
92
// used by the
splay
tree no matter how we exit the
97
// Verify that the
splay
tree has the right size.
100
throw new Error("
Splay
tree has wrong size");
103
// Verify that the
splay
tree has sorted, unique keys.
106
throw new Error("
Splay
tree not sorted");
113
// Replace a few nodes in the
splay
tree
[
all
...]
/external/v8/benchmarks/spinning-balls/
splay-tree.js
29
* Constructs a
Splay
tree. A
splay
tree is a self-balancing binary
70
//
Splay
on the key to move the last node on the search path for
112
//
Splay
to make sure that the new root has an empty right child.
161
//
Splay
on the key to move the node with the given key or the last
189
* Perform the
splay
operation for the given key. Moves the node with
195
* @param {number} key Key to
splay
the tree on.
261
* Constructs a
Splay
tree node.
/external/v8/tools/
splaytree.js
30
* Constructs a
Splay
tree. A
splay
tree is a self-balancing binary
72
//
Splay
on the key to move the last node on the search path for
114
//
Splay
to make sure that the new root has an empty right child.
178
//
Splay
on the key to move the node with the given key or the last
215
* Perform the
splay
operation for the given key. Moves the node with
221
* @param {number} key Key to
splay
the tree on.
307
* Constructs a
Splay
tree node.
/external/ImageMagick/MagickCore/
splay-tree.c
42
% This module implements the standard handy
splay
-tree methods for storing and
58
#include "MagickCore/
splay
-tree.h"
140
% AddValueToSplayTree() adds the given key and value to the
splay
-tree. Both
151
% o splay_tree: the
splay
-tree info.
238
% BalanceSplayTree() balances the
splay
-tree.
246
% o splay_tree: the
splay
-tree info.
320
% CloneSplayTree() clones the
splay
tree.
329
% o splay_tree: the
splay
tree.
332
% whenever a key is added to the
splay
-tree.
335
% whenever a value object is added to the
splay
-tree
[
all
...]
Completed in 168 milliseconds