HomeSort by relevance Sort by last modified time
    Searched defs:det_1 (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTVector.cpp 268 VERTTYPE det_1; local
287 det_1 = pos + neg;
290 if (det_1 == f2vt(0.0)) //|| (VERTTYPEABS(det_1 / (pos - neg)) < 1.0e-15)
298 //det_1 = 1.0 / det_1;
299 det_1 = VERTTYPEDIV(f2vt(1.0f), det_1);
300 out.f[ 0] = VERTTYPEMUL(( VERTTYPEMUL(f[ 5], f[10]) - VERTTYPEMUL(f[ 9], f[ 6]) ), det_1);
301 out.f[ 1] = - VERTTYPEMUL(( VERTTYPEMUL(f[ 1], f[10]) - VERTTYPEMUL(f[ 9], f[ 2]) ), det_1);
    [all...]
PVRTMatrixF.cpp 258 double det_1; local
277 det_1 = pos + neg;
280 if ((det_1 == 0.0) || (PVRTABS(det_1 / (pos - neg)) < 1.0e-15))
289 det_1 = 1.0 / det_1;
290 mDummyMatrix.f[ 0] = ( mIn.f[ 5] * mIn.f[10] - mIn.f[ 9] * mIn.f[ 6] ) * (float)det_1;
291 mDummyMatrix.f[ 1] = - ( mIn.f[ 1] * mIn.f[10] - mIn.f[ 9] * mIn.f[ 2] ) * (float)det_1;
292 mDummyMatrix.f[ 2] = ( mIn.f[ 1] * mIn.f[ 6] - mIn.f[ 5] * mIn.f[ 2] ) * (float)det_1;
293 mDummyMatrix.f[ 4] = - ( mIn.f[ 4] * mIn.f[10] - mIn.f[ 8] * mIn.f[ 6] ) * (float)det_1;
    [all...]
PVRTMatrixX.cpp 263 int det_1; local
282 det_1 = pos + neg;
285 if (det_1 == 0)
294 //det_1 = 1.0 / det_1;
295 det_1 = PVRTXDIV(PVRTF2X(1.0f), det_1);
296 mDummyMatrix.f[ 0] = PVRTXMUL(( PVRTXMUL(mIn.f[ 5], mIn.f[10]) - PVRTXMUL(mIn.f[ 9], mIn.f[ 6]) ), det_1);
297 mDummyMatrix.f[ 1] = - PVRTXMUL(( PVRTXMUL(mIn.f[ 1], mIn.f[10]) - PVRTXMUL(mIn.f[ 9], mIn.f[ 2]) ), det_1);
298 mDummyMatrix.f[ 2] = PVRTXMUL(( PVRTXMUL(mIn.f[ 1], mIn.f[ 6]) - PVRTXMUL(mIn.f[ 5], mIn.f[ 2]) ), det_1);
    [all...]
  /prebuilts/ndk/r11/sources/android/ndk_helper/
vecmath.cpp 118 float det_1; local
153 det_1 = pos + neg;
155 if( det_1 == 0.0 )
161 det_1 = 1.0f / det_1;
162 ret.f_[0] = (f_[5] * f_[10] - f_[9] * f_[6]) * det_1;
163 ret.f_[1] = -(f_[1] * f_[10] - f_[9] * f_[2]) * det_1;
164 ret.f_[2] = (f_[1] * f_[6] - f_[5] * f_[2]) * det_1;
165 ret.f_[4] = -(f_[4] * f_[10] - f_[8] * f_[6]) * det_1;
166 ret.f_[5] = (f_[0] * f_[10] - f_[8] * f_[2]) * det_1;
    [all...]
  /prebuilts/ndk/r13/sources/android/ndk_helper/
vecmath.cpp 118 float det_1; local
153 det_1 = pos + neg;
155 if( det_1 == 0.0 )
161 det_1 = 1.0f / det_1;
162 ret.f_[0] = (f_[5] * f_[10] - f_[9] * f_[6]) * det_1;
163 ret.f_[1] = -(f_[1] * f_[10] - f_[9] * f_[2]) * det_1;
164 ret.f_[2] = (f_[1] * f_[6] - f_[5] * f_[2]) * det_1;
165 ret.f_[4] = -(f_[4] * f_[10] - f_[8] * f_[6]) * det_1;
166 ret.f_[5] = (f_[0] * f_[10] - f_[8] * f_[2]) * det_1;
    [all...]

Completed in 230 milliseconds