Lines Matching refs:p1
48 static void ImplRotate8_90( unsigned char* p1, const unsigned char* p2, in ImplRotate8_90() argument
54 *(p1++) = *p2; in ImplRotate8_90()
56 *(p1++) = 0; in ImplRotate8_90()
63 static void ImplRotate8_180( unsigned char* p1, int xmax, int ymax, int nPad ) in ImplRotate8_180() argument
65 unsigned char* p2 = p1 + ymax * (xmax + nPad); in ImplRotate8_180()
72 *p2 = *p1; in ImplRotate8_180()
73 *(p1++) = cTmp; in ImplRotate8_180()
75 p1 += nPad; in ImplRotate8_180()
80 while( p1 < p2 ) in ImplRotate8_180()
83 *p2 = *p1; in ImplRotate8_180()
84 *(p1++) = cTmp; in ImplRotate8_180()
91 static void ImplRotate1_90( unsigned char* p1, const unsigned char* p2, in ImplRotate1_90() argument
104 *(p1++) = (unsigned char)nTemp; in ImplRotate1_90()
114 *(p1++) = (unsigned char)nTemp; in ImplRotate1_90()
118 *(p1++) = 0; in ImplRotate1_90()
131 static void ImplRotate1_180( unsigned char* p1, const unsigned char* p2, in ImplRotate1_180() argument
147 *(p1++) = (unsigned char)nTemp; in ImplRotate1_180()
159 *(p1++) = (unsigned char)nTemp; in ImplRotate1_180()
162 p1 += nPad; in ImplRotate1_180()