Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Ddtoa.h35 inline void GrisuRound(char* buffer, int len, uint64_t delta, uint64_t rest, uint64_t ten_kappa, ui… in GrisuRound() argument
36 while (rest < wp_w && delta - rest >= ten_kappa && in GrisuRound()
37 (rest + ten_kappa < wp_w || /// closer in GrisuRound()
38 wp_w - rest > rest + ten_kappa - wp_w)) { in GrisuRound()
40 rest += ten_kappa; in GrisuRound()
/lvgl-latest/docs/details/debugging/
Dvg_lite_tvg.rst26 3. Enable :c:macro:`LV_USE_VG_LITE_THORVG` and set :c:macro:`LV_DRAW_BUF_ALIGN` to 64. The rest of …
/lvgl-latest/docs/details/widgets/
Dmsgbox.rst20 The message box can be modal (blocking clicks on the rest of the screen)
/lvgl-latest/docs/details/integration/os/
Dqnx.rst103 Steps 2, 3 and 5 use QNX-specific calls, but the rest of the code should be
/lvgl-latest/docs/intro/
Dbasics.rst50 of the rest.
/lvgl-latest/src/libs/lodepng/
Dlodepng.c2030 unsigned num = j / 6u, rest = j % 6u; in deflateDynamic() local
2036 if(rest >= 3) { in deflateDynamic()
2038 bitlen_lld_e[numcodes_lld_e++] = rest - 3; in deflateDynamic()
2040 else j -= rest; in deflateDynamic()