Searched defs:image_count (Results 1 - 3 of 3) sorted by relevance

/external/google-breakpad/src/client/mac/handler/
H A Ddynamic_images.cc542 int image_count = GetImageCount(); local
544 for (int i = 0; i < image_count; ++i) {
H A Dminidump_generator.cc1387 int image_count = _dyld_image_count(); local
1390 for (int index = 0; index < image_count; ++index) {
1473 uint32_t image_count = dynamic_images_ ? local
1477 if (!list.AllocateObjectAndArray(image_count, MD_MODULE_SIZE))
1482 list.get()->number_of_modules = static_cast<uint32_t>(image_count);
1495 for (uint32_t i = 0; i < image_count; ++i) {
/external/opencv/cv/include/
H A Dcvcompat.h584 CV_INLINE void cvCalibrateCamera( int image_count, int* _point_counts, argument
590 CvMat point_counts = cvMat( image_count, 1, CV_32SC1, _point_counts );
594 CvMat rotation_matrices = cvMat( image_count, 9, CV_32FC1, _rotation_matrices );
595 CvMat translation_vectors = cvMat( image_count, 3, CV_32FC1, _translation_vectors );
597 for( i = 0; i < image_count; i++ )
609 CV_INLINE void cvCalibrateCamera_64d( int image_count, int* _point_counts, argument
615 CvMat point_counts = cvMat( image_count, 1, CV_32SC1, _point_counts );
619 CvMat rotation_matrices = cvMat( image_count, 9, CV_64FC1, _rotation_matrices );
620 CvMat translation_vectors = cvMat( image_count, 3, CV_64FC1, _translation_vectors );
622 for( i = 0; i < image_count;
[all...]

Completed in 127 milliseconds