Searched refs:mat0 (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/3rdparty/libjasper/ |
D | jas_seq.c | 203 void jas_matrix_bindsub(jas_matrix_t *mat0, jas_matrix_t *mat1, int r0, int c0, in jas_matrix_bindsub() argument 208 if (mat0->data_) { in jas_matrix_bindsub() 209 if (!(mat0->flags_ & JAS_MATRIX_REF)) { in jas_matrix_bindsub() 210 jas_free(mat0->data_); in jas_matrix_bindsub() 212 mat0->data_ = 0; in jas_matrix_bindsub() 213 mat0->datasize_ = 0; in jas_matrix_bindsub() 215 if (mat0->rows_) { in jas_matrix_bindsub() 216 jas_free(mat0->rows_); in jas_matrix_bindsub() 217 mat0->rows_ = 0; in jas_matrix_bindsub() 219 mat0->flags_ |= JAS_MATRIX_REF; in jas_matrix_bindsub() [all …]
|
/external/opencv3/3rdparty/libjasper/jasper/ |
D | jas_seq.h | 197 void jas_matrix_bindsub(jas_matrix_t *mat0, jas_matrix_t *mat1, int r0, int c0, 201 #define jas_matrix_bindrow(mat0, mat1, r) \ argument 202 (jas_matrix_bindsub((mat0), (mat1), (r), 0, (r), (mat1)->numcols_ - 1)) 205 #define jas_matrix_bindcol(mat0, mat1, c) \ argument 206 (jas_matrix_bindsub((mat0), (mat1), 0, (c), (mat1)->numrows_ - 1, (c))) 233 int jas_matrix_cmp(jas_matrix_t *mat0, jas_matrix_t *mat1);
|
/external/opencv/cv/src/ |
D | cvhistogram.cpp | 1414 CvMat stub0, *mat0 = 0; in cvCalcArrHist() local 1436 mat0 = mat; in cvCalcArrHist() 1437 step = mat0->step; in cvCalcArrHist() 1441 if( !CV_ARE_SIZES_EQ( mat0, mat )) in cvCalcArrHist() 1444 if( mat0->step != mat->step ) in cvCalcArrHist() 1447 if( !CV_ARE_TYPES_EQ( mat0, mat )) in cvCalcArrHist() 1463 if( !CV_ARE_SIZES_EQ( mat0, mat )) in cvCalcArrHist() 1471 size = cvGetMatSize(mat0); in cvCalcArrHist() 1507 if( CV_MAT_DEPTH(mat0->type) > CV_8S && !CV_HIST_HAS_RANGES(hist)) in cvCalcArrHist() 1511 switch( CV_MAT_DEPTH(mat0->type) ) in cvCalcArrHist() [all …]
|