/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | pointer.h | 105 …explicit GenericPointer(const Ch* source, Allocator* allocator = 0) : allocator_(allocator), ownAl… in allocator_() 106 Parse(source, internal::StrLen(source)); in allocator_() 116 …explicit GenericPointer(const std::basic_string<Ch>& source, Allocator* allocator = 0) : allocator… in allocator_() 117 Parse(source.c_str(), source.size()); in allocator_() 128 …GenericPointer(const Ch* source, size_t length, Allocator* allocator = 0) : allocator_(allocator),… in allocator_() 129 Parse(source, length); in allocator_() 918 void Parse(const Ch* source, size_t length) { in Parse() argument 919 RAPIDJSON_ASSERT(source != NULL); in Parse() 929 for (const Ch* s = source; s != source + length; s++) in Parse() 939 if (source[i] == '#') { in Parse() [all …]
|
/lvgl-latest/src/libs/lz4/ |
D | lz4.c | 752 int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int srcSize); 754 int LZ4_decompress_safe_forceExtDict(const char* source, char* dest, 757 int LZ4_decompress_safe_partial_forceExtDict(const char* source, char* dest, 917 const char* const source, in LZ4_compress_generic_validated() argument 929 const BYTE* ip = (const BYTE*)source; in LZ4_compress_generic_validated() 932 const BYTE* base = (const BYTE*)source - startIndex; in LZ4_compress_generic_validated() 946 const BYTE* anchor = (const BYTE*) source; in LZ4_compress_generic_validated() 973 lowLimit = (const BYTE*)source - (dictDirective == withPrefix64k ? dictSize : 0); in LZ4_compress_generic_validated() 1053 lowLimit = (const BYTE*)source; in LZ4_compress_generic_validated() 1064 lowLimit = (const BYTE*)source; in LZ4_compress_generic_validated() [all …]
|
D | lz4.h | 799 …B_API int LZ4_compress_withState (void* state, const char* source, char* dest, int i… 800 …B_API int LZ4_compress_limitedOutput_withState (void* state, const char* source, char* dest, int i… 801 …mpress_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int i… 802 …mpress_limitedOutput_continue (LZ4_stream_t* LZ4_streamPtr, const char* source, char* dest, int i… 805 …4_decompress_fast() instead") LZ4LIB_API int LZ4_uncompress (const char* source, char* dest, int o… 806 …) instead") LZ4LIB_API int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int i…
|
D | LICENSE | 5 Redistribution and use in source and binary forms, with or without modification, 8 * Redistributions of source code must retain the above copyright notice, this
|
/lvgl-latest/src/misc/ |
D | lv_array.c | 71 void lv_array_copy(lv_array_t * target, const lv_array_t * source) in lv_array_copy() argument 73 if(lv_array_is_empty(source)) { in lv_array_copy() 77 lv_array_init(target, source->capacity, source->element_size); in lv_array_copy() 78 lv_memcpy(target->data, source->data, source->size * source->element_size); in lv_array_copy() 79 target->size = source->size; in lv_array_copy()
|
D | lv_array.h | 115 void lv_array_copy(lv_array_t * target, const lv_array_t * source);
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgPaint.h | 47 Paint* source; member 142 bool composite(Paint* source, Paint* target, CompositeMethod method) in composite() 164 compData->source = source; in composite()
|
D | tvgSwRenderer.cpp | 209 RenderSurface* source; //Image source member 222 rasterConvertCS(source, surface->cs); in run() 223 rasterPremultiply(source); in run() 225 image.data = source->data; in run() 226 image.w = source->w; in run() 227 image.h = source->h; in run() 228 image.stride = source->stride; in run() 229 image.channelSize = source->channelSize; in run() 736 task->source = surface; in prepare()
|
/lvgl-latest/docs/details/widgets/ |
D | image.rst | 30 Image source 33 To provide maximum flexibility, the source of the image can be: 39 To set the source of an image, use :cpp:expr:`lv_image_set_src(img, src)`. 42 and set the converted image as the image source with its pointer with 52 image as the image source with :cpp:expr:`lv_image_set_src(img, "S:folder1/my_img.bin")`. 54 You can also set a symbol as an image source similar to a :ref:`Labels <lv_label>`. In 57 "characters" instead of real images. You can set a symbol as an image source with 113 source size. Using the offset parameter a `Texture atlas <https://en.wikipedia.org/wiki/Texture_atl… 162 meaning that the Widget will be sized automatically to the size of its image source. 166 the image source is aligned inside the Widget. [all …]
|
D | animimg.rst | 11 difference is that instead of one source image, you set an array of 12 multiple source images that supply "frames" in an animation.
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_tvg.cpp | 306 …icture_load(vg_lite_ctx * ctx, std::unique_ptr<Picture> & picture, const vg_lite_buffer_t * source, 608 vg_lite_buffer_t * source, in vg_lite_blit() argument 620 TVG_CHECK_RETURN_VG_ERROR(picture_load(ctx, picture, source, color)); in vg_lite_blit() 649 vg_lite_buffer_t * source, in vg_lite_blit_rect() argument 665 TVG_CHECK_RETURN_VG_ERROR(picture_load(ctx, picture, source, color)); in vg_lite_blit_rect() 2595 …icture_load(vg_lite_ctx * ctx, std::unique_ptr<Picture> & picture, const vg_lite_buffer_t * source, in picture_load() argument 2599 LV_ASSERT(VG_LITE_IS_ALIGNED(source->memory, LV_VG_LITE_THORVG_BUF_ADDR_ALIGN)); in picture_load() 2602 LV_ASSERT(VG_LITE_IS_ALIGNED(source->width, 16)); in picture_load() 2605 if(source->format == VG_LITE_BGRA8888 && source->image_mode == VG_LITE_NORMAL_IMAGE_MODE) { in picture_load() 2606 image_buffer = (vg_lite_uint32_t *)source->memory; in picture_load() [all …]
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_utils.h | 44 void * nema_memcpy ( void * destination, const void * source, size_t num );
|
/lvgl-latest/docs/details/integration/os/yocto/ |
D | terms_and_variables.rst | 30 The location in the Build Directory where unpacked recipe source code resides. 32 base recipe name and ${PV} is the recipe version. If the source tarball 34 the source code is fetched from an SCM such as Git or Subversion, then you 36 find the unpacked source. 46 The unpacked source code resides in the db-5.1.19 folder. 50 default value of S, you must set it specifically so the source can be located: 193 unless it is building an unstable (i.e. development) version from a source code
|
D | core_components.rst | 24 to each data source as a layer. 82 source, any source patches to be applied to that source (if needed), 83 which special configuration options to apply, how to compile the source
|
D | index.rst | 7 The Yocto Project (YP) is an open source collaboration project that helps
|
D | lvgl_recipe.rst | 73 source sources/poky/oe-init-build-env 97 You need to be in the same terminal you did the ``source`` command. Add the 388 SRC_URI: Specifies the locations of the source code and patches for the recipe: 389 - The main source repository for LVGL specifying the master branch. 391 the source code during the build process. 394 which the source code will be fetched. This ensures that the build uses a 404 **S**: This variable defines the source directory where the unpacked source 428 Fetch task fetches the package source from the local or remote repository. 454 folder, you can now find the source code in ``git`` (as it was defined in 471 current source directory **${S}**. [all …]
|
/lvgl-latest/docs/details/integration/chip/ |
D | nxp.rst | 7 migration into your product design. LVGL is a free and open-source embedded 21 …rd <https://www.nxp.com/design/software/embedded-software/littlevgl-open-source-graphics-library:L… 132 - Blit source image RGB565/ARGB888/XRGB8888 over destination. 134 - Recolor source image RGB565. 135 - Scale and rotate (90, 180, 270 degree) source image RGB565. 148 source image and the output is not divisible by the block size, the incorrect 161 - Add PXP related source files (and corresponding headers if available) to 367 - Blit source image (any format from ``_vglite_src_cf_supported()``) over 369 - Recolor source image. 370 - Scale and rotate (any decimal degree) source image. [all …]
|
/lvgl-latest/docs/details/debugging/ |
D | gdb_plugin.rst | 18 ``source lvgl/scripts/gdb/gdbinit.py`` 25 (gdb) source lvgl/scripts/gdb/gdbinit.py
|
/lvgl-latest/docs/details/libs/ |
D | freetype.rst | 29 - Enter the FreeType source code directory 47 - Copy the FreeType source code to your project directory. 60 # FreeType C source file
|
D | libjpeg_turbo.rst | 12 Library source: https://github.com/libjpeg-turbo/libjpeg-turbo
|
D | gif.rst | 15 As source, it also accepts images as variables (:c:struct:`lv_image_dsc_t`) or
|
/lvgl-latest/src/drivers/glfw/ |
D | lv_opengles_driver.c | 47 static unsigned int lv_opengles_shader_compile(unsigned int type, const char * source); 357 static unsigned int lv_opengles_shader_compile(unsigned int type, const char * source) in lv_opengles_shader_compile() argument 361 const char * src = source; in lv_opengles_shader_compile()
|
/lvgl-latest/docs/details/integration/os/buildroot/ |
D | quick_setup.rst | 37 source ../setup-build-env.sh
|
/lvgl-latest/examples/arduino/LVGL_Arduino/ |
D | LVGL_Arduino.ino | 71 /*use Arduinos millis() as tick source*/ 87 /*Set a tick source so that LVGL will know how much time elapsed. */
|
/lvgl-latest/src/libs/lodepng/ |
D | lodepng.h | 436 unsigned lodepng_color_mode_copy(LodePNGColorMode * dest, const LodePNGColorMode * source); 701 unsigned lodepng_info_copy(LodePNGInfo * dest, const LodePNGInfo * source); 880 void lodepng_state_copy(LodePNGState * dest, const LodePNGState * source);
|