Home | History | Annotate | Download | only in b_BasicEm

Lines Matching refs:sizeA

116 							   uint32 startIndexA, uint32 sizeA )
121 for( iL = sizeA; iL > 0; iL-- )
132 uint32 sizeA )
134 return sizeA * bbs_SIZEOF16( uint16 ) + bbs_MEM_BLOCK_OVERHD;
149 uint32 sizeA )
151 if( ptrA->allocatedSizeE < sizeA )
153 bbs_ERROR1( "void bbs_UInt16Arr_size( struct bbs_UInt16Arr*, uint32 sizeA ):\n"
158 ptrA->sizeE = sizeA;
165 uint32 sizeA,
169 if( ptrA->sizeE == sizeA ) return;
172 bbs_UInt16Arr_size( cpA, ptrA, sizeA );
176 ptrA->arrPtrE = bbs_MemSeg_alloc( cpA, mspA, sizeA * bbs_SIZEOF16( uint16 ) );
178 ptrA->allocatedSizeE = sizeA;
179 ptrA->sizeE = sizeA;