| /src/external/gpl3/gcc/dist/contrib/header-tools/ |
| gcc-order-headers | 151 def get_new_order (src_h, desired_order): 164 if x in src_h and x not in exclude_processing: 173 if "diagnostic.h" in src_h: 175 elif "diagnostic-core.h" in src_h: 183 ii = indirectly_included (f, src_h) 292 src_h = list () 322 src_h.append (nm) 358 new_order = get_new_order (src_h, desired_order) 367 iby = indirectly_included (nm, src_h)
|
| /src/external/gpl3/gcc.old/dist/contrib/header-tools/ |
| gcc-order-headers | 151 def get_new_order (src_h, desired_order): 164 if x in src_h and x not in exclude_processing: 173 if "diagnostic.h" in src_h: 175 elif "diagnostic-core.h" in src_h: 183 ii = indirectly_included (f, src_h) 292 src_h = list () 322 src_h.append (nm) 358 new_order = get_new_order (src_h, desired_order) 367 iby = indirectly_included (nm, src_h)
|
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_plane_helper.c | 123 .src_h = drm_rect_height(src), 157 uint32_t src_w, uint32_t src_h, 171 .y2 = src_y + src_h,
|
| drm_plane.c | 607 uint32_t src_w, uint32_t src_h) 640 ret = drm_framebuffer_check_src_coords(src_x, src_y, src_w, src_h, fb); 685 uint32_t src_w, uint32_t src_h, 707 src_x, src_y, src_w, src_h); 714 src_x, src_y, src_w, src_h, ctx); 737 uint32_t src_w, uint32_t src_h, 757 src_x, src_y, src_w, src_h); 763 src_x, src_y, src_w, src_h, ctx); 773 uint32_t src_w, uint32_t src_h) 784 src_x, src_y, src_w, src_h, &ctx) 864 uint32_t src_w = 0, src_h = 0; local [all...] |
| drm_rect.c | 214 int src_h = drm_rect_height(src); local 216 int vscale = drm_calc_scale(src_h, dst_h);
|
| drm_atomic.c | 614 new_plane_state->src_h > fb_height || 615 new_plane_state->src_y > fb_height - new_plane_state->src_h) { 621 new_plane_state->src_h >> 16, 622 ((new_plane_state->src_h & 0xffff) * 15625) >> 10, 1289 plane_state->src_h = 0; 1424 primary_state->src_h = hdisplay << 16; 1427 primary_state->src_h = vdisplay << 16;
|
| drm_framebuffer.c | 82 uint32_t src_w, uint32_t src_h, 93 src_h > fb_height || 94 src_y > fb_height - src_h) { 98 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
|
| drm_crtc_internal.h | 200 uint32_t src_w, uint32_t src_h,
|
| drm_atomic_uapi.c | 565 state->src_h = val; 633 *val = state->src_h;
|
| drm_atomic_helper.c | 2862 * @src_h: height of source rectangle in @fb 2876 uint32_t src_w, uint32_t src_h, 2905 plane_state->src_h = src_h;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
| nouveau_dispnv04_overlay.c | 99 uint32_t src_x, uint32_t src_y, uint32_t src_w, uint32_t src_h, 102 if (crtc_w < (src_w >> shift) || crtc_h < (src_h >> shift)) { 104 src_w, src_h, crtc_w, crtc_h); 122 uint32_t src_w, uint32_t src_h, 143 src_h >>= 16; 145 ret = verify_scaling(fb, shift, 0, 0, src_w, src_h, crtc_w, crtc_h); 160 nvif_wr32(dev, NV_PVIDEO_SIZE_IN(flip), src_h << 16 | src_w); 163 nvif_wr32(dev, NV_PVIDEO_DT_DY(flip), (src_h << 20) / crtc_h); 371 uint32_t src_w, uint32_t src_h, 387 src_h >>= 16 [all...] |
| /src/sys/external/bsd/drm2/dist/drm/virtio/ |
| virtgpu_plane.c | 154 plane->state->src_h >> 16, 170 plane->state->src_h != old_state->src_h || 178 plane->state->src_h >> 16, 184 plane->state->src_h >> 16,
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_plane.h | 44 * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the 115 /** @src_h: height of visible portion of plane (in 16.16) */ 116 uint32_t src_h, src_w; member in struct:drm_plane_state 238 .y2 = state->src_y + state->src_h, 267 * the src_x, src_y, src_w and src_h parameters (as 16.16 fixed point 290 uint32_t src_w, uint32_t src_h,
|
| drm_atomic_helper.h | 118 uint32_t src_w, uint32_t src_h,
|
| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| intel_sprite.c | 261 u32 src_x, src_y, src_w, src_h, hsub, vsub; local 273 src_h = drm_rect_height(src) >> 16; 276 src_w << 16, src_h << 16); 295 if (src_y % vsub || src_h % vsub) { 297 src_y, src_h, vsub, rotated ? "rotated " : ""); 337 unsigned int src_w, src_h, dst_w, dst_h; local 347 src_h = drm_rect_height(&plane_state->uapi.src) >> 16; 353 dst_h = min(src_h, dst_h); 355 return DIV64_U64_ROUND_UP(mul_u32_u32(pixel_rate * num, src_w * src_h), 579 u32 src_h = drm_rect_height(&plane_state->uapi.src) >> 16 local 1444 u32 src_h = drm_rect_height(&plane_state->uapi.src) >> 16; local 1756 u32 src_h = drm_rect_height(&plane_state->uapi.src) >> 16; local 1872 int src_x, src_w, src_h, crtc_w, crtc_h; local [all...] |
| intel_fbc.c | 84 *height = cache->plane.src_h; 663 cache->plane.src_h = drm_rect_height(&plane_state->uapi.src) >> 16;
|
| intel_display.c | 3143 unsigned int src_w, src_h; local 3153 src_h = drm_rect_height(&plane_state->uapi.src) >> 16; 3164 src_w << 16, src_h << 16, 3182 height = src_h / vsub; 3631 plane_state->src_h = fb->height << 16; 4246 int src_h = drm_rect_height(&plane_state->uapi.src) >> 16; local 4250 src_y += src_h - 1; 5949 int src_w, int src_h, int dst_w, int dst_h, 5966 if (src_w != dst_w || src_h != dst_h) 6006 (src_h < SKL_MIN_YUV_420_SRC_H || src_w < SKL_MIN_YUV_420_SRC_W)) 11179 int src_h = drm_rect_height(&plane_state->uapi.src) >> 16; local 12126 int src_h = drm_rect_height(&state->uapi.src) >> 16; local [all...] |
| /src/external/mit/xorg/lib/libxcb/files/ |
| xv.h | 810 uint16_t src_h; member in struct:xcb_xv_put_image_request_t 838 uint16_t src_h; member in struct:xcb_xv_shm_put_image_request_t 1982 uint16_t src_h, 2009 uint16_t src_h, 2050 uint16_t src_h, 2078 uint16_t src_h,
|
| xv.c | 2123 uint16_t src_h, 2151 xcb_out.src_h = src_h; 2182 uint16_t src_h, 2210 xcb_out.src_h = src_h; 2265 uint16_t src_h, 2294 xcb_out.src_h = src_h; 2324 uint16_t src_h, [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_display.c | 709 u32 src_h = 1, dst_h = 1; local 734 src_h = crtc->mode.hdisplay; 754 src_h = crtc->mode.hdisplay; 763 a.full = dfixed_const(src_h);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
| nouveau_dispnv50_wndwc57e.c | 60 evo_data(push, (asyw->state.src_h >> 16) << 16 |
|
| nouveau_dispnv50_wndwc37e.c | 151 evo_data(push, (asyw->state.src_h >> 16) << 16 |
|
| nouveau_dispnv50_wndw.c | 287 asyw->scale.sh = asyw->state.src_h >> 16;
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_display.c | 1692 u32 src_h = 1, dst_h = 1; local 1718 src_h = crtc->mode.hdisplay; 1739 src_h = crtc->mode.hdisplay; 1761 a.full = dfixed_const(src_h);
|
| /src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
| drm_mode.h | 292 __u32 src_h; member in struct:drm_mode_set_plane
|