Lines Matching refs:left
116 * @crop_left : x coordinate of top left corner of rectangle
117 * @crop_top : y coordinate of top left corner of rectangle
147 * @crop_left : x coordinate of top left corner of rectangle
148 * @crop_top : y coordinate of top left corner of rectangle
169 CDBG("%s: before bounding left %d, top %d, width %d, height %d",
173 CDBG("%s: after bounding left %d, top %d, width %d, height %d",
183 * @left : x coordinate of top left corner of rectangle
184 * @top : y coordinate of top left corner of rectangle
192 void QCamera3CropRegionMapper::boundToSize(int32_t& left, int32_t& top,
195 if (left < 0) {
196 left = 0;
202 if ((left + width) > bound_w) {
203 width = bound_w - left;