/lvgl-latest/src/extra/libs/sjpg/ |
D | lv_sjpg.c | 393 int offset = *data++; in decoder_open() local 394 offset |= *data++ << 8; in decoder_open() 395 sjpeg->frame_base_array[i] = sjpeg->frame_base_array[i - 1] + offset; in decoder_open() 571 int offset = *data++; in decoder_open() local 572 offset |= *data++ << 8; in decoder_open() 573 sjpeg->frame_base_offset[i] = sjpeg->frame_base_offset[i - 1] + offset; in decoder_open() 746 int offset = 0; in decoder_read_line() local 752 buf[offset + 3] = 0xff; in decoder_read_line() 753 buf[offset + 2] = *cache++; in decoder_read_line() 754 buf[offset + 1] = *cache++; in decoder_read_line() [all …]
|
/lvgl-latest/src/extra/libs/fsdrv/ |
D | lv_fs_posix.c | 178 off_t offset = lseek((lv_uintptr_t)file_p, pos, whence); in fs_seek() local 179 return offset < 0 ? LV_FS_RES_FS_ERR : LV_FS_RES_OK; in fs_seek() 193 off_t offset = lseek((lv_uintptr_t)file_p, 0, SEEK_CUR); in fs_tell() local 194 *pos_p = offset; in fs_tell() 195 return offset < 0 ? LV_FS_RES_FS_ERR : LV_FS_RES_OK; in fs_tell()
|
/lvgl-latest/src/draw/stm32_dma2d/ |
D | lv_gpu_stm32_dma2d.h | 64 void _lv_gpu_stm32_dma2d_invalidate_cache(uint32_t address, lv_coord_t offset, 66 void _lv_gpu_stm32_dma2d_clean_cache(uint32_t address, lv_coord_t offset, lv_coord_t width,
|
D | lv_gpu_stm32_dma2d.c | 39 …u_stm32_dma2d_clean_cache(address, offset, width, height, pixel_size) _lv_gpu_stm32_dma2d_clean_ca… argument 40 …_dma2d_invalidate_cache(address, offset, width, height, pixel_size) _lv_gpu_stm32_dma2d_invalidate… argument 42 #define __lv_gpu_stm32_dma2d_clean_cache(address, offset, width, height, pixel_size) argument 43 #define __lv_gpu_stm32_dma2d_invalidate_cache(address, offset, width, height, pixel_size) argument 285 lv_point_t offset = {x: area2->x1 - area1->x1, y: area2->y1 - area1->y1}; in lv_area_get_offset() local 286 return offset; in lv_area_get_offset() 666 void _lv_gpu_stm32_dma2d_invalidate_cache(uint32_t address, lv_coord_t offset, lv_coord_t width, in _lv_gpu_stm32_dma2d_invalidate_cache() argument 670 uint16_t stride = pixel_size * (width + offset); // in bytes in _lv_gpu_stm32_dma2d_invalidate_cache() 696 void _lv_gpu_stm32_dma2d_clean_cache(uint32_t address, lv_coord_t offset, lv_coord_t width, in _lv_gpu_stm32_dma2d_clean_cache() argument 700 uint16_t stride = pixel_size * (width + offset); // in bytes in _lv_gpu_stm32_dma2d_clean_cache()
|
/lvgl-latest/src/extra/libs/tiny_ttf/ |
D | stb_truetype_htcw.h | 547 stbtt_uint32 offset; member 760 STBTT_DEF int stbtt_InitFont(stbtt_fontinfo * info, STBTT_STREAM_TYPE data, int offset); 762 STBTT_DEF int stbtt_InitFont(stbtt_fontinfo * info, const unsigned char * data, int offset); 1192 long pos = (long)(b->cursor + b->offset); in stbtt__buf_get8() 1209 long pos = (long)(b->cursor + b->offset); in stbtt__buf_peek8() 1250 r.offset = 0; in stbtt__new_buf() 1268 r.offset = b->offset + o; in stbtt__buf_range() 1371 static stbtt_uint8 ttBYTE(STBTT_STREAM_TYPE s, stbtt_uint32 offset) in ttBYTE() argument 1373 STBTT_STREAM_SEEK(s, offset); in ttBYTE() 1378 #define ttCHAR(s, offset) ((stbtt_int8)ttBYTE(s,offset)) argument [all …]
|
/lvgl-latest/src/widgets/ |
D | lv_label.c | 202 label->offset.x = 0; in lv_label_set_long_mode() 203 label->offset.y = 0; in lv_label_set_long_mode() 700 label->offset.x = 0; in lv_label_constructor() 701 label->offset.y = 0; in lv_label_constructor() 806 label_draw_dsc.ofs_x = label->offset.x; in draw_main() 807 label_draw_dsc.ofs_y = label->offset.y; in draw_main() 870 label_draw_dsc.ofs_x = label->offset.x + size.x + in draw_main() 872 label_draw_dsc.ofs_y = label->offset.y; in draw_main() 879 label_draw_dsc.ofs_x = label->offset.x; in draw_main() 880 … label_draw_dsc.ofs_y = label->offset.y + size.y + lv_font_get_line_height(label_draw_dsc.font); in draw_main() [all …]
|
D | lv_img.c | 169 img->offset.x = x; in lv_img_set_offset_x() 179 img->offset.y = y; in lv_img_set_offset_y() 326 return img->offset.x; in lv_img_get_offset_x() 335 return img->offset.y; in lv_img_get_offset_y() 400 img->offset.x = 0; in lv_img_constructor() 401 img->offset.y = 0; in lv_img_constructor() 658 lv_coord_t offset_x = img->offset.x % img->w; in draw_img() 659 lv_coord_t offset_y = img->offset.y % img->h; in draw_img()
|
D | lv_img.h | 43 lv_point_t offset; member
|
D | lv_label.h | 71 lv_point_t offset; /*Text draw position offset*/ member
|
D | lv_table.c | 752 lv_coord_t offset = table->col_w[col + col_merge + 1]; in draw_main() local 754 if(rtl) cell_area.x1 -= offset; in draw_main() 755 else cell_area.x2 += offset; in draw_main()
|
/lvgl-latest/src/extra/others/ime/ |
D | lv_ime_pinyin.c | 841 uint16_t offset = pinyin_ime->py_page * (3 * LV_IME_PINYIN_CAND_TEXT_NUM); in pinyin_page_proc() local 848 lv_pinyin_cand_str[i][j] = pinyin_ime->cand_str[offset + (i * 3) + j]; in pinyin_page_proc() 905 uint8_t index, len = 0, offset; in pinyin_search_matching() local 913 offset = py_str[0] - 'a'; in pinyin_search_matching() 916 cpHZ = &pinyin_ime->dict[pinyin_ime->py_pos[offset]]; in pinyin_search_matching() 917 count = pinyin_ime->py_num[offset]; in pinyin_search_matching() 1055 uint8_t index = 0, len = 0, offset = 0; in pinyin_k9_is_valid_py() local 1064 offset = py_str[0] - 'a'; in pinyin_k9_is_valid_py() 1067 cpHZ = &pinyin_ime->dict[pinyin_ime->py_pos[offset]]; in pinyin_k9_is_valid_py() 1068 count = pinyin_ime->py_num[offset]; in pinyin_k9_is_valid_py()
|
/lvgl-latest/examples/widgets/img/ |
D | index.rst | 22 Image offset and styling
|
/lvgl-latest/demos/music/ |
D | README.md | 20 …- If there is a large enough bass, add a random offset to the position of the bars. E.g. start fro… 21 - If there is no bass, add 1 to the offset of the bars (it creates a "walking" effect)
|
/lvgl-latest/demos/music/assets/ |
D | spectrum.py | 7 audio, sample_rate = librosa.load(sys.argv[1], duration=60, offset=0, sr=15360)
|
/lvgl-latest/src/font/ |
D | lv_font_loader.c | 539 uint16_t offset; in lvgl_load_font() local 540 if(lv_fs_read(fp, &offset, sizeof(uint16_t), NULL) != LV_FS_RES_OK) { in lvgl_load_font() 544 glyph_offset[i] = offset; in lvgl_load_font()
|
/lvgl-latest/docs/widgets/core/ |
D | img.md | 68 …t_x(img, x_ofs)` and `lv_img_set_offset_y(img, y_ofs)`, you can add some offset to the displayed i… 70 …offset parameter a [Texture atlas](https://en.wikipedia.org/wiki/Texture_atlas) or a "running imag…
|
D | canvas.md | 64 - `offset_x` offset X to tell where to put the result data on destination canvas 65 - `offset_y` offset X to tell where to put the result data on destination canvas
|
D | arc.md | 29 An offset to the 0 degree position can be added with `lv_arc_set_rotation(arc, deg)`.
|
/lvgl-latest/src/misc/ |
D | lv_tlsf.c | 1141 const size_t offset = tlsf_max(gap_remain, align); in lv_tlsf_memalign() local 1143 tlsf_cast(tlsfptr_t, aligned) + offset); in lv_tlsf_memalign()
|
/lvgl-latest/docs/overview/ |
D | font.md | 233 dsc_out->ofs_x = 0; /*X offset of the bitmap in [pf]*/ 234 dsc_out->ofs_y = 3; /*Y offset of the bitmap measured from the as line*/
|
D | style-props.md | 436 Set an offset on the shadow in pixels in X direction. 445 Set an offset on the shadow in pixels in Y direction.
|
/lvgl-latest/docs/porting/ |
D | display.md | 91 - `offset_x` horizontal offset from the full / physical display in pixels. Only set this when _not_… 92 - `offset_y` vertical offset from the full / physical display in pixels. Only set this when _not_ u…
|
/lvgl-latest/src/extra/libs/png/ |
D | lodepng.c | 1604 unsigned offset; /*the offset represents the distance in LZ77 terminology*/ in encodeLZ77() local 1636 offset = 0; in encodeLZ77() 1671 offset = current_offset; /*the offset that is related to this longest length*/ in encodeLZ77() 1694 lazyoffset = offset; in encodeLZ77() 1705 offset = lazyoffset; in encodeLZ77() 1712 … if(length >= 3 && offset > windowsize) ERROR_BREAK(86 /*too big (or overflown negative) offset*/); in encodeLZ77() 1717 } else if(length < minmatch || (length == 3 && offset > 4096)) { in encodeLZ77() 1722 addLengthDistance(out, length, offset); in encodeLZ77()
|
/lvgl-latest/docs/ |
D | CHANGELOG.md | 1982 - `lv_gaguge` make `lv_gauge_set_angle_offset` offset the labels and needles too 2037 - more shadows options: *offset* and *spread*
|