Home | History | Annotate | Download | only in converters

Lines Matching refs:gm

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