Home | History | Annotate | Download | only in v8-v6

Lines Matching refs:TO

13 //       contributors may be used to endorse or promote products derived
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 // by the V8 profiler to generate execution time profiles for runs of
33 // also has to deal with a lot of changes to the large tree object
86 // Allow the garbage collector to reclaim the memory
121 * elements are quick to access again. It performs basic operations
131 * Pointer to the root node of the tree.
152 * @param {number} key Key to insert into the tree.
153 * @param {*} value Value to insert into the tree.
160 // Splay on the key to move the last node on the search path for
161 // the key to the root of the tree.
185 * @param {number} key Key to find and remove from the tree.
202 // Splay to make sure that the new root has an empty right child.
216 * @param {number} key Key to find in the tree.
251 // Splay on the key to move the node with the given key or the last
252 // node on the search path to the top of the tree.
280 * the given key to the top of the tree. If no node has the given
281 * key, the last node on the search path is moved to the top of the
285 * @param {number} key Key to splay the tree on.