Home
last modified time | relevance | path

Searched refs:count (Results 1 – 15 of 15) sorted by relevance

/lvgl-3.7.0/src/extra/others/ime/
Dlv_ime_pinyin.c906 volatile uint8_t count = 0; in pinyin_search_matching() local
917 count = pinyin_ime->py_num[offset]; in pinyin_search_matching()
919 while(count--) { in pinyin_search_matching()
1006 int count = 0; in pinyin_k9_get_legal_py() local
1017 if((count >= ll_len) || (ll_len == 0)) { in pinyin_k9_get_legal_py()
1021 else if((count < ll_len)) { in pinyin_k9_get_legal_py()
1025 count++; in pinyin_k9_get_legal_py()
1043 if(count > 0) { in pinyin_k9_get_legal_py()
1045 pinyin_ime->k9_legal_py_count = count; in pinyin_k9_get_legal_py()
1057 volatile uint8_t count = 0; in pinyin_k9_is_valid_py() local
[all …]
/lvgl-3.7.0/src/misc/
Dlv_printf.h87 int lv_snprintf(char * buffer, size_t count, const char * format, ...) LV_FORMAT_ATTRIBUTE(3, 4);
88 int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va) LV_FORMAT_ATTRIBUTE(…
Dlv_printf.c384 unsigned int count = prec; in _ftoa() local
387 --count; in _ftoa()
394 while((len < PRINTF_FTOA_BUFFER_SIZE) && (count-- > 0U)) { in _ftoa()
865 int lv_snprintf(char * buffer, size_t count, const char * format, ...) in lv_snprintf() argument
869 const int ret = _vsnprintf(_out_buffer, buffer, count, format, va); in lv_snprintf()
874 int lv_vsnprintf(char * buffer, size_t count, const char * format, va_list va) in lv_vsnprintf() argument
876 return _vsnprintf(_out_buffer, buffer, count, format, va); in lv_vsnprintf()
/lvgl-3.7.0/src/extra/widgets/animimg/
Dlv_animimg.c95 void lv_animimg_set_repeat_count(lv_obj_t * obj, uint16_t count) in lv_animimg_set_repeat_count() argument
99 lv_anim_set_repeat_count(&animimg->anim, count); in lv_animimg_set_repeat_count()
Dlv_animimg.h90 void lv_animimg_set_repeat_count(lv_obj_t * img, uint16_t count);
/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dstb_rect_pack.h510 int count = 0; in stbrp__skyline_pack_rectangle() local
514 ++count; in stbrp__skyline_pack_rectangle()
519 ++count; in stbrp__skyline_pack_rectangle()
521 STBRP_ASSERT(count == context->num_nodes + 2); in stbrp__skyline_pack_rectangle()
Dstb_truetype_htcw.h1278 int count, start, offsize; in stbtt__cff_get_index() local
1280 count = stbtt__buf_get16(b); in stbtt__cff_get_index()
1281 if(count) { in stbtt__cff_get_index()
1284 stbtt__buf_skip(b, offsize * count); in stbtt__cff_get_index()
1350 int count, offsize, start, end; in stbtt__cff_index_get() local
1352 count = stbtt__buf_get16(&b); in stbtt__cff_index_get()
1354 STBTT_assert(i >= 0 && i < count); in stbtt__cff_index_get()
1359 return stbtt__buf_range(&b, 2 + (count + 1) * offsize + start, end - start); in stbtt__cff_index_get()
1705 stbtt_uint32 count = ttUSHORT(data, index_map + 8); local
1706 … if((stbtt_uint32)unicode_codepoint >= first && (stbtt_uint32)unicode_codepoint < first + count)
[all …]
/lvgl-3.7.0/docs/overview/
Dtimer.md49 ## Repeat count
51 …t_repeat_count(timer, count)`. The timer will automatically be deleted after it's called the defin…
Dlayer.md41 …x in the order of children. (0: backgroud, child_num - 1: foreground, <0: count from the top, to m…
/lvgl-3.7.0/docs/widgets/extra/
Danimimg.md7 You can specify a duration and repeat count.
/lvgl-3.7.0/tests/unity/
Dunity.c115 UNITY_UINT count = 0; in UnityPrintAnsiEscapeString() local
121 count++; in UnityPrintAnsiEscapeString()
124 count++; in UnityPrintAnsiEscapeString()
126 return count; in UnityPrintAnsiEscapeString()
/lvgl-3.7.0/docs/widgets/core/
Dtable.md56 - `id`: current row &times; col count + current column
/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.c5544 unsigned count[256]; in filter() local
5557 lodepng_memset(count, 0, 256 * sizeof(*count)); in filter()
5558 for(x = 0; x != linebytes; ++x) ++count[attempt[type][x]]; in filter()
5559 ++count[type]; /*the filter type itself is part of the scanline*/ in filter()
5561 sum += ilog2i(count[x]); in filter()
/lvgl-3.7.0/docs/
DCONTRIBUTING.md175 …ithub.com/lvgl/lvgl" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label=…
/lvgl-3.7.0/
DKconfig390 bool "Show CPU usage and FPS count."