Home | History | Annotate | Download | only in ge

Lines Matching defs:start_col

360         int start_col = left;

361 if (start_col < 0) {
362 start_col = 0;
368 if (start_col >= end_col) {
377 FX_LPBYTE src_scan = src_buf + row * src_pitch + (start_col - left) * 3;
378 FX_LPBYTE dest_scan = dest_buf + dest_row * dest_pitch + (start_col << 2);
381 for (int col = start_col; col < end_col; col ++) {
404 if (start_col > left) {
413 for (int col = start_col + 1; col < end_col - 1; col ++) {
435 if (start_col > left) {
448 for (int col = start_col + 1; col < end_col - 1; col ++) {
468 for (int col = start_col; col < end_col; col ++) {
513 int src_alpha1 = start_col > left ? ((src_scan[-1] + src_scan[0] + src_scan[1]) / 3) : ((src_scan[0] + src_scan[1]) / 3);
535 if (start_col > left) {
553 for (int col = start_col + 1; col < end_col; col ++) {
598 int src_alpha1 = start_col > left ? ((src_scan[-2] + src_scan[-1] + src_scan[0]) / 3) : ((src_scan[0]) / 3);
620 if (start_col > left) {
638 for (int col = start_col + 1; col < end_col; col ++) {
690 FX_LPBYTE src_scan = src_buf + row * src_pitch + (start_col - left) * 3;
691 FX_LPBYTE dest_scan = dest_buf + dest_row * dest_pitch + start_col * Bpp;
694 for (int col = start_col; col < end_col; col ++) {
719 if (start_col > left) {
727 for (int col = start_col + 1; col < end_col - 1; col ++) {
748 if (start_col > left) {
760 for (int col = start_col + 1; col < end_col - 1; col ++) {
779 for (int col = start_col; col < end_col; col ++) {
813 int src_alpha1 = start_col > left ? (src_scan[0] + src_scan[1] + src_scan[-1]) / 3 : (src_scan[0] + src_scan[1]) / 3;
822 if (start_col > left) {
839 for (int col = start_col + 1; col < end_col; col ++) {
873 int src_alpha1 = start_col > left ? (src_scan[0] + src_scan[-2] + src_scan[-1]) / 3 : src_scan[0] / 3;
882 if (start_col > left) {
899 for (int col = start_col + 1; col < end_col; col ++) {