• Home
  • Raw
  • Download

Lines Matching refs:tmp

37     valarray<double> tmp;  in transcendentals()  local
38 tmp = abs(darray); in transcendentals()
39 tmp = acos(darray); in transcendentals()
40 tmp = asin(darray); in transcendentals()
41 tmp = atan(darray); in transcendentals()
42 tmp = atan2(darray, tmp); in transcendentals()
43 tmp = atan2(1.0, darray); in transcendentals()
44 tmp = atan2(darray, 1.0); in transcendentals()
45 tmp = cos(darray); in transcendentals()
46 tmp = cosh(darray); in transcendentals()
47 tmp = sin(darray); in transcendentals()
48 tmp = sinh(darray); in transcendentals()
49 tmp = tan(darray); in transcendentals()
51 tmp = tanh(darray); in transcendentals()
53 tmp = exp(darray); in transcendentals()
54 tmp = log(darray); in transcendentals()
55 tmp = log10(darray); in transcendentals()
56 tmp = pow(darray, tmp); in transcendentals()
57 tmp = pow(1.0, darray); in transcendentals()
58 tmp = pow(darray, 1.0); in transcendentals()
59 tmp = sqrt(darray); in transcendentals()
63 valarray<float> tmp; in transcendentals() local
64 tmp = abs(farray); in transcendentals()
65 tmp = acos(farray); in transcendentals()
66 tmp = asin(farray); in transcendentals()
67 tmp = atan(farray); in transcendentals()
68 tmp = atan2(farray, tmp); in transcendentals()
69 tmp = atan2(1.0f, farray); in transcendentals()
70 tmp = atan2(farray, 1.0f); in transcendentals()
71 tmp = cos(farray); in transcendentals()
72 tmp = cosh(farray); in transcendentals()
73 tmp = sin(farray); in transcendentals()
74 tmp = sinh(farray); in transcendentals()
75 tmp = tan(farray); in transcendentals()
77 tmp = tanh(farray); in transcendentals()
79 tmp = exp(farray); in transcendentals()
80 tmp = log(farray); in transcendentals()
81 tmp = log10(farray); in transcendentals()
82 tmp = pow(farray, tmp); in transcendentals()
83 tmp = pow(1.0f, farray); in transcendentals()
84 tmp = pow(farray, 1.0f); in transcendentals()
85 tmp = sqrt(farray); in transcendentals()
90 valarray<long double> tmp; in transcendentals() local
91 tmp = abs(ldarray); in transcendentals()
92 tmp = acos(ldarray); in transcendentals()
93 tmp = asin(ldarray); in transcendentals()
94 tmp = atan(ldarray); in transcendentals()
95 tmp = atan2(ldarray, tmp); in transcendentals()
96 tmp = atan2(1.0l, ldarray); in transcendentals()
97 tmp = atan2(ldarray, 1.0l); in transcendentals()
98 tmp = cos(ldarray); in transcendentals()
99 tmp = cosh(ldarray); in transcendentals()
100 tmp = sin(ldarray); in transcendentals()
101 tmp = sinh(ldarray); in transcendentals()
102 tmp = tan(ldarray); in transcendentals()
104 tmp = tanh(ldarray); in transcendentals()
106 tmp = exp(ldarray); in transcendentals()
107 tmp = log(ldarray); in transcendentals()
108 tmp = log10(ldarray); in transcendentals()
109 tmp = pow(ldarray, tmp); in transcendentals()
110 tmp = pow(1.0l, ldarray); in transcendentals()
111 tmp = pow(ldarray, 1.0l); in transcendentals()
112 tmp = sqrt(ldarray); in transcendentals()