Searched refs:ODITHER_MASK (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant1.c76 /* NB: if ODITHER_SIZE is not a power of 2, ODITHER_MASK uses will break */
78 #define ODITHER_MASK (ODITHER_SIZE-1) /* mask for wrapping around counters */ macro
558 col_index = (col_index + 1) & ODITHER_MASK;
562 row_index = (row_index + 1) & ODITHER_MASK;
605 col_index = (col_index + 1) & ODITHER_MASK;
607 row_index = (row_index + 1) & ODITHER_MASK;

Completed in 32 milliseconds