image/jpeg.decoder.height (field)

10 uses

	image/jpeg (current package)
		reader.go#L123: 	width, height int
		reader.go#L328: 	d.height = int(d.tmp[1])<<8 + int(d.tmp[2])
		reader.go#L794: 			Height:     d.height,
		reader.go#L804: 			Height:     d.height,
		reader.go#L810: 			Height:     d.height,
		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#L148: 	myy := (d.height + 8*v0 - 1) / (8 * v0)
		scan.go#L212: 						if bx*8 >= d.width || by*8 >= d.height {
		scan.go#L470: 		for by := 0; by*v < d.height; by++ {