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

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_offset.c 69 float inv_det = 1.0f / header->det; local
89 float dzdx = fabsf(a * inv_det);
90 float dzdy = fabsf(b * inv_det);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.h 83 struct brw_reg inv_det; member in struct:brw_sf_compile
  /external/opencv/cv/src/
cvposit.cpp 297 float inv_det; local
310 inv_det = 1 / det;
319 b[k] = (p00 * a0 + p01 * a1 + p02 * a2) * inv_det;
320 b[n + k] = (p01 * a0 + p11 * a1 + p12 * a2) * inv_det;
321 b[2 * n + k] = (p02 * a0 + p12 * a1 + p22 * a2) * inv_det;

Completed in 648 milliseconds