OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:minDepth
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/PerformanceTests/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/chromium_org/third_party/WebKit/PerformanceTests/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
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/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js
15
var
minDepth
= 1024; // A random large number, the depth of a
32
} else if (
minDepth
> tempDepth) {
33
minDepth
= tempDepth;
43
depths[1] =
minDepth
;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js
19
var
minDepth
= 1024; // A random large number, the depth of a
36
} else if (
minDepth
> tempDepth) {
37
minDepth
= tempDepth;
47
depths[1] =
minDepth
;
background.js
173
current_.
minDepth
= 0;
387
current_.
minDepth
= depths[1];
options.js
460
obj.displayMinDepth = obj.
minDepth
;
/external/chromium_org/third_party/WebKit/Source/core/xml/
XPathNodeSet.cpp
49
unsigned
minDepth
= UINT_MAX;
52
if (
minDepth
> depth)
53
minDepth
= depth;
57
unsigned commonAncestorDepth =
minDepth
;
77
if (commonAncestorDepth ==
minDepth
) {
Completed in 103 milliseconds