/Linux-v5.15/arch/arm/crypto/ |
D | chacha-scalar-core.S | 23 * need to be rotated right to arrive at the correct values, and 'drot' 152 // x4-x7 are rotated by 'brot'; x12-x15 are rotated by 'drot'. 177 // x4-x7 are rotated by 'brot'; x12-x15 are rotated by 'drot'. 278 // x4-x7 are rotated by 'brot'; x12-x15 are rotated by 'drot'.
|
/Linux-v5.15/drivers/gpu/drm/i915/selftests/ |
D | i915_vma.c | 392 pr_err("Invalid sg.length, found %d, expected %lu for rotated page (%d, %d) [src index %lu]\n", in assert_rotated() 399 pr_err("Invalid address for rotated page (%d, %d) [src index %lu]\n", in assert_rotated() 419 pr_err("Invalid sg.length, found %d, expected %u for rotated page (%d, %d)\n", in assert_rotated() 580 * that the page layout within the rotated VMA match our expectations. in igt_vma_rotate_remap() 669 for (n = 0; n < ARRAY_SIZE(view.rotated.plane); n++) { in igt_vma_rotate_remap() 671 sg = assert_rotated(obj, &view.rotated, n, sg); in igt_vma_rotate_remap() 677 "rotated" : "remapped", n, in igt_vma_rotate_remap() 983 .rotated.plane[0] = *p, in igt_vma_remapped_gtt() 985 struct intel_remapped_plane_info *plane_info = view.rotated.plane; in igt_vma_remapped_gtt() 1053 src_idx = rotated_index(&view.rotated, 0, x, y); in igt_vma_remapped_gtt() [all …]
|
/Linux-v5.15/drivers/gpu/drm/i915/ |
D | i915_debugfs.c | 187 …seq_printf(m, ", rotated [(%ux%u, src_stride=%u, dst_stride=%u, offset=%u), (%ux%u, src_stride=%u,… in i915_debugfs_describe_obj() 188 vma->ggtt_view.rotated.plane[0].width, in i915_debugfs_describe_obj() 189 vma->ggtt_view.rotated.plane[0].height, in i915_debugfs_describe_obj() 190 vma->ggtt_view.rotated.plane[0].src_stride, in i915_debugfs_describe_obj() 191 vma->ggtt_view.rotated.plane[0].dst_stride, in i915_debugfs_describe_obj() 192 vma->ggtt_view.rotated.plane[0].offset, in i915_debugfs_describe_obj() 193 vma->ggtt_view.rotated.plane[1].width, in i915_debugfs_describe_obj() 194 vma->ggtt_view.rotated.plane[1].height, in i915_debugfs_describe_obj() 195 vma->ggtt_view.rotated.plane[1].src_stride, in i915_debugfs_describe_obj() 196 vma->ggtt_view.rotated.plane[1].dst_stride, in i915_debugfs_describe_obj() [all …]
|
D | i915_vma.h | 191 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare() 193 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare()
|
/Linux-v5.15/drivers/gpu/drm/arm/ |
D | malidp_crtc.c | 360 * a. If no more rotated or compressed planes exist, all remaining in malidp_crtc_atomic_check() 362 * b. If other rotated or compressed planes exist, and plane's in malidp_crtc_atomic_check() 366 * c. If other rotated or compressed planes exist, and plane's layer ID in malidp_crtc_atomic_check() 371 * rotated. Because that is how we create the planes in the first in malidp_crtc_atomic_check() 377 /* first count the number of rotated planes */ in malidp_crtc_atomic_check() 404 /* no more rotated planes, we can use what's left */ in malidp_crtc_atomic_check()
|
D | malidp_hw.h | 331 static inline u8 malidp_hw_get_pitch_align(struct malidp_hw_device *hwdev, bool rotated) in malidp_hw_get_pitch_align() argument 335 * constraints on rotated planes in malidp_hw_get_pitch_align() 340 return hwdev->hw->map.bus_align_bytes << (rotated ? 2 : 0); in malidp_hw_get_pitch_align()
|
D | malidp_drv.h | 64 /* size of the required rotation memory if plane is rotated */
|
D | malidp_planes.c | 511 bool rotated = new_plane_state->rotation & MALIDP_ROTATED_MASK; in malidp_de_plane_check() local 530 u8 alignment = malidp_hw_get_pitch_align(mp->hwdev, rotated); in malidp_de_plane_check() 578 * packed RGB888 / BGR888 can't be rotated or flipped in malidp_de_plane_check()
|
D | malidp_mw.c | 162 /* memory write buffers are never rotated */ in malidp_mw_encoder_atomic_check()
|
/Linux-v5.15/drivers/gpu/drm/i915/display/ |
D | intel_fb.c | 264 * In the 90/270 rotated case, x and y are assumed 265 * to be already rotated to match the rotated GTT view, and 272 * is specified in the rotated orientation. 666 check_array_bounds(i915, view->gtt.rotated.plane, color_plane); in calc_plane_remap_info() 707 * plane from the start of the remapped/rotated gtt mapping. in calc_plane_remap_info() 874 /* Rotate src coordinates to match rotated GTT view */ in intel_plane_remap_gtt() 976 /* Rotate src coordinates to match rotated GTT view */ in intel_plane_compute_gtt()
|
D | intel_sprite.c | 58 bool rotated = drm_rotation_90_or_270(plane_state->hw.rotation); in intel_plane_check_src_coordinates() local 84 if (fb->format->format == DRM_FORMAT_RGB565 && rotated) { in intel_plane_check_src_coordinates() 92 if (rotated) in intel_plane_check_src_coordinates() 96 DRM_DEBUG_KMS("src x/w (%u, %u) must be a multiple of %u (rotated: %s)\n", in intel_plane_check_src_coordinates() 97 src_x, src_w, hsub, yesno(rotated)); in intel_plane_check_src_coordinates() 102 DRM_DEBUG_KMS("src y/h (%u, %u) must be a multiple of %u (rotated: %s)\n", in intel_plane_check_src_coordinates() 103 src_y, src_h, vsub, yesno(rotated)); in intel_plane_check_src_coordinates()
|
/Linux-v5.15/arch/x86/crypto/ |
D | twofish-i586-asm_32.S | 61 * a input register containing a (rotated 16) 98 * a input register containing a (rotated 16) 137 * b input register containing b (rotated 16) 174 * b input register containing b (rotated 16)
|
D | twofish-x86_64-asm_64.S | 60 * a input register containing a (rotated 16) 95 * a input register containing a(rotated 16) 134 * b input register containing b (rotated 16)
|
/Linux-v5.15/Documentation/devicetree/bindings/media/ |
D | video-interface-devices.yaml | 266 'Rp' being rotated 180 degrees relatively to 'Rc': 285 The image once captured to memory will then be rotated by 180 degrees: 348 rotated by 90 degrees in the counter-clockwise direction relatively to the 351 The image once captured to memory will be rotated:
|
/Linux-v5.15/Documentation/devicetree/bindings/iio/ |
D | mount-matrix.txt | 133 along the (z) axis if rotated clockwise, and a positive value if rotated
|
/Linux-v5.15/drivers/gpu/drm/selftests/ |
D | test-drm_plane_helper.c | 112 /* Rotated clipping + reflection, no scaling. */ in igt_check_plane_state() 118 FAIL(ret < 0, "Rotated clipping check should pass\n"); in igt_check_plane_state()
|
/Linux-v5.15/Documentation/devicetree/bindings/input/touchscreen/ |
D | brcm,iproc-touchscreen.txt | 84 /* Touchscreen is rotated 180 degrees. */
|
/Linux-v5.15/drivers/gpu/drm/ |
D | drm_rect.c | 239 * @r: rectangle to be rotated 305 * @r: rectangle to be rotated
|
D | drm_blend.c | 104 * Without this property the rectangle is only scaled, but not rotated or 110 * Signals that a drm plane is rotated <degrees> degrees in counter
|
/Linux-v5.15/drivers/media/rc/keymaps/ |
D | rc-medion-x10-digitainer.c | 45 { 0x1b, KEY_SELECT }, /* also has "U" rotated 90 degrees CCW */
|
/Linux-v5.15/drivers/media/i2c/ccs/ |
D | ccs.h | 62 * mounted rotated. The typical rotation used is 180 degrees which can be
|
/Linux-v5.15/drivers/video/fbdev/ |
D | sh7760fb.c | 231 par->rot ? "rotated" : "normal"); in sh7760fb_set_par() 281 /* if rotated, stride must be power of 2 */ in sh7760fb_set_par()
|
/Linux-v5.15/Documentation/userspace-api/media/v4l/ |
D | ext-ctrls-camera.rst | 582 result rotated when captured to memory. :: 623 The images once captured to memory will be rotated and the value of the
|
/Linux-v5.15/arch/arm/boot/dts/ |
D | intel-ixp43x-gateworks-gw2358.dts | 131 * have instead assumed that they are rotated (swizzled) like
|
/Linux-v5.15/Documentation/fb/ |
D | modedb.rst | 58 Sample usage: 720x480,rotate=180 - 720x480 mode, rotated by 180 degrees
|