/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_math.h | 35 #define MATH_TANF(x) tanf(x) argument 36 #define MATH_SINF(x) sinf(x) argument 37 #define MATH_COSF(x) cosf(x) argument 38 #define MATH_ASINF(x) asinf(x) argument 39 #define MATH_ACOSF(x) acosf(x) argument 40 #define MATH_FABSF(x) fabsf(x) argument 41 #define MATH_SQRTF(x) sqrtf(x) argument
|
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_border.c | 114 float x = rect_coords.x1 + width; in lv_draw_nema_gfx_border() local 123 float x = rect_coords.x1 + width; in lv_draw_nema_gfx_border() local 132 float x = rect_coords.x1; in lv_draw_nema_gfx_border() local 141 float x = rect_coords.x1 + border_width - width; in lv_draw_nema_gfx_border() local 152 float x = rect_coords.x1; in lv_draw_nema_gfx_border() local 169 float x = rect_coords.x1 + border_width - width; in lv_draw_nema_gfx_border() local 186 float x = rect_coords.x1 + border_width - width; in lv_draw_nema_gfx_border() local 203 float x = rect_coords.x1; in lv_draw_nema_gfx_border() local
|
D | lv_nema_gfx_path.c | 103 void lv_nema_gfx_path_move_to(lv_nema_gfx_path_t * path, float x, float y) in lv_nema_gfx_path_move_to() 113 void lv_nema_gfx_path_line_to(lv_nema_gfx_path_t * path, float x, float y) in lv_nema_gfx_path_line_to() 124 void lv_nema_gfx_path_quad_to(lv_nema_gfx_path_t * path, float cx, float cy, float x, float y) in lv_nema_gfx_path_quad_to() 136 …h_cubic_to(lv_nema_gfx_path_t * path, float cx1, float cy1, float cx2, float cy2, float x, float y) in lv_nema_gfx_path_cubic_to()
|
/lvgl-latest/src/drivers/glfw/ |
D | lv_opengles_debug.h | 25 #define GL_CALL(x) do {\ argument 31 #define GL_CALL(x) x argument
|
/lvgl-latest/src/misc/ |
D | lv_area.h | 32 int32_t x; member 37 lv_value_precise_t x; member 209 #define LV_COORD_TYPE(x) ((x) & LV_COORD_TYPE_MASK) /*Extract type specifiers*/ argument 210 #define LV_COORD_PLAIN(x) ((x) & ~LV_COORD_TYPE_MASK) /*Remove type specifiers*/ argument 216 #define LV_COORD_IS_PX(x) (LV_COORD_TYPE(x) == LV_COORD_TYPE_PX || LV_COORD_TYPE(x) == LV_COO… argument 217 #define LV_COORD_IS_SPEC(x) (LV_COORD_TYPE(x) == LV_COORD_TYPE_SPEC) argument 219 #define LV_COORD_SET_SPEC(x) ((x) | LV_COORD_TYPE_SPEC) argument 232 #define LV_PCT(x) (LV_COORD_SET_SPEC(((x) < 0 ? (LV_PCT_POS_MAX - LV_MAX((x), -LV_PCT… argument 233 #define LV_COORD_IS_PCT(x) ((LV_COORD_IS_SPEC(x) && LV_COORD_PLAIN(x) <= LV_PCT_STORED_MAX)) argument 234 #define LV_COORD_GET_PCT(x) (LV_COORD_PLAIN(x) > LV_PCT_POS_MAX ? LV_PCT_POS_MAX - LV_COORD_PLA… argument
|
D | lv_math.h | 30 #define LV_ALIGN_UP(x, align) (((x) + ((align) - 1)) & ~((align) - 1)) argument 33 #define LV_ROUND_UP(x, round) ((((x) + ((round) - 1)) / (round)) * (round)) argument 118 static inline int32_t lv_sqr(int32_t x) in lv_sqr() 169 #define LV_ABS(x) ((x) > 0 ? (x) : (-(x))) argument 170 #define LV_UDIV255(x) (((x) * 0x8081U) >> 0x17) argument
|
D | lv_math.c | 126 int32_t lv_cubic_bezier(int32_t x, int32_t x1, int32_t y1, int32_t x2, int32_t y2) in lv_cubic_bezier() 208 void LV_ATTRIBUTE_FAST_MEM lv_sqrt(uint32_t x, lv_sqrt_res_t * q, uint32_t mask) in lv_sqrt() 232 int32_t LV_ATTRIBUTE_FAST_MEM lv_sqrt32(uint32_t x) in lv_sqrt32() 314 uint16_t lv_atan2(int x, int y) in lv_atan2() 404 int32_t lv_map(int32_t x, int32_t min_in, int32_t max_in, int32_t min_out, int32_t max_out) in lv_map() 433 uint32_t x = rand_seed; in lv_rand() local
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | rapidjson.h | 50 #define RAPIDJSON_STRINGIFY(x) RAPIDJSON_DO_STRINGIFY(x) argument 51 #define RAPIDJSON_DO_STRINGIFY(x) #x argument 307 #define RAPIDJSON_ALIGN(x) (((x) + static_cast<size_t>(7u)) & ~static_cast<size_t>(7u)) argument 346 #define RAPIDJSON_SETPOINTER(type, p, x) (p = reinterpret_cast<type *>((reinterpret_cast<uintptr_t>… argument 349 #define RAPIDJSON_SETPOINTER(type, p, x) (p = (x)) argument 437 #define RAPIDJSON_ASSERT(x) assert(x) argument 446 #define RAPIDJSON_STATIC_ASSERT(x) \ argument
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwRasterC.h | 79 for (uint32_t x = 0; x < span->len; ++x, ++dst) { in cRasterTranslucentRle() local 91 for (uint32_t x = 0; x < span->len; ++x, ++dst) { in cRasterTranslucentRle() local 112 for (uint32_t x = 0; x < w; ++x, ++dst) { in cRasterTranslucentRect() local 122 for (uint32_t x = 0; x < w; ++x, ++dst) { in cRasterTranslucentRect() local 140 for (uint32_t x = 0; x < surface->w / 2; ++x, ++dst) { in cRasterABGRtoARGB() local 151 for (uint32_t x = 0; x < surface->w; ++x, ++dst) { in cRasterABGRtoARGB() local
|
D | tvgSwRasterAvx.h | 127 for (uint32_t x = 0; x < notAligned; ++x, ++dst) { in avxRasterTranslucentRect() local 136 for (uint32_t x = 0; x < iterations; ++x, ++avxDst) { in avxRasterTranslucentRect() local 155 for (uint32_t x = 0; x < w; ++x, ++dst) { in avxRasterTranslucentRect() local 185 for (uint32_t x = 0; x < notAligned; ++x, ++dst) { in avxRasterTranslucentRle() local 200 for (uint32_t x = 0; x < iterations; ++x, ++avxDst) { in avxRasterTranslucentRle() local 224 for (uint32_t x = 0; x < span->len; ++x, ++dst) { in avxRasterTranslucentRle() local
|
D | tvgSwRaster.cpp | 241 for (auto x = region.min.x; x < region.max.x; x++, dst++, src++) { in _compositeMaskImage() local 307 for (auto x = minx; x < maxx; x += inc, p += inc) { in _interpDownScaler() local 340 for (uint32_t x = 0; x < w; ++x, ++cmp) { in _rasterCompositeMaskedRect() local 359 for (uint32_t x = 0; x < w; ++x, ++cmp, ++dst) { in _rasterDirectMaskedRect() local 401 for (uint32_t x = 0; x < w; ++x, ++dst, cmp += csize) { in _rasterMattedRect() local 412 for (uint32_t x = 0; x < w; ++x, ++dst, cmp += csize) { in _rasterMattedRect() local 432 for (uint32_t x = 0; x < w; ++x, ++dst) { in _rasterBlendingRect() local 508 for (auto x = 0; x < span->len; ++x, ++cmp) { in _rasterCompositeMaskedRle() local 528 for (auto x = 0; x < span->len; ++x, ++cmp, ++dst) { in _rasterDirectMaskedRle() local 569 for (uint32_t x = 0; x < span->len; ++x, ++dst, cmp += csize) { in _rasterMattedRle() local [all …]
|
D | tvgSwRasterNeon.h | 126 for (uint32_t x = 0; x < (span->len - align) / 2; ++x) in neonRasterTranslucentRle() local 143 for (uint32_t x = 0; x < span->len; ++x, ++dst) { in neonRasterTranslucentRle() local 182 for (uint32_t x = 0; x < (w - align) / 2; ++x) in neonRasterTranslucentRect() local 195 for (uint32_t x = 0; x < w; ++x, ++dst) { in neonRasterTranslucentRect() local
|
D | tvgMath.h | 126 static inline void scaleR(Matrix* m, float x, float y) in scaleR() 139 static inline void translate(Matrix* m, float x, float y) in translate() 146 static inline void translateR(Matrix* m, float x, float y) in translateR() 194 auto x = b->x - a->x; in length() local
|
/lvgl-latest/tests/src/ |
D | lv_test_helpers.h | 9 #define LV_HEAP_CHECK(x) do {} while(0) argument 13 #define LV_HEAP_CHECK(x) x argument
|
D | lv_test_indev.c | 25 void lv_test_mouse_move_to(int32_t x, int32_t y) in lv_test_mouse_move_to() 31 void lv_test_mouse_move_by(int32_t x, int32_t y) in lv_test_mouse_move_by() 47 void lv_test_mouse_click_at(int32_t x, int32_t y) in lv_test_mouse_click_at()
|
/lvgl-latest/tests/unity/ |
D | unity_support.c | 173 int x, y; in screenshot_compare() local 345 for(uint32_t x = 0; x < width; x++) { in write_png_file() local 390 uint32_t x; in buf_to_xrgb8888() local 407 uint32_t x; in buf_to_xrgb8888() local 422 uint32_t x; in buf_to_xrgb8888() local 437 uint32_t x; in buf_to_xrgb8888() local 452 uint32_t x; in buf_to_xrgb8888() local 467 uint32_t x; in buf_to_xrgb8888() local
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_math.h | 198 #define nema_floats_equal(x, y) (nema_absf((x) - (y)) <= 0.00001f * nema_min2(nema_absf(x), nema_ab… argument 206 #define nema_float_is_zero(x) (nema_absf(x) <= 0.00001f) argument 263 #define nema_truncf(x) (x < 0.0f ? nema_ceil(x) : nema_floor(x)) argument 272 #define nema_fmod(x, y) ( (x) - nema_truncf( ( (x) / (y) ) ) * (y) ) argument
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_utils.c | 229 for(uint32_t x = 0; x < width; x++) { in lv_draw_sw_i1_convert_to_vtiled() local 354 for(int32_t x = 0; x < src_width; ++x) { in rotate270_argb8888() local 378 for(int32_t x = 0; x < width; ++x) { in rotate180_argb8888() local 394 for(int32_t x = 0; x < src_width; ++x) { in rotate90_argb8888() local 416 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb888() local 435 for(int32_t x = 0; x < width; ++x) { in rotate180_rgb888() local 452 for(int32_t x = 0; x < width; ++x) { in rotate270_rgb888() local 478 for(int32_t x = 0; x < src_width; ++x) { in rotate270_rgb565() local 501 for(int32_t x = 0; x < width; ++x) { in rotate180_rgb565() local 518 for(int32_t x = 0; x < src_width; ++x) { in rotate90_rgb565() local [all …]
|
/lvgl-latest/src/libs/expat/ |
D | expat_external.h | 123 # define XML_ATTR_ALLOC_SIZE(x) __attribute__((__alloc_size__(x))) argument 125 # define XML_ATTR_ALLOC_SIZE(x) argument
|
/lvgl-latest/src/layouts/grid/ |
D | lv_grid.c | 25 #define IS_FR(x) (x >= LV_COORD_MAX - 100) argument 26 #define IS_CONTENT(x) (x == LV_COORD_MAX - 101) argument 27 #define GET_FR(x) (x - (LV_COORD_MAX - 100)) argument 39 int32_t * x; member 178 int32_t lv_grid_fr(uint8_t x) in lv_grid_fr() 332 int32_t x = col_templ[i]; in calc_cols() local 351 int32_t x = col_templ[i]; in calc_cols() local 421 int32_t x = row_templ[i]; in calc_rows() local 440 int32_t x = row_templ[i]; in calc_rows() local 490 int32_t x; in item_repos() local
|
/lvgl-latest/src/libs/freetype/ |
D | lv_freetype.h | 27 #define LV_FREETYPE_F26DOT6_TO_INT(x) ((x) >> 6) argument 28 #define LV_FREETYPE_F26DOT6_TO_FLOAT(x) ((float)(x) / 64) argument
|
D | lv_freetype_private.h | 53 #define FT_INT_TO_F26DOT6(x) ((x) << 6) argument 54 #define FT_F26DOT6_TO_INT(x) ((x) >> 6) argument 56 #define FT_INT_TO_F16DOT16(x) ((x) << 16) argument 57 #define FT_F16DOT16_TO_INT(x) ((x) >> 16) argument 64 int32_t x; member
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | clzll.h | 32 inline uint32_t clzll(uint64_t x) { in clzll()
|
/lvgl-latest/examples/widgets/canvas/ |
D | lv_example_canvas_2.c | 27 uint32_t x; in lv_example_canvas_2() local
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 148 int32_t x; in multiple_rgb_images_cb() local 175 int32_t x; in multiple_argb_images_cb() local 202 int32_t x; in rotated_argb_image_cb() local 238 int32_t x; in multiple_labels_cb() local 291 int32_t x; in multiple_arcs_cb() local 326 int32_t x; in containers_cb() local 350 int32_t x; in containers_with_overlay_cb() local 377 int32_t x; in containers_with_opa_cb() local 402 int32_t x; in containers_with_opa_layer_cb() local 430 int32_t x; in containers_with_scrolling_cb() local
|