Home | History | Annotate | Download | only in b_ImageEm

Lines Matching refs:depthA

142 										  uint32 depthA )
147 for( iL = 0; iL < depthA; iL++ )
167 uint32 depthA,
177 bim_UInt16BytePyrImage_size( cpA, ptrA, widthA, heightA, depthA );
183 uint32 depthMaskL = ( ( int32 )1 << ( depthA - 1 ) ) - 1;
184 if( depthA == 0 )
186 bbs_ERROR0( "void bim_UInt16BytePyrImage_create( struct bim_UInt16BytePyrImage* ptrA, uint32 widthA, uint32 heightA, uint32 depthA ):\n"
187 "depthA must be > 0" );
192 bbs_ERROR1( "void bim_UInt16BytePyrImage_create( struct bim_UInt16BytePyrImage* ptrA, uint32 widthA, uint32 heightA, uint32 depthA ):\n"
201 ptrA->depthE = depthA;
203 for( iL = 0; iL < depthA; iL++ )
216 uint32 depthA )
223 uint32 depthMaskL = ( 1 << ( depthA - 1 ) ) - 1;
224 if( depthA == 0 )
226 bbs_ERROR0( "void bim_UInt16BytePyrImage_size( struct bim_UInt16BytePyrImage* ptrA, uint32 widthA, uint32 heightA, uint32 depthA ):\n"
227 "depthA must be > 0" );
233 bbs_ERROR1( "void bim_UInt16BytePyrImage_size( struct bim_UInt16BytePyrImage* ptrA, uint32 widthA, uint32 heightA, uint32 depthA ):\n"
241 ptrA->depthE = depthA;
243 for( iL = 0; iL < depthA; iL++ )
250 bbs_ERROR0( "void bim_UInt16BytePyrImage_size( struct bim_UInt16BytePyrImage* ptrA, uint32 widthA, uint32 heightA, uint32 depthA ):\n"
400 uint32 depthA )
403 bim_UInt16BytePyrImage_size( cpA, dstPtrA, srcPtrA->widthE, srcPtrA->heightE, depthA );