Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 10 of 10) sorted by relevance

/lvgl-latest/src/draw/
Dlv_draw_label.c45 static uint8_t hex_char_to_num(char hex);
535 static uint8_t hex_char_to_num(char hex) in hex_char_to_num() argument
537 if(hex >= '0' && hex <= '9') return hex - '0'; in hex_char_to_num()
538 if(hex >= 'a') hex -= 'a' - 'A'; /*Convert to upper case*/ in hex_char_to_num()
539 return 'A' <= hex && hex <= 'F' ? hex - 'A' + 10 : 0; in hex_char_to_num()
/lvgl-latest/scripts/
Dfiletohex.py18 print(textwrap.fill(', '.join([hex(a) for a in b]), 96))
Djpg_to_sjpg.py111 c_code = c_code + "\t" + str(hex(sjpeg[i])) + ","
/lvgl-latest/src/draw/nema_gfx/
Dlv_draw_nema_gfx_label.c87 static uint8_t hex_char_to_num(char hex);
264 static uint8_t hex_char_to_num(char hex) in hex_char_to_num() argument
266 if(hex >= '0' && hex <= '9') return hex - '0'; in hex_char_to_num()
267 if(hex >= 'a') hex -= 'a' - 'A'; /*Convert to upper case*/ in hex_char_to_num()
268 return 'A' <= hex && hex <= 'F' ? hex - 'A' + 10 : 0; in hex_char_to_num()
/lvgl-latest/docs/details/main-components/
Dcolor.rst8 depth, creating colors from hex code, converting between color depths,
35 /* From hex code 0x000000..0xFFFFFF interpreted as RED + GREEN + BLUE */
Dfont.rst325 `this site <http://www.ltg.ed.ac.uk/~richard/utf-8.cgi?input=f287&mode=hex>`__.
/lvgl-latest/docs/details/widgets/
Dlottie.rst61 …e.c`` contains an example animation. Instead of storing the JSON string, a hex array is stored for…
67 ``lvgl/scripts/filetohex.py`` can be used to convert a Lottie file to a hex
/lvgl-latest/docs/details/libs/
Drlottie.rst73 format. Instead storing the JSON string, a hex array is stored for the
79 ``lvgl/scripts/filetohex.py`` can be used to convert a Lottie file a hex
/lvgl-latest/scripts/gen_json/
Dpycparser_monkeypatch.py414 hex_len = len(hex(value_num)[2:])
/lvgl-latest/
DKconfig106 hex "Address for the memory pool instead of allocating it as a normal array"