OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minDepth
(Results
1 - 3
of
3
) sorted by null
/external/webkit/SunSpider/tests/sunspider-0.9/
access-binary-trees.js
32
var
minDepth
= 4;
33
var maxDepth = Math.max(
minDepth
+ 2, n);
39
for (var depth=
minDepth
; depth<=maxDepth; depth+=2){
40
var iterations = 1 << (maxDepth - depth +
minDepth
);
/external/webkit/SunSpider/tests/sunspider-0.9.1/
access-binary-trees.js
32
var
minDepth
= 4;
33
var maxDepth = Math.max(
minDepth
+ 2, n);
39
for (var depth=
minDepth
; depth<=maxDepth; depth+=2){
40
var iterations = 1 << (maxDepth - depth +
minDepth
);
/external/webkit/WebCore/xml/
XPathNodeSet.cpp
47
unsigned
minDepth
= UINT_MAX;
50
if (
minDepth
> depth)
51
minDepth
= depth;
55
unsigned commonAncestorDepth =
minDepth
;
75
if (commonAncestorDepth ==
minDepth
) {
Completed in 107 milliseconds