Lines Matching refs:cell0
191 int cell0, rest; in LinLerp1D() local
205 cell0 = FIXED_TO_INT(val3); // Cell is 16 MSB bits in LinLerp1D()
208 y0 = LutTable[cell0]; in LinLerp1D()
209 y1 = LutTable[cell0+1]; in LinLerp1D()
229 int cell0, cell1; in LinLerp1Dfloat() local
242 cell0 = (int) floor(val2); in LinLerp1Dfloat()
246 rest = val2 - cell0; in LinLerp1Dfloat()
248 y0 = LutTable[cell0] ; in LinLerp1Dfloat()
295 int cell0, cell1; in Eval1InputFloat() local
309 cell0 = (int) floor(val2); in Eval1InputFloat()
313 rest = val2 - cell0; in Eval1InputFloat()
315 cell0 *= p -> opta[0]; in Eval1InputFloat()
320 y0 = LutTable[cell0 + OutChan] ; in Eval1InputFloat()