Lines Matching refs:crop_width

226   uint32  crop_width;  member
5082 uint32 width, length, crop_width, crop_length; in computeInputPixelOffsets() local
5320 crop_width = endx - startx + 1; in computeInputPixelOffsets()
5323 if (crop_width <= 0) in computeInputPixelOffsets()
5329 if (crop_width > image->width) in computeInputPixelOffsets()
5330 crop_width = image->width; in computeInputPixelOffsets()
5341 off->crop_width = crop_width; in computeInputPixelOffsets()
5397 offsets.crop_width = image->width; in getCropOffsets()
5411 offsets.crop_width, offsets.crop_length); in getCropOffsets()
5450 (uint32)(offsets.crop_width * 1.0 * (seg - 1) / total); in getCropOffsets()
5452 (int32)(offsets.crop_width * 1.0 * seg / total); in getCropOffsets()
5472 zwidth = offsets.crop_width; in getCropOffsets()
5507 (uint32)(offsets.crop_width * (total - seg) * 1.0 / total); in getCropOffsets()
5509 (offsets.crop_width * (total - seg + 1) * 1.0 / total); in getCropOffsets()
5530 zwidth = offsets.crop_width; in getCropOffsets()
6281 uint32 crop_width, crop_length, img_width /*, img_length */; in extractCompositeRegions() local
6322 crop_width = last_col - first_col + 1; in extractCompositeRegions()
6326 crop->regionlist[i].width = crop_width; in extractCompositeRegions()
6331 dst_rowsize = (((crop_width * bps * count) + 7) / 8); in extractCompositeRegions()
6338 if ((i > 0) && (crop_width != crop->regionlist[i - 1].width)) in extractCompositeRegions()
6345 crop->combined_width = crop_width; in extractCompositeRegions()
6425 crop->combined_width += crop_width; in extractCompositeRegions()
6428 trailing_bits = (crop_width * bps * count) % 8; in extractCompositeRegions()
6497 prev_width += (crop_width * bps * count) / 8; in extractCompositeRegions()
6531 uint32 crop_width, crop_length, img_width /*, img_length */; in extractSeparateRegion() local
6560 crop_width = last_col - first_col + 1; in extractSeparateRegion()
6563 crop->regionlist[region].width = crop_width; in extractSeparateRegion()
6570 dst_rowsize = (((crop_width * bps * spp) + 7) / 8); in extractSeparateRegion()