Lines Matching defs:srcPtrA

91 						  const struct bim_UInt8Image* srcPtrA )
94 if( ptrA->arrE.sizeE < srcPtrA->arrE.sizeE )
101 ptrA->widthE = srcPtrA->widthE;
102 ptrA->heightE = srcPtrA->heightE;
103 bbs_UInt8Arr_copy( cpA, &ptrA->arrE, &srcPtrA->arrE );
110 const struct bim_UInt8Image* srcPtrA )
112 if( ptrA->widthE != srcPtrA->widthE ) return FALSE;
113 if( ptrA->heightE != srcPtrA->heightE ) return FALSE;
114 return bbs_UInt8Arr_equal( cpA, &ptrA->arrE, &srcPtrA->arrE );
153 struct bim_UInt8Image* srcPtrA )
155 struct bbs_MemSeg sharedSegL = bbs_MemSeg_createShared( cpA, srcPtrA->arrE.arrPtrE, ( srcPtrA->widthE * srcPtrA->heightE ) / 2 );
164 srcPtrA->widthE,
165 srcPtrA->heightE,
304 | | | ( srcPtrA->widthE, srcPtrA->heightE )
324 The image boundaries are indicated by letter "I" ( 0, 0 ) to ( srcPtrA->widthE, srcPtrA->heightE )
328 ( 0, 0 ), ( srcPtrA->widthE, srcPtrA->heightE )
352 const struct bim_UInt8Image* srcPtrA,
373 srcImageSubSectionL.x2E = bbs_min( ( int32 ) srcPtrA->widthE, sectionL.x2E );
374 srcImageSubSectionL.y2E = bbs_min( ( int32 ) srcPtrA->heightE, sectionL.y2E );
380 srcImageSubSectionL.x2E = srcPtrA->widthE;
386 srcImageSubSectionL.y2E = srcPtrA->heightE;
399 srcPixelPtrL = srcPtrA->arrE.arrPtrE;
422 srcPixelPtrL = srcPtrA->arrE.arrPtrE + yIndexL * srcPtrA->widthE + srcImageSubSectionL.x1E;
444 srcPixelPtrL = srcPtrA->arrE.arrPtrE + ( srcImageSubSectionL.y2E - 1 ) * srcPtrA->widthE + srcImageSubSectionL.x1E;
519 const struct bim_UInt8Image* srcPtrA,
526 long srcWidthL = srcPtrA->widthE;
527 long srcHeightL = srcPtrA->heightE;
532 const uint8* ulPtrL = srcPtrA->arrE.arrPtrE;
767 const struct bim_UInt8Image* srcPtrA,
772 bim_UInt8Image_warpOffs( cpA, ptrA, srcPtrA, 0, 0, altPtrA, resultWidthA, resultHeightA );