HomeSort by relevance Sort by last modified time
    Searched refs:CV_MALLOC_ALIGN (Results 1 - 7 of 7) 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/opencv3/modules/core/src/
alloc.cpp 64 uchar* udata = (uchar*)malloc(size + sizeof(void*) + CV_MALLOC_ALIGN);
67 uchar** adata = alignPtr((uchar**)udata + 1, CV_MALLOC_ALIGN);
78 ((uchar*)ptr - udata) <= (ptrdiff_t)(sizeof(void*)+CV_MALLOC_ALIGN));
array.cpp 819 int64 _total_size = (int64)step*mat->rows + sizeof(int) + CV_MALLOC_ALIGN;
824 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN );
885 sizeof(int) + CV_MALLOC_ALIGN );
886 mat->data.ptr = (uchar*)cvAlignPtr( mat->refcount + 1, CV_MALLOC_ALIGN );
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
private.hpp 137 #define CV_MALLOC_ALIGN 16
  /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...]
  /external/opencv3/modules/imgproc/src/
filter.cpp 159 #define VEC_ALIGN CV_MALLOC_ALIGN
    [all...]

Completed in 96 milliseconds