Home | History | Annotate | Download | only in mosaic

Lines Matching refs:off

52   int off = (int)(xfrac * CTAPS);
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];
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];
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];
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];
75 off = (int)(yfrac * CTAPS);
76 return (ciTable[off + 40] * tmpf[0] + ciTable[off] * tmpf[1] +
77 ciTable[40 - off] * tmpf[2] + ciTable[80 - off] * tmpf[3]);