Searched refs:hex (Results 1 – 10 of 10) sorted by relevance
45 static uint8_t hex_char_to_num(char hex);535 static uint8_t hex_char_to_num(char hex) in hex_char_to_num() argument537 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()
18 print(textwrap.fill(', '.join([hex(a) for a in b]), 96))
111 c_code = c_code + "\t" + str(hex(sjpeg[i])) + ","
87 static uint8_t hex_char_to_num(char hex);264 static uint8_t hex_char_to_num(char hex) in hex_char_to_num() argument266 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()
8 depth, creating colors from hex code, converting between color depths,35 /* From hex code 0x000000..0xFFFFFF interpreted as RED + GREEN + BLUE */
325 `this site <http://www.ltg.ed.ac.uk/~richard/utf-8.cgi?input=f287&mode=hex>`__.
61 …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
73 format. Instead storing the JSON string, a hex array is stored for the79 ``lvgl/scripts/filetohex.py`` can be used to convert a Lottie file a hex
414 hex_len = len(hex(value_num)[2:])
106 hex "Address for the memory pool instead of allocating it as a normal array"