Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/demos/widgets/
Dlv_demo_widgets.py273 s2 = chart.add_series(LV_THEME_DEFAULT_COLOR_SECONDARY)
286 chart.set_next(s2, 32)
287 chart.set_next(s2, 66)
288 chart.set_next(s2, 5)
289 chart.set_next(s2, 47)
290 chart.set_next(s2, 32)
291 chart.set_next(s2, 32)
292 chart.set_next(s2, 66)
293 chart.set_next(s2, 5)
294 chart.set_next(s2, 47)
[all …]
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_transform.c96 int32_t s2 = lv_trigo_sin(angle_high); in lv_draw_sw_transform() local
101 tr_dsc.sinma = (s1 * (10 - angle_rem) + s2 * angle_rem) / 10; in lv_draw_sw_transform()
/lvgl-latest/src/misc/
Dlv_area.c560 int32_t s2 = lv_trigo_sin(angle_high); in lv_point_transform() local
565 sinma = (s1 * (10 - angle_rem) + s2 * angle_rem) / 10; in lv_point_transform()
/lvgl-latest/src/extra/libs/tiny_ttf/
Dstb_truetype_htcw.h1079 STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char * s1, int len1, STBTT_STREAM_TYPE s2, s…
1082 STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char * s1, int len1, const char * s2, stbtt_…
5161 …tbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 * s1, stbtt_int32 len1, STBTT_STREAM_TYPE s2, argument
5164 …32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 * s1, stbtt_int32 len1, stbtt_uint8 * s2,
5172 stbtt_uint16 ch = ttUSHORT(s2, s2offs);
5184 stbtt_uint16 ch2 = ttUSHORT(s2, s2offs + 2);
5209 static int stbtt_CompareUTF8toUTF16_bigendian_internal(char * s1, int len1, STBTT_STREAM_TYPE s2, s… argument
5212 …return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8 *)s1, len1, s2, s2offs, len…
5215 static int stbtt_CompareUTF8toUTF16_bigendian_internal(char * s1, int len1, char * s2, stbtt_uint32… argument
5217 …btt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8 *)s1, len1, (stbtt_uint8 *)s2, s2offs, len2);
[all …]
/lvgl-latest/src/extra/libs/png/
Dlodepng.c2144 unsigned s2 = (adler >> 16u) & 0xffffu; in update_adler32() local
2153 s2 += s1; in update_adler32()
2156 s2 %= 65521u; in update_adler32()
2159 return (s2 << 16u) | s1; in update_adler32()
4151 …unsigned char s0 = scanline[i + 0], s1 = scanline[i + 1], s2 = scanline[i + 2], s3 = scanline[i + … in unfilterScanline() local
4157 recon[i + 2] = s2 + paethPredictor(r2, p2, q2); in unfilterScanline()
4163 unsigned char s0 = scanline[i + 0], s1 = scanline[i + 1], s2 = scanline[i + 2]; in unfilterScanline() local
4169 recon[i + 2] = s2 + paethPredictor(r2, p2, q2); in unfilterScanline()