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

  /dalvik/tests/088-monitor-verification/src/
Main.java 58 m.triplet(obj1, obj2, 0);
59 System.out.println("triplet ok");
204 public void triplet(Object obj1, Object obj2, int x) { method in class:Main
  /external/ceres-solver/internal/ceres/
suitesparse.cc 41 cholmod_triplet triplet; local
43 triplet.nrow = A->num_rows();
44 triplet.ncol = A->num_cols();
45 triplet.nzmax = A->max_num_nonzeros();
46 triplet.nnz = A->num_nonzeros();
47 triplet.i = reinterpret_cast<void*>(A->mutable_rows());
48 triplet.j = reinterpret_cast<void*>(A->mutable_cols());
49 triplet.x = reinterpret_cast<void*>(A->mutable_values());
50 triplet.stype = 0; // Matrix is not symmetric.
51 triplet.itype = CHOLMOD_INT
61 cholmod_triplet triplet; local
    [all...]

Completed in 1250 milliseconds