Searched refs:s1y (Results 1 – 5 of 5) sorted by relevance
/external/fonttools/Lib/fontTools/misc/ |
D | bezierTools.py | 919 s1x, s1y = s1 928 math.isclose(s2y, e2y) and math.isclose(s1y, e1y) and not math.isclose(s1y, s2y) 933 if math.isclose(s1x, e1x) and math.isclose(s1y, e1y): # Line segment is tiny 947 slope12 = (e1y - s1y) / (e1x - s1x) 948 y = slope12 * (x - s1x) + s1y 956 slope12 = (e1y - s1y) / (e1x - s1x) 960 x = (slope12 * s1x - s1y - slope34 * s2x + s2y) / (slope12 - slope34) 961 y = slope12 * (x - s1x) + s1y
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_state_msaa.c | 28 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ argument 30 (((unsigned)(s1y)&0xf) << 12) | (((unsigned)(s2x)&0xf) << 16) | \
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_pipe_common.h | 912 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ argument 914 (((unsigned)(s1x) & 0xf) << 8) | (((unsigned)(s1y) & 0xf) << 12) | \
|
/external/mesa3d/src/amd/vulkan/ |
D | si_cmd_buffer.c | 1837 #define FILL_SREG(s0x, s0y, s1x, s1y, s2x, s2y, s3x, s3y) \ argument 1839 (((unsigned)(s1x) & 0xf) << 8) | (((unsigned)(s1y) & 0xf) << 12) | \
|
/external/skqp/src/compute/skc/platforms/cl_12/kernels/ |
D | rasterize.cl | 2418 SKC_RASTERIZE_FLOAT const s1y = skc_subgroup_shuffle(b1y,s_source); 2430 …SKC_RASTERIZE_FLOAT l1y = round(mad(mad(mad(s3y,s_t,s2y),s_t,s1y),s_t,s0y)); // 3 MAD + ROUND 2700 SKC_RASTERIZE_FLOAT const s1y = skc_subgroup_shuffle(b1y,s_source); 2709 SKC_RASTERIZE_FLOAT l1y = round(mad(mad(s2y,s_t,s1y),s_t,s0y)); // 2 MAD + ROUND
|