Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / tests / benchmarks / declarative / holistic / data / jsImports / mlbsi9.js
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 // This JavaScript file is a single, large, imported script.
43 // It doesn't import any other scripts.
44 // It is imported from another script.
45
46 function testFunc(seedValue) {
47     var retn = 5;
48     retn += (seedValue * 0.945);
49     var firstFactor = calculateFirstFactor(seedValue);
50     var secondFactor = calculateSecondFactor(seedValue);
51     var modificationTerm = calculateModificationTerm(seedValue);
52
53     // do some regexp matching
54     var someString = "This is a random string which we'll perform regular expression matching on to reduce considerably.  This is meant to be part of a complex javascript expression whose evaluation takes considerably longer than the creation cost of QScriptValue.";
55     var regexpPattern = new RegExp("is", "i");
56     var regexpOutputLength = 0;
57     var temp = regexpPattern.exec(someString);
58     while (temp == "is") {
59         regexpOutputLength += 4;
60         regexpOutputLength *= 2;
61         temp = regexpPattern.exec(someString);
62         if (regexpOutputLength > (seedValue * 3)) {
63             temp = "break";
64         }
65     }
66
67     // spin in a for loop for a while
68     var i = 0;
69     var j = 0;
70     var cumulativeTotal = 3;
71     for (i = 20; i > 1; i--) {
72         for (j = 31; j > 5; j--) {
73             var branchVariable = i + j;
74             if (branchVariable % 3 == 0) {
75                 cumulativeTotal -= secondFactor;
76             } else {
77                 cumulativeTotal += firstFactor;
78             }
79
80             if (cumulativeTotal > (seedValue * 50)) {
81                 break;
82             }
83         }
84     }
85     retn *= (1 + (cumulativeTotal * 0.001));
86     retn *= (1 + (3.1415962 / seedValue));
87     retn /= 2.41497;
88     retn -= (seedValue * -1);
89     return retn;
90 }
91
92 function calculateFirstFactor(seedValue) {
93     var firstFactor = (0.45 * (9.3 / 3.1) - 0.90);
94     firstFactor *= (1 + (0.00009 / seedValue));
95     return firstFactor;
96 }
97
98 function calculateSecondFactor(seedValue) {
99     var secondFactor = 0.78 * (6.3 / 2.1) - (0.39 * 4);
100     secondFactor *= (1 + (0.00009 / seedValue));
101     return secondFactor;
102 }
103
104 function calculateModificationTerm(seedValue) {
105     var modificationTerm = (12 + (9*7) - 54 + 16 - ((calculateFirstFactor(seedValue) * seedValue) / 3) + (4*calculateSecondFactor(seedValue) * seedValue * 1.33)) + (calculateSecondFactor(seedValue) * seedValue);
106     modificationTerm = modificationTerm + (33/2) + 19 - (9*2) - (61*3) + 177;
107     return modificationTerm;
108 }