Home | History | Annotate | Download | only in b_ImageEm

Lines Matching refs:widthL

303 	uint32 memSizeL, versionL, widthL, heightL, depthL;
307 memPtrA += bbs_memRead32( &widthL, memPtrA );
311 ptrA->widthE = widthL;
351 uint32 iL, jL, layerL, widthL, heightL;
355 widthL = dstPtrA->widthE;
358 dstL = srcL + widthL * heightL;
363 for( iL = ( widthL >> 1 ); iL > 0; iL-- )
366 *dstL++ = ( ( *srcL + *( srcL + 1 ) + *( srcL + widthL ) + *( srcL + widthL + 1 ) ) + 2 ) >> 2;
369 srcL += widthL;
371 widthL >>= 1;