HomeSort by relevance Sort by last modified time
    Searched refs:need_size (Results 1 - 2 of 2) sorted by null

  /external/opencv/cvaux/src/
cvhmm1d.cpp 551 int need_size = ( obs_info->obs_x /* * obs_info->obs_y*/ * total_states * sizeof(float) /* +
554 int* buffer = (int*)icvAlloc( need_size + 3 * sizeof(int) );
555 buffer[0] = need_size;
566 int need_size = ( obs_info->obs_x /* * obs_info->obs_y*/ * total_states * sizeof(float) /* +
571 if ( need_size > (*total) )
575 buffer = (int*)icvAlloc( need_size + 3);
576 buffer[0] = need_size;
    [all...]
cvhmm.cpp 618 int need_size = ( obs_info->obs_x * obs_info->obs_y * total_states * sizeof(float) + local
621 int* buffer = (int*)cvAlloc( need_size + 3 * sizeof(int) );
622 buffer[0] = need_size;
633 int need_size = ( obs_info->obs_x * obs_info->obs_y * total_states * sizeof(float) + local
638 if ( need_size > (*total) )
642 buffer = (int*)cvAlloc( need_size + 3 * sizeof(int));
643 buffer[0] = need_size;
    [all...]

Completed in 115 milliseconds