Home
last modified time | relevance | path

Searched refs:high1 (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/binutils/binutils/
H A D0020-CVE-2023-22608-2.patch100 /* Check whether [low1, high1) can be combined with [low2, high2),
103 - bfd_vma high1,
109 + bfd_vma high1,
113 if (low1 == low2 || high1 == high2)
H A D0020-CVE-2023-22608-1.patch173 +/* Check whether [low1, high1) can be combined with [low2, high2),
176 + bfd_vma high1,
180 + if (low1 == low2 || high1 == high2)
192 + tmp = high1;
193 + high1 = high2;
197 + /* We touch iff low2 == high1.
198 + We overlap iff low2 is within [low1, high1). */
199 + return (low2 <= high1);
/OK3568_Linux_fs/kernel/drivers/gpu/drm/gma500/
H A Dpsb_irq.c623 uint32_t high1 = 0, high2 = 0, low = 0, count = 0; in psb_get_vblank_counter() local
660 high1 = ((REG_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >> in psb_get_vblank_counter()
666 } while (high1 != high2); in psb_get_vblank_counter()
668 count = (high1 << 8) | low; in psb_get_vblank_counter()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/
H A Di915_irq.c623 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal; in i915_get_vblank_counter() local
663 high1 = intel_de_read_fw(dev_priv, high_frame) & PIPE_FRAME_HIGH_MASK; in i915_get_vblank_counter()
666 } while (high1 != high2); in i915_get_vblank_counter()
670 high1 >>= PIPE_FRAME_HIGH_SHIFT; in i915_get_vblank_counter()
679 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff; in i915_get_vblank_counter()