Home
last modified time | relevance | path

Searched refs:c3 (Results 1 – 8 of 8) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSwCommon.h300 static inline uint32_t JOIN(uint8_t c0, uint8_t c1, uint8_t c2, uint8_t c3) in JOIN() argument
302 return (c0 << 24 | c1 << 16 | c2 << 8 | c3); in JOIN()
379 auto c3 = (C3(s) > C3(d)) ? (C3(s) - C3(d)) : (C3(d) - C3(s)); in opBlendDifference() local
380 return JOIN(255, c1, c2, c3); in opBlendDifference()
388 auto c3 = std::min(255, C3(s) + C3(d) - std::min(255, (C3(s) * C3(d)) << 1)); in opBlendExclusion() local
389 return JOIN(255, c1, c2, c3); in opBlendExclusion()
397 auto c3 = std::min(C3(s) + C3(d), 255); in opBlendAdd() local
398 return JOIN(255, c1, c2, c3); in opBlendAdd()
406 auto c3 = C3(s) + C3(d) - MULTIPLY(C3(s), C3(d)); in opBlendScreen() local
407 return JOIN(255, c1, c2, c3); in opBlendScreen()
[all …]
DtvgSwRaster.cpp281 auto c3 = img[rx + ry2 * w]; in _interpUpScaler() local
284 return INTERPOLATE(INTERPOLATE(c4, c3, dx), INTERPOLATE(c2, c1, dx), dy); in _interpUpScaler()
/lvgl-latest/tests/src/test_cases/
Dtest_bindings.c41 lv_color_t c3 = lv_color_mix(c1, c2, LV_OPA_60); in create_ui() local
77 lv_chart_series_t * series = lv_chart_add_series(chart, c3, LV_CHART_AXIS_PRIMARY_X); in create_ui()
Dtest_svg.c575 uint32_t c3 = (LV_ARRAY_GET(&svg_node->attrs, 0, lv_svg_attr_t))->value.ival; in testStrokeFillAttrs() local
576 TEST_ASSERT_EQUAL(c3, LV_SVG_LINE_CAP_SQUARE); in testStrokeFillAttrs()
/lvgl-latest/docs/
Dbuild.py418 c3 = os.path.exists(temp_path)
431 result = c2 and c3 and c4 and c5 and c6 and c7 and c8 and c9
/lvgl-latest/tests/micropy_test/
Dmicropy.py129 c3 = c1.mix(c2, lv.OPA._60)
177 series = chart.add_series(c3, lv.chart.AXIS.PRIMARY_X)
/lvgl-latest/src/libs/lodepng/
Dlodepng.c4759 unsigned char a2, b2 = 0, c2, d2 = 0, a3, b3 = 0, c3, d3 = 0; in unfilterScanline() local
4766 c3 = b3; in unfilterScanline()
4790 d3 = scanline[i + 3] + paethPredictor(a3, b3, c3); in unfilterScanline()
4807 unsigned char a2, b2 = 0, c2, d2 = 0, a3, b3 = 0, c3, d3 = 0; in unfilterScanline() local
4813 c3 = b3; in unfilterScanline()
4831 d3 = scanline[i + 3] + paethPredictor(a3, b3, c3); in unfilterScanline()
4844 unsigned char a2, b2 = 0, c2, d2 = 0, a3, b3 = 0, c3, d3 = 0; in unfilterScanline() local
4849 c3 = b3; in unfilterScanline()
4861 d3 = scanline[i + 3] + paethPredictor(a3, b3, c3); in unfilterScanline()
/lvgl-latest/src/libs/tiny_ttf/
Dstb_truetype_htcw.h1429 #define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == … argument