bLength           192 ompi/datatype/ompi_datatype.h OMPI_DECLSPEC int32_t ompi_datatype_create_vector( int count, int bLength, int stride,
bLength           194 ompi/datatype/ompi_datatype.h OMPI_DECLSPEC int32_t ompi_datatype_create_hvector( int count, int bLength, ptrdiff_t stride,
bLength           200 ompi/datatype/ompi_datatype.h OMPI_DECLSPEC int32_t ompi_datatype_create_indexed_block( int count, int bLength, const int* pDisp,
bLength           202 ompi/datatype/ompi_datatype.h OMPI_DECLSPEC int32_t ompi_datatype_create_hindexed_block( int count, int bLength, const ptrdiff_t* pDisp,
bLength           116 ompi/datatype/ompi_datatype_create_indexed.c int32_t ompi_datatype_create_indexed_block( int count, int bLength, const int* pDisp,
bLength           124 ompi/datatype/ompi_datatype_create_indexed.c     if( (count == 0) || (bLength == 0) ) {
bLength           130 ompi/datatype/ompi_datatype_create_indexed.c     dLength = bLength;
bLength           135 ompi/datatype/ompi_datatype_create_indexed.c             dLength += bLength;
bLength           136 ompi/datatype/ompi_datatype_create_indexed.c             endat += bLength;
bLength           140 ompi/datatype/ompi_datatype_create_indexed.c             dLength = bLength;
bLength           141 ompi/datatype/ompi_datatype_create_indexed.c             endat = disp + bLength;
bLength           150 ompi/datatype/ompi_datatype_create_indexed.c int32_t ompi_datatype_create_hindexed_block( int count, int bLength, const ptrdiff_t* pDisp,
bLength           158 ompi/datatype/ompi_datatype_create_indexed.c     if( (count == 0) || (bLength == 0) ) {
bLength           164 ompi/datatype/ompi_datatype_create_indexed.c     dLength = bLength;
bLength           169 ompi/datatype/ompi_datatype_create_indexed.c             dLength += bLength;
bLength           170 ompi/datatype/ompi_datatype_create_indexed.c             endat += bLength;
bLength           174 ompi/datatype/ompi_datatype_create_indexed.c             dLength = bLength;
bLength           175 ompi/datatype/ompi_datatype_create_indexed.c             endat = disp + bLength;
bLength            31 ompi/datatype/ompi_datatype_create_vector.c int32_t ompi_datatype_create_vector( int count, int bLength, int stride,
bLength            37 ompi/datatype/ompi_datatype_create_vector.c     if( (0 == count) || (0 == bLength) ) {
bLength            42 ompi/datatype/ompi_datatype_create_vector.c     if( (bLength == stride) || (1 >= count) ) {  /* the elements are contiguous */
bLength            43 ompi/datatype/ompi_datatype_create_vector.c         ompi_datatype_add( pData, oldType, (size_t)count * bLength, 0, extent );
bLength            45 ompi/datatype/ompi_datatype_create_vector.c         if( 1 == bLength ) {
bLength            48 ompi/datatype/ompi_datatype_create_vector.c             ompi_datatype_add( pData, oldType, bLength, 0, extent );
bLength            60 ompi/datatype/ompi_datatype_create_vector.c int32_t ompi_datatype_create_hvector( int count, int bLength, ptrdiff_t stride,
bLength            66 ompi/datatype/ompi_datatype_create_vector.c     if( (0 == count) || (0 == bLength) ) {
bLength            71 ompi/datatype/ompi_datatype_create_vector.c     if( ((extent * bLength) == stride) || (1 >= count) ) {  /* contiguous */
bLength            73 ompi/datatype/ompi_datatype_create_vector.c         ompi_datatype_add( pData, oldType, count * bLength, 0, extent );
bLength            75 ompi/datatype/ompi_datatype_create_vector.c         if( 1 == bLength ) {
bLength            79 ompi/datatype/ompi_datatype_create_vector.c             ompi_datatype_add( pTempData, oldType, bLength, 0, extent );
bLength           408 ompi/datatype/ompi_datatype_module.c         int bLength[2] = {1, 1};                                                     \
bLength           419 ompi/datatype/ompi_datatype_module.c         ompi_datatype_create_struct( 2, bLength, displ, types, &ptype );             \
bLength            37 test/datatype/opal_ddt_lib.c static int32_t opal_datatype_create_vector( int count, int bLength, int stride,
bLength            39 test/datatype/opal_ddt_lib.c static int32_t opal_datatype_create_hvector( int count, int bLength, ptrdiff_t stride,
bLength           434 test/datatype/opal_ddt_lib.c static int32_t opal_datatype_create_vector( int count, int bLength, int stride,
bLength           448 test/datatype/opal_ddt_lib.c     if( (bLength == stride) || (1 >= count) ) {  /* the elements are contiguous */
bLength           449 test/datatype/opal_ddt_lib.c         opal_datatype_add( pData, oldType, count * bLength, 0, extent );
bLength           451 test/datatype/opal_ddt_lib.c         if( 1 == bLength ) {
bLength           454 test/datatype/opal_ddt_lib.c             opal_datatype_add( pData, oldType, bLength, 0, extent );
bLength           466 test/datatype/opal_ddt_lib.c static int32_t opal_datatype_create_hvector( int count, int bLength, ptrdiff_t stride,
bLength           479 test/datatype/opal_ddt_lib.c     if( ((extent * bLength) == stride) || (1 >= count) ) {  /* contiguous */
bLength           481 test/datatype/opal_ddt_lib.c         opal_datatype_add( pData, oldType, count * bLength, 0, extent );
bLength           483 test/datatype/opal_ddt_lib.c         if( 1 == bLength ) {
bLength           487 test/datatype/opal_ddt_lib.c             opal_datatype_add( pTempData, oldType, bLength, 0, extent );
bLength            66 test/datatype/to_self.c     int i, *bLength;
bLength            70 test/datatype/to_self.c     bLength = (int*)malloc( sizeof(int) * number );
bLength            74 test/datatype/to_self.c     bLength[0] = contig_size;
bLength            78 test/datatype/to_self.c         bLength[i] = contig_size;
bLength            81 test/datatype/to_self.c     MPI_Type_create_struct( number, bLength, displ, types, &dt );
bLength            84 test/datatype/to_self.c     free(bLength);
bLength           118 test/datatype/to_self.c     int bLength[2] = { 2, 1 };
bLength           126 test/datatype/to_self.c     MPI_Type_create_struct( 2, bLength, displ, types, &dt1 );
bLength           130 test/datatype/to_self.c     bLength[0] = 1;
bLength           131 test/datatype/to_self.c     bLength[1] = 1;
bLength           138 test/datatype/to_self.c     MPI_Type_create_struct( 2, bLength, displ, types, &dt3 );
bLength           153 test/datatype/to_self.c     int bLength[3];
bLength           160 test/datatype/to_self.c     bLength[0] = 4;
bLength           161 test/datatype/to_self.c     bLength[1] = 9;
bLength           162 test/datatype/to_self.c     bLength[2] = 36;
bLength           172 test/datatype/to_self.c     MPI_Type_create_struct( 3, bLength, displ, types, &dt3 );