Searched refs:real_count (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | api_params.c | 64 VGint real_count = vegaGetVectorSize(type); in count_in_bounds() local 65 return count == real_count; in count_in_bounds() 769 VGint real_count = vegaGetVectorSize(type); in vegaGetfv() local 771 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { in vegaGetfv() 870 VGint real_count = vegaGetVectorSize(type); in vegaGetiv() local 872 if (!values || count <= 0 || count > real_count || !is_aligned(values)) { in vegaGetiv() 1107 VGint real_count = vegaGetParameterVectorSize(object, paramType); in vegaSetParameterfv() local 1114 if (count < 0 || count < real_count || in vegaSetParameterfv() 1223 VGint real_count = vegaGetParameterVectorSize(object, paramType); in vegaSetParameteriv() local 1230 if (count < 0 || count < real_count || in vegaSetParameteriv() [all …]
|
/external/opencv3/modules/calib3d/src/ |
D | calibinit.cpp | 199 int real_count = 0; 202 if( pts1[j].x >= 0 ) real_count++; 204 if(real_count < 3) return; 205 cv::Ptr<CvMat> xy = cvCreateMat( 2*real_count, 6, CV_32FC1 ); 206 cv::Ptr<CvMat> uv = cvCreateMat( 2*real_count, 1, CV_32FC1 );
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 169 int real_count = 0; 172 if( pts1[j].x >= 0 ) real_count++; 174 if(real_count < 3) return; 175 CvMat* xy = cvCreateMat( 2*real_count, 6, CV_32FC1 ); 176 CvMat* uv = cvCreateMat( 2*real_count, 1, CV_32FC1 );
|