Home | History | Annotate | Download | only in templates

Lines Matching refs:lookupIndex

1651     int lookupIndex = 1;  // start off with anything other than zero to make correction work
1669 // J, lookupIndex is zero. We now compute a correction number of 9 (radix-1).
1687 ((lookupIndex == 0) || (correction != 0 && lookupIndex == radix - 1))
1691 lookupIndex = (int)(val + correction) % radix;
1697 if (lookupIndex == 0 && val == 0)
1701 buf[charPos--] = table[lookupIndex]; // left to right or top to bottom
1733 int lookupIndex = 1; // start off with anything other than zero to make correction work
1806 lookupIndex = 1; // initialize for each table
1828 lookupIndex = (int)mult / groups.getInt(k);
1831 if (lookupIndex == 0 && mult == 0)
1838 if (lookupIndex < table.length)
1843 buf[charPos++] = table[lookupIndex];
1849 if (lookupIndex == 1 && i == multiplier.getLength() - 1){}
1851 buf[charPos++] = table[lookupIndex];
1895 lookupIndex = (int)val / groups.getInt(count);
1901 if (lookupIndex == 0 && val == 0)
1904 if (lookupIndex < table.length)
1908 buf[charPos++] = table[lookupIndex]; // left to right or top to bottom