Lines Matching refs:srcPtrL
43 const uint16* srcPtrL; in bim_createHisto16() local
52 srcPtrL = imagePtrA->arrE.arrPtrE; in bim_createHisto16()
57 dstPtrL[ ( *srcPtrL & 0x0FF ) ]++; in bim_createHisto16()
58 dstPtrL[ ( *srcPtrL >> 8 ) ]++; in bim_createHisto16()
59 srcPtrL++; in bim_createHisto16()
71 const uint16* srcPtrL; in bim_createHistoOfSection16() local
102 srcPtrL = imagePtrA->arrE.arrPtrE + sectionL.y1E * imgWidthL + sectionL.x1E; in bim_createHistoOfSection16()
108 dstPtrL[ ( *srcPtrL & 0x0FF ) ]++; in bim_createHistoOfSection16()
109 dstPtrL[ ( *srcPtrL >> 8 ) ]++; in bim_createHistoOfSection16()
110 srcPtrL++; in bim_createHistoOfSection16()
113 srcPtrL += imgWidthL - sectWidthL; in bim_createHistoOfSection16()