Lines Matching refs:gm
53 final int bpp, am, rm, gm, bm, as, rs, gs, bs, im, is; field in ImageToAwt.DecodeParams
55 …public DecodeParams(int bpp, int am, int rm, int gm, int bm, int as, int rs, int gs, int bs, int i… in DecodeParams() argument
59 this.gm = gm; in DecodeParams()
83 this.gm = 0; in DecodeParams()
218 int reductionG = 8 - Integer.bitCount(p.gm); in convert()
259 g = (g << p.gs) & p.gm; in convert()
323 if (inParams.rm != 0 && inParams.gm == 0 && inParams.bm == 0) { in convert()
325 } else if (inParams.rm != 0 && inParams.gm != 0 && inParams.bm != 0) { in convert()
331 int expansionG = 8 - Integer.bitCount(inParams.gm); in convert()
342 int g = (inputPixel & inParams.gm) >> inParams.gs; in convert()
393 if (p.rm != 0 && p.gm == 0 && p.bm == 0) in convert()
395 else if (p.rm != 0 && p.gm != 0 && p.bm != 0) in convert()
434 int expansionG = 8 - Integer.bitCount(p.gm); in convert()
452 int g = (inputPixel & p.gm) >> p.gs; in convert()