Searched refs:fdata (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/src/libs/fsdrv/ |
D | lv_fs_stdio.c | 239 WIN32_FIND_DATAA fdata; in fs_dir_open() local 246 handle->dir_p = FindFirstFileA(buf, &fdata); in fs_dir_open() 248 if(lv_strcmp(fdata.cFileName, ".") == 0 || lv_strcmp(fdata.cFileName, "..") == 0) { in fs_dir_open() 252 if(fdata.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { in fs_dir_open() 253 lv_snprintf(handle->next_fn, sizeof(handle->next_fn), "/%s", fdata.cFileName); in fs_dir_open() 256 lv_snprintf(handle->next_fn, sizeof(handle->next_fn), "%s", fdata.cFileName); in fs_dir_open() 260 } while(FindNextFileA(handle->dir_p, &fdata)); in fs_dir_open() 302 WIN32_FIND_DATAA fdata; in fs_dir_read() local 304 if(FindNextFileA(handle->dir_p, &fdata) == false) return LV_FS_RES_OK; in fs_dir_read() 306 if(lv_strcmp(fdata.cFileName, ".") == 0 || lv_strcmp(fdata.cFileName, "..") == 0) { in fs_dir_read() [all …]
|
D | lv_fs_win32.c | 369 WIN32_FIND_DATAA fdata; in fs_dir_open() local 376 handle->dir_p = FindFirstFileA(buf, &fdata); in fs_dir_open() 380 if(is_dots_name(fdata.cFileName)) { in fs_dir_open() 384 if(fdata.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { in fs_dir_open() 385 lv_snprintf(handle->next_fn, sizeof(handle->next_fn), "/%s", fdata.cFileName); in fs_dir_open() 388 lv_snprintf(handle->next_fn, sizeof(handle->next_fn), "%s", fdata.cFileName); in fs_dir_open() 392 } while(FindNextFileA(handle->dir_p, &fdata)); in fs_dir_open() 425 WIN32_FIND_DATAA fdata; in fs_dir_read() local 427 while(FindNextFileA(handle->dir_p, &fdata)) { in fs_dir_read() 428 if(is_dots_name(fdata.cFileName)) { in fs_dir_read() [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwFill.cpp | 69 static uint32_t _estimateAAMargin(const Fill* fdata) in _estimateAAMargin() argument 72 if (fdata->type() == Type::RadialGradient) { in _estimateAAMargin() 73 auto radius = P(static_cast<const RadialGradient*>(fdata))->r; in _estimateAAMargin() 76 auto grad = P(static_cast<const LinearGradient*>(fdata)); in _estimateAAMargin() 129 static bool _updateColorTable(SwFill* fill, const Fill* fdata, const SwSurface* surface, uint8_t op… in _updateColorTable() argument 139 auto cnt = fdata->colorStops(&colors); in _updateColorTable() 158 uint32_t iAABegin = repeat ? _estimateAAMargin(fdata) : 0; in _updateColorTable() 828 bool fillGenColorTable(SwFill* fill, const Fill* fdata, const Matrix& transform, SwSurface* surface… in fillGenColorTable() argument 832 fill->spread = fdata->spread(); in fillGenColorTable() 834 if (fdata->type() == Type::LinearGradient) { in fillGenColorTable() [all …]
|
D | tvgSwCommon.h | 530 bool fillGenColorTable(SwFill* fill, const Fill* fdata, const Matrix& transform, SwSurface* surface… 531 const Fill::ColorStop* fillFetchSolid(const SwFill* fill, const Fill* fdata); 567 bool rasterGradientShape(SwSurface* surface, SwShape* shape, const Fill* fdata, uint8_t opacity); 571 bool rasterGradientStroke(SwSurface* surface, SwShape* shape, const Fill* fdata, uint8_t opacity);
|
D | tvgSwRaster.cpp | 1733 bool rasterGradientShape(SwSurface* surface, SwShape* shape, const Fill* fdata, uint8_t opacity) in rasterGradientShape() argument 1737 if (auto color = fillFetchSolid(shape->fill, fdata)) { in rasterGradientShape() 1742 auto type = fdata->type(); in rasterGradientShape() 1754 bool rasterGradientStroke(SwSurface* surface, SwShape* shape, const Fill* fdata, uint8_t opacity) in rasterGradientStroke() argument 1758 if (auto color = fillFetchSolid(shape->stroke->fill, fdata)) { in rasterGradientStroke() 1763 auto type = fdata->type(); in rasterGradientStroke()
|
/lvgl-latest/docs/intro/ |
D | introduction.rst | 286 If you are using GCC/CLANG you can add `-fdata-sections -ffunction-sections` compiler flags and `--…
|