Home | History | Annotate | Download | only in src

Lines Matching refs:CV_STRUCT_ALIGN

47     (int)cvAlign(sizeof(CvSeqBlock), CV_STRUCT_ALIGN)
95 block_size = cvAlign( block_size, CV_STRUCT_ALIGN );
96 assert( sizeof(CvMemBlock) % CV_STRUCT_ALIGN == 0 );
315 assert( storage->free_space % CV_STRUCT_ALIGN == 0 );
399 assert( storage->free_space % CV_STRUCT_ALIGN == 0 );
403 size_t max_free_space = cvAlignLeft(storage->block_size - sizeof(CvMemBlock), CV_STRUCT_ALIGN);
411 assert( (size_t)ptr % CV_STRUCT_ALIGN == 0 );
412 storage->free_space = cvAlignLeft(storage->free_space - (int)size, CV_STRUCT_ALIGN );
503 sizeof(CvSeqBlock), CV_STRUCT_ALIGN);
766 if( (unsigned)(ICV_FREE_PTR(storage) - seq->block_max) < CV_STRUCT_ALIGN &&
774 seq->block_max), CV_STRUCT_ALIGN );
787 if( storage->free_space >= small_block_size + CV_STRUCT_ALIGN )
800 block->data = (schar*)cvAlignPtr( block + 1, CV_STRUCT_ALIGN );
1042 - seq->block_max) < CV_STRUCT_ALIGN )
1044 storage->free_space = cvAlignLeft((int)(storage_block_max - seq->ptr), CV_STRUCT_ALIGN);