Home | History | Annotate | Download | only in mosaic

Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1;
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off];
61 tmpf[1] += in[2] * ciTable[40 - off];
62 tmpf[1] += in[3] * ciTable[80 - off];
63 in += img->pitch;
64 tmpf[2] = in[0] * ciTable[off + 40];
65 tmpf[2] += in[1] * ciTable[off];
66 tmpf[2] += in[2] * ciTable[40 - off];
67 tmpf[2] += in[3] * ciTable[80 - off];
68 in += img->pitch;
69 tmpf[3] = in[0] * ciTable[off + 40];
70 tmpf[3] += in[1] * ciTable[off];
71 tmpf[3] += in[2] * ciTable[40 - off];
72 tmpf[3] += in[3] * ciTable[80 - off];