Searched refs:Matrix (Results 1 – 7 of 7) sorted by relevance
| /oneTBB/examples/parallel_for_each/parallel_preorder/ |
| H A D | Matrix.hpp | 20 class Matrix { class 25 Matrix() {} in Matrix() function in Matrix 26 Matrix(float z) { in Matrix() function in Matrix 31 friend Matrix operator-(const Matrix& x) { in operator -() 32 Matrix result; in operator -() 38 friend Matrix operator+(const Matrix& x, const Matrix& y) { in operator +() 39 Matrix result; in operator +() 45 friend Matrix operator-(const Matrix& x, const Matrix& y) { in operator -() 46 Matrix result; in operator -() 52 friend Matrix operator*(const Matrix& x, const Matrix& y) { in operator *() [all …]
|
| H A D | Graph.hpp | 49 typedef Matrix value_type;
|
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Evolution.hpp | 38 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end); 45 Evolution(Matrix* m, //! beginning matrix including initial pattern in Evolution() 88 Matrix* m_matrix; //! Pointer to initial matrix 109 SequentialEvolution(Matrix* m, BoardPtr board) : Evolution(m, board) {} in SequentialEvolution() 120 ParallelEvolution(Matrix* m, BoardPtr board) : Evolution(m, board), m_parallel_time(0) { in ParallelEvolution()
|
| H A D | Board.hpp | 23 struct Matrix { struct 37 Matrix* m_matrix; argument
|
| H A D | Evolution.cpp | 142 static void set_values(Matrix* source, char* dest) { in set_values() 157 static Matrix* m_source; 161 Matrix* tbb_parallel_task::m_source;
|
| H A D | Update_state.cpp | 97 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState() 331 char CheckCell(Matrix* m_matrix, int cellNumber) { in CheckCell() 361 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState()
|
| H A D | Game_of_life.cpp | 43 m_matrix = new Matrix(); in Board()
|