Lines Matching refs:intp

193         tmp1[0] = intp<float>(re, clut_image.data[index + 4], clut_image.data[index]);  in getRGB()
194 tmp1[1] = intp<float>(re, clut_image.data[index + 5], clut_image.data[index + 1]); in getRGB()
195 tmp1[2] = intp<float>(re, clut_image.data[index + 6], clut_image.data[index + 2]); in getRGB()
200 tmp2[0] = intp<float>(re, clut_image.data[index + 4], clut_image.data[index]); in getRGB()
201 tmp2[1] = intp<float>(re, clut_image.data[index + 5], clut_image.data[index + 1]); in getRGB()
202 tmp2[2] = intp<float>(re, clut_image.data[index + 6], clut_image.data[index + 2]); in getRGB()
204 out_rgbx[0] = intp<float>(gr, tmp2[0], tmp1[0]); in getRGB()
205 out_rgbx[1] = intp<float>(gr, tmp2[1], tmp1[1]); in getRGB()
206 out_rgbx[2] = intp<float>(gr, tmp2[2], tmp1[2]); in getRGB()
210 tmp1[0] = intp<float>(re, clut_image.data[index + 4], clut_image.data[index]); in getRGB()
211 tmp1[1] = intp<float>(re, clut_image.data[index + 5], clut_image.data[index + 1]); in getRGB()
212 tmp1[2] = intp<float>(re, clut_image.data[index + 6], clut_image.data[index + 2]); in getRGB()
216 tmp2[0] = intp<float>(re, clut_image.data[index + 4], clut_image.data[index]); in getRGB()
217 tmp2[1] = intp<float>(re, clut_image.data[index + 5], clut_image.data[index + 1]); in getRGB()
218 tmp2[2] = intp<float>(re, clut_image.data[index + 6], clut_image.data[index + 2]); in getRGB()
220 tmp1[0] = intp<float>(gr, tmp2[0], tmp1[0]); in getRGB()
221 tmp1[1] = intp<float>(gr, tmp2[1], tmp1[1]); in getRGB()
222 tmp1[2] = intp<float>(gr, tmp2[2], tmp1[2]); in getRGB()
224 out_rgbx[0] = intp<float>(bl, tmp1[0], out_rgbx[0]); in getRGB()
225 out_rgbx[1] = intp<float>(bl, tmp1[1], out_rgbx[1]); in getRGB()
226 out_rgbx[2] = intp<float>(bl, tmp1[2], out_rgbx[2]); in getRGB()
228 out_rgbx[0] = intp<float>(strength, out_rgbx[0], *r); in getRGB()
229 out_rgbx[1] = intp<float>(strength, out_rgbx[1], *g); in getRGB()
230 out_rgbx[2] = intp<float>(strength, out_rgbx[2], *b); in getRGB()