Lines Matching full:mxx
12 func (d *decoder) makeImg(mxx, myy int) {
14 m := image.NewGray(image.Rect(0, 0, 8*mxx, 8*myy))
40 m := image.NewYCbCr(image.Rect(0, 0, 8*h0*mxx, 8*v0*myy), subsampleRatio)
45 d.blackPix = make([]byte, 8*h3*mxx*8*v3*myy)
46 d.blackStride = 8 * h3 * mxx
143 // mxx and myy are the number of MCUs (Minimum Coded Units) in the image.
145 mxx := (d.width + 8*h0 - 1) / (8 * h0)
148 d.makeImg(mxx, myy)
154 d.progCoeffs[compIndex] = make([]block, mxx*myy*d.comp[compIndex].h*d.comp[compIndex].v)
171 for mx := 0; mx < mxx; mx++ {
207 q := mxx * hi
218 b = d.progCoeffs[compIndex][by*mxx*hi+bx]
291 d.progCoeffs[compIndex][by*mxx*hi+bx] = b
342 if d.ri > 0 && mcu%d.ri == 0 && mcu < mxx*myy {