Lines Matching +full:- +full:p
43 arm_mat_inverse_f64(&this->in1,&this->out); in test_mat_inverse_f64()
48 arm_mat_cholesky_f64(&this->in1,&this->out); in test_mat_cholesky_dpo_f64()
53 arm_mat_solve_upper_triangular_f64(&this->in1,&this->in2,&this->out); in test_solve_upper_triangular_f64()
58 arm_mat_solve_lower_triangular_f64(&this->in1,&this->in2,&this->out); in test_solve_lower_triangular_f64()
67 this->nbr = *it++; in setUp()
68 this->nbc = *it; in setUp()
74 input1.reload(UnaryF64::INPUTA_F64_ID,mgr,this->nbr*this->nbc); in setUp()
77 output.create(this->nbr*this->nbc,UnaryF64::OUT_F64_ID,mgr); in setUp()
79 this->in1.numRows = this->nbr; in setUp()
80 this->in1.numCols = this->nbc; in setUp()
81 this->in1.pData = input1.ptr(); in setUp()
83 this->out.numRows = this->nbr; in setUp()
84 this->out.numCols = this->nbc; in setUp()
85 this->out.pData = output.ptr(); in setUp()
91 float64_t *p; in setUp() local
94 output.create(this->nbc * this->nbr,UnaryF64::OUT_F64_ID,mgr); in setUp()
96 a.create(this->nbr*this->nbc,UnaryF64::TMPA_F64_ID,mgr); in setUp()
100 offset=cholesky_offset(this->nbr); in setUp()
102 p = input1.ptr(); in setUp()
107 memcpy(aPtr,p + offset,sizeof(float64_t)*this->nbr*this->nbr); in setUp()
109 this->out.numRows = this->nbr; in setUp()
110 this->out.numCols = this->nbc; in setUp()
111 this->out.pData = output.ptr(); in setUp()
113 this->in1.numRows = this->nbr; in setUp()
114 this->in1.numCols = this->nbc; in setUp()
115 this->in1.pData = aPtr; in setUp()
125 float64_t *p; in setUp() local
131 output.create(this->nbc * this->nbr,UnaryF64::OUT_F64_ID,mgr); in setUp()
133 a.create(this->nbr*this->nbc,UnaryF64::TMPA_F64_ID,mgr); in setUp()
134 b.create(this->nbr*this->nbc,UnaryF64::TMPB_F64_ID,mgr); in setUp()
138 offset=cholesky_offset(this->nbr); in setUp()
140 p = input1.ptr(); in setUp()
142 memcpy(aPtr,&p[offset],sizeof(float64_t)*this->nbr*this->nbr); in setUp()
144 p = input2.ptr(); in setUp()
146 memcpy(bPtr,&p[offset],sizeof(float64_t)*this->nbr*this->nbr); in setUp()
148 this->out.numRows = this->nbr; in setUp()
149 this->out.numCols = this->nbc; in setUp()
150 this->out.pData = output.ptr(); in setUp()
152 this->in1.numRows = this->nbr; in setUp()
153 this->in1.numCols = this->nbc; in setUp()
154 this->in1.pData = aPtr; in setUp()
156 this->in2.numRows = this->nbr; in setUp()
157 this->in2.numCols = this->nbc; in setUp()
158 this->in2.pData = bPtr; in setUp()
165 float64_t *p; in setUp() local
171 output.create(this->nbc * this->nbr,UnaryF64::OUT_F64_ID,mgr); in setUp()
173 a.create(this->nbr*this->nbc,UnaryF64::TMPA_F64_ID,mgr); in setUp()
174 b.create(this->nbr*this->nbc,UnaryF64::TMPB_F64_ID,mgr); in setUp()
178 offset=cholesky_offset(this->nbr); in setUp()
180 p = input1.ptr(); in setUp()
182 memcpy(aPtr,&p[offset],sizeof(float64_t)*this->nbr*this->nbr); in setUp()
184 p = input2.ptr(); in setUp()
186 memcpy(bPtr,&p[offset],sizeof(float64_t)*this->nbr*this->nbr); in setUp()
188 this->out.numRows = this->nbr; in setUp()
189 this->out.numCols = this->nbc; in setUp()
190 this->out.pData = output.ptr(); in setUp()
192 this->in1.numRows = this->nbr; in setUp()
193 this->in1.numCols = this->nbc; in setUp()
194 this->in1.pData = aPtr; in setUp()
196 this->in2.numRows = this->nbr; in setUp()
197 this->in2.numCols = this->nbc; in setUp()
198 this->in2.pData = bPtr; in setUp()