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

  /external/opencv/cxcore/src/
cxalloc.cpp 49 (size_t)(size + CV_MALLOC_ALIGN*((size >= 4096) + 1) + sizeof(char*)));
55 ptr = (char*)cvAlignPtr(ptr0 + sizeof(char*) + 1, CV_MALLOC_ALIGN);
66 // Pointer must be aligned by CV_MALLOC_ALIGN
67 if( ((size_t)ptr & (CV_MALLOC_ALIGN-1)) != 0 )
cxarray.cpp 970 total_size = step*mat->rows + sizeof(int) + CV_MALLOC_ALIGN;
972 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN );
1030 sizeof(int) + CV_MALLOC_ALIGN ));
1031 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN );
    [all...]
  /external/opencv/cxcore/include/
cxmisc.h 84 #define CV_MALLOC_ALIGN 32
138 #define cvStackAlloc(size) cvAlignPtr( alloca((size) + CV_MALLOC_ALIGN), CV_MALLOC_ALIGN )
    [all...]

Completed in 45 milliseconds