Lines Matching refs:chop_info

2902     chop_info;  in XChopImage()  local
3098 chop_info.width=0; in XChopImage()
3099 chop_info.height=0; in XChopImage()
3100 chop_info.x=0; in XChopImage()
3101 chop_info.y=0; in XChopImage()
3115 " %.20gx%.20g%+.20g%+.20g",(double) chop_info.width,(double) in XChopImage()
3116 chop_info.height,(double) chop_info.x,(double) chop_info.y); in XChopImage()
3180 chop_info.width=(size_t) (segment_info.x2-segment_info.x1+1); in XChopImage()
3181 chop_info.x=(ssize_t) windows->image.x+segment_info.x1; in XChopImage()
3182 chop_info.height=0; in XChopImage()
3183 chop_info.y=0; in XChopImage()
3186 chop_info.width=(size_t) (segment_info.x1-segment_info.x2+1); in XChopImage()
3187 chop_info.x=(ssize_t) windows->image.x+segment_info.x2; in XChopImage()
3192 chop_info.width=0; in XChopImage()
3193 chop_info.height=(size_t) (segment_info.y2-segment_info.y1+1); in XChopImage()
3194 chop_info.x=0; in XChopImage()
3195 chop_info.y=(ssize_t) windows->image.y+segment_info.y1; in XChopImage()
3198 chop_info.height=(size_t) (segment_info.y1-segment_info.y2+1); in XChopImage()
3199 chop_info.y=(ssize_t) windows->image.y+segment_info.y2; in XChopImage()
3215 (unsigned int) chop_info.width; in XChopImage()
3217 (unsigned int) chop_info.height; in XChopImage()
3225 chop_info.x+=x; in XChopImage()
3226 chop_info.x=(ssize_t) (scale_factor*chop_info.x+0.5); in XChopImage()
3227 chop_info.width=(unsigned int) (scale_factor*chop_info.width+0.5); in XChopImage()
3229 chop_info.y+=y; in XChopImage()
3230 chop_info.y=(ssize_t) (scale_factor*chop_info.y+0.5); in XChopImage()
3231 chop_info.height=(unsigned int) (scale_factor*chop_info.height+0.5); in XChopImage()
3235 chop_image=ChopImage(*image,&chop_info,exception); in XChopImage()