Home
last modified time | relevance | path

Searched refs:SQRTF (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/mesa/main/
Dimports.h102 #define SQRTF(X) (float) sqrt((float) (X)) macro
108 #define INV_SQRTF(X) (1.0F / SQRTF(X))
Dmacros.h707 return SQRTF(LEN_SQUARED_3FV(v)); in LEN_3FV()
713 return SQRTF(LEN_SQUARED_2FV(v)); in LEN_2FV()
Dlight.c1041 ctx->_ModelViewInvScale = (GLfloat) SQRTF(f); in update_modelview_scale()
/external/llvm/test/Transforms/InstCombine/
Dpow-1.ll74 ; CHECK-NEXT: [[SQRTF:%[a-z0-9]+]] = call float @sqrtf(float %x) [[NUW_RO]]
75 ; CHECK-NEXT: [[FABSF:%[a-z0-9]+]] = call float @fabsf(float [[SQRTF]]) [[NUW_RO]]
/external/mesa3d/src/mesa/swrast/
Ds_aalinetemp.h121 line.len = SQRTF(line.dx * line.dx + line.dy * line.dy); in NAME()
Ds_span.c422 GLfloat x = SQRTF(dudx * dudx + dvdx * dvdx); in _swrast_compute_lambda()
423 GLfloat y = SQRTF(dudy * dudy + dvdy * dvdy); in _swrast_compute_lambda()
Ds_texfilter.c1798 numSamples = ceil(SQRTF(Px2)); in sample_2d_footprint()
1803 numSamples = ceil(SQRTF(Py2)); in sample_2d_footprint()
/external/mesa3d/src/mesa/tnl/
Dt_rasterpos.c432 SQRTF( eye[0]*eye[0] + eye[1]*eye[1] + eye[2]*eye[2] ); in _tnl_RasterPos()
/external/mesa3d/src/mesa/math/
Dm_matrix.c859 const GLfloat mag = SQRTF(x * x + y * y + z * z); in _math_matrix_rotate()