Home | History | Annotate | Download | only in b_ImageEm

Lines Matching full:ptra

43 						    struct bim_ComplexImage* ptrA )
45 bbs_ComplexArr_init( cpA, &ptrA->arrE );
46 ptrA->widthE = 0;
47 ptrA->heightE = 0;
53 struct bim_ComplexImage* ptrA )
55 bbs_ComplexArr_exit( cpA, &ptrA->arrE );
56 ptrA->widthE = 0;
57 ptrA->heightE = 0;
71 struct bim_ComplexImage* ptrA,
75 if( ptrA->arrE.allocatedSizeE < srcPtrA->arrE.allocatedSizeE )
82 ptrA->widthE = srcPtrA->widthE;
83 ptrA->heightE = srcPtrA->heightE;
84 bbs_ComplexArr_copy( cpA, &ptrA->arrE, &srcPtrA->arrE );
90 const struct bim_ComplexImage* ptrA,
93 if( ptrA->widthE != srcPtrA->widthE ) return FALSE;
94 if( ptrA->heightE != srcPtrA->heightE ) return FALSE;
95 return bbs_ComplexArr_equal( cpA, &ptrA->arrE, &srcPtrA->arrE );
109 const struct bim_ComplexImage* ptrA )
113 uint32 sizeL = ptrA->arrE.sizeE;
114 const struct bbs_Complex* ptrL = ptrA->arrE.arrPtrE;
126 const struct bim_ComplexImage* ptrA,
129 return bbs_ComplexArr_heapSize( cpA, &ptrA->arrE, widthA * heightA );
143 struct bim_ComplexImage* ptrA,
149 if( ptrA->arrE.arrPtrE != 0 )
151 bim_ComplexImage_size( cpA, ptrA, widthA, heightA );
155 bbs_ComplexArr_create( cpA, &ptrA->arrE, widthA * heightA, mspA );
156 ptrA->widthE = widthA;
157 ptrA->heightE = heightA;
164 struct bim_ComplexImage* ptrA,
168 if( ptrA->arrE.allocatedSizeE < widthA * heightA )
174 ptrA->widthE = widthA;
175 ptrA->heightE = heightA;
176 bbs_ComplexArr_size( cpA, &ptrA->arrE, widthA * heightA );
190 const struct bim_ComplexImage* ptrA )
194 + bbs_SIZEOF16( ptrA->widthE )
195 + bbs_SIZEOF16( ptrA->heightE )
196 + bbs_ComplexArr_memSize( cpA, &ptrA->arrE );
202 const struct bim_ComplexImage* ptrA,
205 uint32 memSizeL = bim_ComplexImage_memSize( cpA, ptrA );
208 memPtrA += bbs_memWrite32( &ptrA->widthE, memPtrA );
209 memPtrA += bbs_memWrite32( &ptrA->heightE, memPtrA );
210 bbs_ComplexArr_memWrite( cpA, &ptrA->arrE, memPtrA );
217 struct bim_ComplexImage* ptrA,
228 ptrA->widthE = widthL;
229 ptrA->heightE = heightL;
230 bbs_ComplexArr_memRead( cpA, &ptrA->arrE, memPtrA, mspA );
232 if( memSizeL != bim_ComplexImage_memSize( cpA, ptrA ) )
234 bbs_ERR0( bbs_ERR_CORRUPT_DATA, "uint32 bim_ComplexImage_memRead( const struct bim_ComplexImage* ptrA, const void* memPtrA ):\n"
252 struct bim_ComplexImage* ptrA,
256 struct bbs_Complex* ptrL = ptrA->arrE.arrPtrE;
257 for( iL = ptrA->widthE * ptrA->heightE; iL > 0; iL-- )
343 struct bim_ComplexImage* ptrA,
382 bim_ComplexImage_size( cpA, ptrA, sectionL.x2E - sectionL.x1E, sectionL.y2E - sectionL.y1E );
385 dstPixelPtrL = ptrA->arrE.arrPtrE;