HomeSort by relevance Sort by last modified time
    Searched refs:Inc (Results 1 - 25 of 1260) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/misc/math/float/exp_log/
genexp.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = log(exp(1) / 10);
52 tabR[i] = exp((Inc * i) + Inc);
72 double tabD[20000], Inc;
79 Inc = log(exp(1) / 10);
82 tabD[i] = (Inc * i) + Inc;
genlog.c 16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 double tabR[20000], Inc;
48 Inc = exp(1) / 10;
51 tabR[i] = log((Inc * i) + Inc);
71 double tabD[20000], Inc;
78 Inc = exp(1) / 10;
81 tabD[i] = (Inc * i) + Inc;
genlog10.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1) / 10;
52 tabR[i] = log10((Inc * i) + Inc);
72 double tabD[20000], Inc;
79 Inc = exp(1) / 10;
82 tabD[i] = (Inc * i) + Inc;
genmodf.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
50 double tabR[20000], Inc, tabRI[20000];
59 Inc = log(exp(1) / 10);
62 TestInputValue = ((Inc * i) + Inc);
64 // tabR[i] = modf( ((Inc*i) + Inc), &tabRI[i]);
93 double tabD[20000], Inc;
100 Inc = log(exp(1) / 10);
103 tabD[i] = (Inc * i) + Inc
    [all...]
genfrexp.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc, Val;
50 Inc = exp(1);
53 Val = Inc * (i + 1);
79 double tabD[20000], Inc;
86 Inc = exp(1);
89 tabD[i] = (Inc * i) + Inc;
genhypot.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabR[20000], Inc;
51 Inc = (2 * M_PIl) / nbVal;
54 tabR[i] = hypot(cos(Inc * i), sin(Inc * i));
74 double tabD[20000], Inc;
81 Inc = (2 * M_PIl) / nbVal;
84 tabD[i] = (Inc * i);
  /external/ltp/testcases/misc/math/float/iperb/
gencosh.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1) / 100;
52 tabR[i] = cosh((Inc * i) + Inc);
72 double tabD[20000], Inc;
79 Inc = exp(1) / 100;
82 tabD[i] = (Inc * i) + Inc;
gensinh.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1) / 100;
52 tabR[i] = sinh(Inc * (i - nbVal / 2));
72 double tabD[20000], Inc;
79 Inc = exp(1) / 100;
82 tabD[i] = Inc * (i - nbVal / 2);
gentanh.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1) / 100;
52 tabR[i] = tanh(Inc * (i - nbVal / 2));
72 double tabD[20000], Inc;
79 Inc = exp(1) / 100;
82 tabD[i] = Inc * (i - nbVal / 2);
  /external/ltp/testcases/misc/math/float/power/
genceil.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 double tabR[20000], Inc;
48 Inc = exp(1);
51 tabR[i] = ceil((Inc * i) + Inc);
71 double tabD[20000], Inc;
78 Inc = exp(1);
81 tabD[i] = (Inc * i) + Inc;
genfloor.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 double tabR[20000], Inc;
48 Inc = exp(1);
51 tabR[i] = floor((Inc * i) + Inc);
71 double tabD[20000], Inc;
78 Inc = exp(1);
81 tabD[i] = (Inc * i) + Inc;
gensqrt.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 double tabR[20000], Inc;
49 Inc = exp(2);
50 tabR[i] = sqrt(Inc * i + Inc);
77 double tabD[20000], Inc;
84 Inc = exp(2);
87 tabD[i] = (Inc * i) + Inc;
  /external/ltp/testcases/misc/math/float/trigo/
genatan2.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRatan2[20000], Inc;
51 Inc = (2 * M_PIl) / nbVal;
54 tabRatan2[i] = atan2(sin(Inc * i), cos(Inc * i));
75 double tabD[20000], Inc;
82 Inc = (2 * M_PIl) / nbVal;
85 tabD[i] = (Inc * i);
gentan.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRtan[20000], Inc;
51 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
54 if ((Inc * i) != (M_PIl / 2))
55 tabRtan[i] = tan(Inc * i);
78 double tabDtan[20000], Inc;
85 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
88 if ((Inc * i) != (M_PIl / 2))
89 tabDtan[i] = (Inc * i);
genacos.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRacos[20000], Inc;
51 Inc = 2 / nbVal;
54 tabRacos[i] = acos((Inc * i) - 1);
74 double tabDacos[20000], Inc;
81 Inc = 2 / nbVal;
84 tabDacos[i] = -1 + (Inc * i);
genasin.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRasin[20000], Inc;
51 Inc = 2 / nbVal;
54 tabRasin[i] = asin((Inc * i) - 1);
74 double tabDasin[20000], Inc;
81 Inc = 2 / nbVal;
84 tabDasin[i] = (Inc * i) - 1;
genatan.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRatan[20000], Inc;
51 Inc = 2 / nbVal;
54 tabRatan[i] = atan((Inc * i) - 1);
74 double tabDatan[20000], Inc;
81 Inc = 2 / nbVal;
84 tabDatan[i] = (Inc * i) - 1;
gencos.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRcos[20000], Inc;
51 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
54 tabRcos[i] = cos(Inc * i);
74 double tabDcos[20000], Inc;
81 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
84 tabDcos[i] = (Inc * i);
gensin.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
44 double tabRsin[20000], Inc;
51 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
54 tabRsin[i] = sin(Inc * i);
74 double tabDsin[20000], Inc;
81 Inc = (2 * M_PIl) / nbVal; /* condering a period of 2 pi rad */
84 tabDsin[i] = (Inc * i);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21709.go 13 func (s *S) Inc() {} // ERROR "\(\*S\).Inc s does not escape"
20 s.Inc, // ERROR "F1 s.Inc does not escape" "s escapes to heap"
32 s.Inc, // ERROR "F2 s.Inc does not escape" "s escapes to heap"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue21709.go 13 func (s *S) Inc() {} // ERROR "\(\*S\).Inc s does not escape"
20 s.Inc, // ERROR "F1 s.Inc does not escape" "s escapes to heap"
32 s.Inc, // ERROR "F2 s.Inc does not escape" "s escapes to heap"
  /external/ltp/testcases/misc/math/float/bessel/
genj0.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1);
52 tabR[i] = j0(Inc * i);
73 double tabD[20000], Inc;
80 Inc = exp(1);
83 tabD[i] = (Inc * i);
genj1.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = exp(1);
52 tabR[i] = j1(Inc * i);
73 double tabD[20000], Inc;
80 Inc = exp(1);
83 tabD[i] = (Inc * i);
geny0.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = sqrt(2);
52 tabR[i] = y0(Inc * i);
73 double tabD[20000], Inc;
80 Inc = sqrt(2);
83 tabD[i] = (Inc * i);
geny1.c 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
42 double tabR[20000], Inc;
49 Inc = sqrt(2);
52 tabR[i] = y1(Inc * i);
73 double tabD[20000], Inc;
80 Inc = sqrt(2);
83 tabD[i] = (Inc * i);

Completed in 177 milliseconds

1 2 3 4 5 6 7 8 91011>>