• Home
  • Raw
  • Download

Lines Matching refs:ptrA

43 								  struct bim_UInt16BytePyrImage* ptrA )  in bim_UInt16BytePyrImage_init()  argument
45 bbs_UInt16Arr_init( cpA, &ptrA->arrE ); in bim_UInt16BytePyrImage_init()
46 ptrA->widthE = 0; in bim_UInt16BytePyrImage_init()
47 ptrA->heightE = 0; in bim_UInt16BytePyrImage_init()
48 ptrA->depthE = 0; in bim_UInt16BytePyrImage_init()
49 ptrA->typeE = bim_UINT16_PYRAMIDAL_IMG; in bim_UInt16BytePyrImage_init()
55 struct bim_UInt16BytePyrImage* ptrA ) in bim_UInt16BytePyrImage_exit() argument
57 bbs_UInt16Arr_exit( cpA, &ptrA->arrE ); in bim_UInt16BytePyrImage_exit()
58 ptrA->widthE = 0; in bim_UInt16BytePyrImage_exit()
59 ptrA->heightE = 0; in bim_UInt16BytePyrImage_exit()
60 ptrA->depthE = 0; in bim_UInt16BytePyrImage_exit()
74 struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_copy() argument
78 if( ptrA->arrE.allocatedSizeE < srcPtrA->arrE.allocatedSizeE ) in bim_UInt16BytePyrImage_copy()
85 ptrA->widthE = srcPtrA->widthE; in bim_UInt16BytePyrImage_copy()
86 ptrA->heightE = srcPtrA->heightE; in bim_UInt16BytePyrImage_copy()
87 ptrA->depthE = srcPtrA->depthE; in bim_UInt16BytePyrImage_copy()
88 bbs_UInt16Arr_copy( cpA, &ptrA->arrE, &srcPtrA->arrE ); in bim_UInt16BytePyrImage_copy()
94 const struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_equal() argument
97 if( ptrA->widthE != srcPtrA->widthE ) return FALSE; in bim_UInt16BytePyrImage_equal()
98 if( ptrA->heightE != srcPtrA->heightE ) return FALSE; in bim_UInt16BytePyrImage_equal()
99 if( ptrA->depthE != srcPtrA->depthE ) return FALSE; in bim_UInt16BytePyrImage_equal()
100 return bbs_UInt16Arr_equal( cpA, &ptrA->arrE, &srcPtrA->arrE ); in bim_UInt16BytePyrImage_equal()
114 const struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_arrPtr() argument
119 uint32 baseSizeL = ( ptrA->widthE * ptrA->heightE ) >> 1; in bim_UInt16BytePyrImage_arrPtr()
122 if( levelA >= ptrA->depthE ) in bim_UInt16BytePyrImage_arrPtr()
125 "levelA = %i out of range [0,%i]", levelA, ptrA->depthE - 1 ); in bim_UInt16BytePyrImage_arrPtr()
134 return ptrA->arrE.arrPtrE + offsL; in bim_UInt16BytePyrImage_arrPtr()
140 const struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_heapSize() argument
151 return bbs_UInt16Arr_heapSize( cpA, &ptrA->arrE, sizeL ); in bim_UInt16BytePyrImage_heapSize()
165 struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_create() argument
175 if( ptrA->arrE.arrPtrE != 0 ) in bim_UInt16BytePyrImage_create()
177 bim_UInt16BytePyrImage_size( cpA, ptrA, widthA, heightA, depthA ); in bim_UInt16BytePyrImage_create()
199 ptrA->widthE = widthA; in bim_UInt16BytePyrImage_create()
200 ptrA->heightE = heightA; in bim_UInt16BytePyrImage_create()
201 ptrA->depthE = depthA; in bim_UInt16BytePyrImage_create()
207 bbs_UInt16Arr_create( cpA, &ptrA->arrE, sizeL, mspA ); in bim_UInt16BytePyrImage_create()
213 struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_size() argument
239 ptrA->widthE = widthA; in bim_UInt16BytePyrImage_size()
240 ptrA->heightE = heightA; in bim_UInt16BytePyrImage_size()
241 ptrA->depthE = depthA; in bim_UInt16BytePyrImage_size()
248 if( sizeL > ptrA->arrE.allocatedSizeE ) in bim_UInt16BytePyrImage_size()
255 bbs_UInt16Arr_size( cpA, &ptrA->arrE, sizeL ); in bim_UInt16BytePyrImage_size()
269 const struct bim_UInt16BytePyrImage* ptrA ) in bim_UInt16BytePyrImage_memSize() argument
273 + bbs_SIZEOF16( ptrA->widthE ) in bim_UInt16BytePyrImage_memSize()
274 + bbs_SIZEOF16( ptrA->heightE ) in bim_UInt16BytePyrImage_memSize()
275 + bbs_SIZEOF16( ptrA->depthE ) in bim_UInt16BytePyrImage_memSize()
276 + bbs_UInt16Arr_memSize( cpA, &ptrA->arrE ); in bim_UInt16BytePyrImage_memSize()
282 const struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_memWrite() argument
285 uint32 memSizeL = bim_UInt16BytePyrImage_memSize( cpA, ptrA ); in bim_UInt16BytePyrImage_memWrite()
288 memPtrA += bbs_memWrite32( &ptrA->widthE, memPtrA ); in bim_UInt16BytePyrImage_memWrite()
289 memPtrA += bbs_memWrite32( &ptrA->heightE, memPtrA ); in bim_UInt16BytePyrImage_memWrite()
290 memPtrA += bbs_memWrite32( &ptrA->depthE, memPtrA ); in bim_UInt16BytePyrImage_memWrite()
291 bbs_UInt16Arr_memWrite( cpA, &ptrA->arrE, memPtrA ); in bim_UInt16BytePyrImage_memWrite()
298 struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_memRead() argument
310 ptrA->widthE = widthL; in bim_UInt16BytePyrImage_memRead()
311 ptrA->heightE = heightL; in bim_UInt16BytePyrImage_memRead()
312 ptrA->depthE = depthL; in bim_UInt16BytePyrImage_memRead()
313 bbs_UInt16Arr_memRead( cpA, &ptrA->arrE, memPtrA, mspA ); in bim_UInt16BytePyrImage_memRead()
315 if( memSizeL != bim_UInt16BytePyrImage_memSize( cpA, ptrA ) ) in bim_UInt16BytePyrImage_memRead()
334 const struct bim_UInt16BytePyrImage* ptrA, in bim_UInt16BytePyrImage_overlayUInt16() argument
337 uint16ImageA->widthE = ptrA->widthE; in bim_UInt16BytePyrImage_overlayUInt16()
338 uint16ImageA->heightE = ptrA->heightE; in bim_UInt16BytePyrImage_overlayUInt16()
339 uint16ImageA->arrE.sizeE = ptrA->widthE * ptrA->heightE; in bim_UInt16BytePyrImage_overlayUInt16()
340 uint16ImageA->arrE.allocatedSizeE = ptrA->widthE * ptrA->heightE; in bim_UInt16BytePyrImage_overlayUInt16()
341 uint16ImageA->arrE.arrPtrE = ptrA->arrE.arrPtrE; in bim_UInt16BytePyrImage_overlayUInt16()