Lines Matching refs:farray
62 valarray<float> farray; 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()