Searched defs:need_size (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/base/ime/
H A Dinput_method_win.cc428 size_t need_size = sizeof(RECONVERTSTRING) + len * sizeof(WCHAR); local
431 return need_size;
433 if (reconv->dwSize < need_size)
456 // need_size.
482 size_t need_size = sizeof(RECONVERTSTRING) + len * sizeof(WCHAR); local
485 return need_size;
487 if (reconv->dwSize < need_size)
510 // need_size.
/external/opencv/cvaux/src/
H A Dcvhmm.cpp618 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;

Completed in 178 milliseconds