Home | History | Annotate | Download | only in b_ImageEm

Lines Matching full:ptra

41 						   struct bim_UInt32Image* ptrA )
43 bbs_UInt32Arr_init( cpA, &ptrA->arrE );
44 ptrA->widthE = 0;
45 ptrA->heightE = 0;
51 struct bim_UInt32Image* ptrA )
53 bbs_UInt32Arr_exit( cpA, &ptrA->arrE );
54 ptrA->widthE = 0;
55 ptrA->heightE = 0;
69 struct bim_UInt32Image* ptrA,
73 if( ptrA->arrE.allocatedSizeE < srcPtrA->arrE.allocatedSizeE )
80 ptrA->widthE = srcPtrA->widthE;
81 ptrA->heightE = srcPtrA->heightE;
82 bbs_UInt32Arr_copy( cpA, &ptrA->arrE, &srcPtrA->arrE );
88 const struct bim_UInt32Image* ptrA,
91 if( ptrA->widthE != srcPtrA->widthE ) return FALSE;
92 if( ptrA->heightE != srcPtrA->heightE ) return FALSE;
93 return bbs_UInt32Arr_equal( cpA, &ptrA->arrE, &srcPtrA->arrE );
107 const struct bim_UInt32Image* ptrA,
111 return bbs_UInt32Arr_heapSize( cpA, &ptrA->arrE, widthA * heightA );
117 const struct bim_UInt32Image* ptrA )
121 uint32 sizeL = ptrA->arrE.sizeE;
122 const uint32* ptrL = ptrA->arrE.arrPtrE;
141 struct bim_UInt32Image* ptrA,
147 if( ptrA->arrE.arrPtrE != 0 )
149 bim_UInt32Image_size( cpA, ptrA, widthA, heightA );
153 bbs_UInt32Arr_create( cpA, &ptrA->arrE, widthA * heightA, mspA );
154 ptrA->widthE = widthA;
155 ptrA->heightE = heightA;
162 struct bim_UInt32Image* ptrA,
167 if( ptrA->arrE.arrPtrE != 0 )
174 ptrA,
183 struct bim_UInt32Image* ptrA,
187 if( ptrA->arrE.allocatedSizeE < widthA * heightA )
193 ptrA->widthE = widthA;
194 ptrA->heightE = heightA;
195 bbs_UInt32Arr_size( cpA, &ptrA->arrE, widthA * heightA );
209 const struct bim_UInt32Image* ptrA )
213 + bbs_SIZEOF16( ptrA->widthE )
214 + bbs_SIZEOF16( ptrA->heightE )
215 + bbs_UInt32Arr_memSize( cpA, &ptrA->arrE );
221 const struct bim_UInt32Image* ptrA,
224 uint32 memSizeL = bim_UInt32Image_memSize( cpA, ptrA );
227 memPtrA += bbs_memWrite32( &ptrA->widthE, memPtrA );
228 memPtrA += bbs_memWrite32( &ptrA->heightE, memPtrA );
229 bbs_UInt32Arr_memWrite( cpA, &ptrA->arrE, memPtrA );
236 struct bim_UInt32Image* ptrA,
244 memPtrA += bbs_memRead32( &ptrA->widthE, memPtrA );
245 memPtrA += bbs_memRead32( &ptrA->heightE, memPtrA );
246 bbs_UInt32Arr_memRead( cpA, &ptrA->arrE, memPtrA, mspA );
248 if( memSizeL != bim_UInt32Image_memSize( cpA, ptrA ) )
250 bbs_ERR0( bbs_ERR_CORRUPT_DATA, "uint32 bim_UInt32Image_memRead( const struct bim_UInt32Image* ptrA, const void* memPtrA ):\n"
268 struct bim_UInt32Image* ptrA,
273 uint32* ptrL = ptrA->arrE.arrPtrE;
274 for( iL = ptrA->widthE * ptrA->heightE; iL > 0; iL-- )