Home | History | Annotate | Download | only in java

Lines Matching refs:Math

78     int digitsAfterDecimal = figs - (int)Math.ceil(Math.log10(Math.abs(val)));
172 int width = doTile ? Math.min(tilew, w - x) : scaledw;
173 int height = doTile ? Math.min(tileh, h - y) : scaledh;
260 dstBuf[rindex] = (byte)Math.abs((dstBuf[rindex] & 0xff) - lum);
261 dstBuf[gindex] = (byte)Math.abs((dstBuf[gindex] & 0xff) - lum);
262 dstBuf[bindex] = (byte)Math.abs((dstBuf[bindex] & 0xff) - lum);
269 (byte)Math.abs((dstBuf[pitch * y + x] & 0xff) -
335 int width = Math.min(tilew, w - x);
336 int height = Math.min(tileh, h - y);
538 t[tile].width = Math.min(_tilew, _w - x);
539 t[tile].height = Math.min(_tileh, _h - y);