Home
last modified time | relevance | path

Searched refs:need_size (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cvaux/src/
Dcvhmm1d.cpp551 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;
Dcvhmm.cpp618 int need_size = ( obs_info->obs_x * obs_info->obs_y * total_states * sizeof(float) + in icvEstimateObsProb() local
621 int* buffer = (int*)cvAlloc( need_size + 3 * sizeof(int) ); in icvEstimateObsProb()
622 buffer[0] = need_size; in icvEstimateObsProb()
633 int need_size = ( obs_info->obs_x * obs_info->obs_y * total_states * sizeof(float) + in icvEstimateObsProb() local
638 if ( need_size > (*total) ) in icvEstimateObsProb()
642 buffer = (int*)cvAlloc( need_size + 3 * sizeof(int)); in icvEstimateObsProb()
643 buffer[0] = need_size; in icvEstimateObsProb()