/lvgl-latest/src/misc/ |
D | lv_math.h | 159 #define LV_MIN(a, b) ((a) < (b) ? (a) : (b)) argument 160 #define LV_MIN3(a, b, c) (LV_MIN(LV_MIN(a,b), c)) argument 161 #define LV_MIN4(a, b, c, d) (LV_MIN(LV_MIN(a,b), LV_MIN(c,d))) argument 163 #define LV_MAX(a, b) ((a) > (b) ? (a) : (b)) argument 164 #define LV_MAX3(a, b, c) (LV_MAX(LV_MAX(a,b), c)) argument 165 #define LV_MAX4(a, b, c, d) (LV_MAX(LV_MAX(a,b), LV_MAX(c,d))) argument
|
D | lv_color.c | 143 uint8_t r, g, b; in lv_color_hsv_to_rgb() local 199 uint16_t b = ((uint32_t)b8 << 10) / 255; in lv_color_rgb_to_hsv() local 281 lv_color_t lv_color_make(uint8_t r, uint8_t g, uint8_t b) in lv_color_make() 290 lv_color32_t lv_color32_make(uint8_t r, uint8_t g, uint8_t b, uint8_t a) in lv_color32_make()
|
/lvgl-latest/scripts/ |
D | filetohex.py | 9 b = bytearray() variable
|
D | LVGLImage.py | 41 def color_pre_multiply(r, g, b, a, background): argument 588 def multiply(r, g, b, a): argument 603 def multiply(b, g, r, a): argument 982 def pack(r, g, b, a): argument 986 def pack(r, g, b, a): argument 991 def pack(r, g, b, a): argument 996 def pack(r, g, b, a): argument 1005 def pack(r, g, b, a): argument 1012 def pack(r, g, b, a): argument
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | swap.h | 33 inline void Swap(T& a, T& b) RAPIDJSON_NOEXCEPT { in Swap()
|
D | itoa.h | 58 const uint32_t b = value / 10000; in u32toa() local 94 const uint32_t b = value / 10000; // 0 to 9999 in u32toa() local 155 const uint32_t b = v / 10000; in u64toa() local
|
D | biginteger.h | 194 const BigInteger *a, *b; // Makes a > b in Difference() local 256 static uint64_t MulAdd64(uint64_t a, uint64_t b, uint64_t k, uint64_t* outHigh) { in MulAdd64()
|
D | strtod.h | 49 inline T Min3(T a, T b, T c) { in Min3() 56 inline int CheckWithinHalfULP(double b, const BigInteger& d, int dExp) { in CheckWithinHalfULP()
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwMath.cpp | 101 int64_t mathMultiply(int64_t a, int64_t b) in mathMultiply() 119 int64_t mathDivide(int64_t a, int64_t b) in mathDivide() 137 int64_t mathMulDiv(int64_t a, int64_t b, int64_t c) in mathMulDiv() 224 SwCoord a, b, c, d; in mathSplitCubic() local
|
D | tvgSvgUtil.cpp | 54 char a, b; in svgUtilURLDecode() local
|
D | tvgShape.cpp | 264 Result Shape::fill(uint8_t r, uint8_t g, uint8_t b, uint8_t a) noexcept in fill() 297 Result Shape::fillColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const noexcept in fillColor() 331 Result Shape::stroke(uint8_t r, uint8_t g, uint8_t b, uint8_t a) noexcept in stroke() 338 Result Shape::strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const noexcept in strokeColor()
|
D | tvgSwRasterC.h | 66 …terTranslucentRle(SwSurface* surface, const SwRle* rle, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in cRasterTranslucentRle() 100 …anslucentRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in cRasterTranslucentRect()
|
D | tvgSwRaster.cpp | 139 static inline uint32_t _abgrJoin(uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _abgrJoin() 145 static inline uint32_t _argbJoin(uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _argbJoin() 330 …wSurface* surface, const SwBBox& region, SwMask maskOp, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterCompositeMaskedRect() 349 …wSurface* surface, const SwBBox& region, SwMask maskOp, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterDirectMaskedRect() 370 …terMaskedRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterMaskedRect() 384 …terMattedRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterMattedRect() 421 …rBlendingRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterBlendingRect() 440 …anslucentRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in _rasterTranslucentRect() 452 …ic bool _rasterSolidRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b) in _rasterSolidRect() 477 static bool _rasterRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, … in _rasterRect() [all …]
|
D | tvgText.cpp | 98 Result Text::fill(uint8_t r, uint8_t g, uint8_t b) noexcept in fill()
|
D | tvgInitializer.cpp | 55 static constexpr bool operator &(CanvasEngine a, CanvasEngine b) in operator &()
|
D | tvgSwRasterNeon.h | 95 …terTranslucentRle(SwSurface* surface, const SwRle* rle, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in neonRasterTranslucentRle() 152 …anslucentRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in neonRasterTranslucentRect()
|
D | tvgMath.h | 68 static inline bool equal(float a, float b) in equal() 192 static inline float length(const Point* a, const Point* b) in length()
|
D | tvgStr.cpp | 38 static inline bool _floatExact(float a, float b) in _floatExact()
|
D | tvgSwRasterAvx.h | 105 …anslucentRect(SwSurface* surface, const SwBBox& region, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in avxRasterTranslucentRect() 164 …terTranslucentRle(SwSurface* surface, const SwRle* rle, uint8_t r, uint8_t g, uint8_t b, uint8_t a) in avxRasterTranslucentRle()
|
/lvgl-latest/src/libs/bmp/ |
D | lv_bmp.c | 159 bmp_dsc_t b; in decoder_open() local 198 bmp_dsc_t * b = dsc->user_data; in decoder_get_area() local 246 bmp_dsc_t * b = dsc->user_data; in decoder_close() local
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_interpolators.h | 41 float b; /**< Blue */ member
|
D | nema_math.h | 153 #define nema_min2(a,b) (((a)<(b))?( a):(b)) argument 162 #define nema_max2(a,b) (((a)>(b))?( a):(b)) argument
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_math.h | 59 static inline bool math_equal(float a, float b) in math_equal()
|
/lvgl-latest/src/libs/expat/ |
D | siphash.h | 114 #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) argument 235 uint64_t b = (H->c + left) << 56; in sip24_final() local
|
/lvgl-latest/tests/src/test_cases/ |
D | test_array.c | 83 lv_array_t a, b; in test_array_concat() local
|