Home
last modified time | relevance | path

Searched refs:cell0 (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/third_party/lcms/src/
Dcmsintrp.c199 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()
[all …]
/external/python/cpython2/Lib/test/
Dtest_py3kwarn.py121 cell0, = f(0).func_closure
124 self.assertWarning(cell0 == cell1, w, expected)
126 self.assertWarning(cell0 < cell1, w, expected)
/external/cldr/tools/java/org/unicode/cldr/tool/
DTablePrinter.java182 Comparable cell0 = rows.get(0)[i]; in addCell() local
184 cell.compareTo(cell0); in addCell()
186 … throw new IllegalArgumentException("Can't compare column " + i + ", " + cell + ", " + cell0); in addCell()