Lines Matching defs:target

1900 status_t nv_general_validate_pic_size (display_mode *target, uint32 *bytes_per_row, bool *acc_mode)
1920 switch (target->space)
1928 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1938 switch (target->space)
1946 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1973 switch (target->space)
1981 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1989 /* switch (target->space)
1997 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
2012 switch(target->space)
2020 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
2034 switch(target->space)
2042 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
2064 switch(target->space)
2072 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
2080 /* switch(target->space)
2088 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
2100 if (target->virtual_width > max_acc_width) *acc_mode = false;
2104 if (target->virtual_height > 4096) *acc_mode = false;
2107 if (target->virtual_width > max_crtc_width) target->virtual_width = max_crtc_width;
2111 if (target->virtual_height > 65535) target->virtual_height = 65535;
2120 video_pitch = ((target->virtual_width + crtc_mask) & ~crtc_mask);
2122 video_pitch = ((target->virtual_width + acc_mask) & ~acc_mask);
2125 video_pitch = ((target->virtual_width + crtc_mask) & ~crtc_mask);
2135 if (target->virtual_height > 4096) *acc_mode = false;
2141 if (target->virtual_width > (max_crtc_width & ~acc_mask))
2142 target->virtual_width = (max_crtc_width & ~acc_mask);
2146 if (target->virtual_width > max_crtc_width)
2147 target->virtual_width = max_crtc_width;
2152 if (target->virtual_height > 65535) target->virtual_height = 65535;
2161 video_pitch = ((target->virtual_width + crtc_mask) & ~crtc_mask);
2163 video_pitch = ((target->virtual_width + acc_mask) & ~acc_mask);
2166 video_pitch = ((target->virtual_width + crtc_mask) & ~crtc_mask);
2170 video_pitch, target->space));
2171 if (target->virtual_width != video_pitch)
2173 (video_pitch - target->virtual_width)));