image/jpeg.decoder.width (field)

11 uses

	image/jpeg (current package)
		reader.go#L123: 	width, height int
		reader.go#L329: 	d.width = int(d.tmp[3])<<8 + int(d.tmp[4])
		reader.go#L793: 			Width:      d.width,
		reader.go#L803: 			Width:      d.width,
		reader.go#L809: 			Width:      d.width,
		scan.go#L15: 		d.img1 = m.SubImage(image.Rect(0, 0, d.width, d.height)).(*image.Gray)
		scan.go#L41: 	d.img3 = m.SubImage(image.Rect(0, 0, d.width, d.height)).(*image.YCbCr)
		scan.go#L147: 	mxx := (d.width + 8*h0 - 1) / (8 * h0)
		scan.go#L212: 						if bx*8 >= d.width || by*8 >= d.height {
		scan.go#L462: 	mxx := (d.width + 8*h0 - 1) / (8 * h0)
		scan.go#L471: 			for bx := 0; bx*h < d.width; bx++ {