Lines Matching refs:cell0
199 int cell0, rest; in LinLerp1D() local
213 cell0 = FIXED_TO_INT(val3); // Cell is 16 MSB bits in LinLerp1D()
216 y0 = LutTable[cell0]; in LinLerp1D()
217 y1 = LutTable[cell0+1]; in LinLerp1D()
237 int cell0, cell1; in LinLerp1Dfloat() local
250 cell0 = (int) floor(val2); in LinLerp1Dfloat()
254 rest = val2 - cell0; in LinLerp1Dfloat()
256 y0 = LutTable[cell0] ; in LinLerp1Dfloat()
303 int cell0, cell1; in Eval1InputFloat() local
317 cell0 = (int) floor(val2); in Eval1InputFloat()
321 rest = val2 - cell0; in Eval1InputFloat()
323 cell0 *= p -> opta[0]; in Eval1InputFloat()
328 y0 = LutTable[cell0 + OutChan] ; in Eval1InputFloat()