Lines Matching defs:value
181 void Matrix4::SetEntry(int32_t row, int32_t col, double value)
186 matrix4x4_[row][col] = value;
317 double value = 0.0;
319 value += matrix4x4_[i][k] * matrix[k][j];
321 matrix4n[i][j] = value;
416 double value = 0;
418 value += matrix4x4_[j][i] * src[j];
420 result[i] = value;
446 bool Matrix4N::SetEntry(int32_t row, int32_t col, double value)
451 matrix4n_[row][col] = value;
463 double value = 0.0;
465 value += matrix4n_[i][k] * matrix[k][j];
467 matrix4.SetEntry(i, j, value);
486 std::vector<double> value(DIMENSION, 0);
488 return value;
495 value[i] = item;
497 return value;
521 bool MatrixN4::SetEntry(int32_t row, int32_t col, double value)
526 matrixn4_[row][col] = value;
543 std::vector<double> value(rows_, 0);
545 return value;
552 value[i] = item;
554 return value;