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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Rotation.java 232 double[][] ort = orthogonalizeMatrix(m, threshold); local
235 double det = ort[0][0] * (ort[1][1] * ort[2][2] - ort[2][1] * ort[1][2]) -
236 ort[1][0] * (ort[0][1] * ort[2][2] - ort[2][1] * ort[0][2])
    [all...]
  /external/opencv3/modules/calib3d/src/
dls.h 92 double *d, *e, *ort; member in class:EigenvalueDecomposition
615 ort[i] = H[i][m - 1] / scale;
616 h += ort[i] * ort[i];
619 if (ort[m] > 0) {
622 h = h - ort[m] * g;
623 ort[m] = ort[m] - g;
631 f += ort[i] * H[i][j];
635 H[i][j] -= f * ort[i]
    [all...]
  /external/dhcpcd-6.8.2/
ipv4.c 368 nc_route(struct rt *ort, struct rt *nrt)
377 desc_route(ort == NULL ? "adding" : "changing", nrt);
379 if (ort == NULL) {
380 ort = ipv4_findrt(nrt->iface->ctx, nrt, 0);
381 if (ort &&
382 ((ort->flags & RTF_REJECT && nrt->flags & RTF_REJECT) ||
383 (ort->iface == nrt->iface &&
385 ort->metric == nrt->metric &&
387 ort->gate.s_addr == nrt->gate.s_addr)))
389 } else if (ort->flags & STATE_FAKE && !(nrt->flags & STATE_FAKE) &
    [all...]
ipv6.c     [all...]
  /external/opencv3/modules/core/src/
lda.cpp 254 double *d, *e, *ort; member in class:cv::EigenvalueDecomposition
777 ort[i] = H[i][m - 1] / scale;
778 h += ort[i] * ort[i];
781 if (ort[m] > 0) {
784 h = h - ort[m] * g;
785 ort[m] = ort[m] - g;
793 f += ort[i] * H[i][j];
797 H[i][j] -= f * ort[i]
    [all...]

Completed in 442 milliseconds