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

  /external/eigen/debug/gdb/
printers.py 68 self.rowMajor = (int(self.options) & 0x1)
81 def __init__ (self, rows, cols, dataPtr, rowMajor):
87 self.rowMajor = rowMajor
96 if self.rowMajor == 0:
124 return self._iterator(self.rows, self.cols, self.data, self.rowMajor)
127 return "Eigen::%s<%s,%d,%d,%s> (data ptr: %s)" % (self.variety, self.innerType, self.rows, self.cols, "RowMajor" if self.rowMajor else "ColMajor", self.data)
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 211 * @param rowMajor
215 public void get(float[] data, boolean rowMajor) {
217 if (rowMajor) {
239 if (rowMajor) {
631 * values assuming that the data is rowMajor order;
647 * @param rowMajor
651 public Matrix3f set(float[] matrix, boolean rowMajor) {
657 if (rowMajor) {
    [all...]
Matrix4f.java 223 * @param rowMajor
226 public void get(float[] matrix, boolean rowMajor) {
232 if (rowMajor) {
581 * values assuming that the data is rowMajor order;
596 * @param rowMajor
599 public void set(float[] matrix, boolean rowMajor) {
605 if (rowMajor) {
    [all...]
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 79 static String8 matrixToString(const float* a, uint32_t m, uint32_t n, bool rowMajor) {
91 str.appendFormat(" %f", a[rowMajor ? i * n + j : j * m + i]);
458 ALOGD(" - a=%s", matrixToString(&a[0][0], m, n, false /*rowMajor*/).string());
493 ALOGD(" - q=%s", matrixToString(&q[0][0], m, n, false /*rowMajor*/).string());
494 ALOGD(" - r=%s", matrixToString(&r[0][0], n, n, true /*rowMajor*/).string());
506 ALOGD(" - qr=%s", matrixToString(&qr[0][0], m, n, false /*rowMajor*/).string());
    [all...]

Completed in 115 milliseconds