Home
last modified time | relevance | path

Searched refs:chr (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/lib/libc/minimal/include/
Dctype.h56 static inline int tolower(int chr) in tolower() argument
58 return (chr >= (int)'A' && chr <= (int)'Z') ? (chr + 32) : (chr); in tolower()
61 static inline int toupper(int chr) in toupper() argument
63 return (int)((chr >= (int)'a' && chr <= in toupper()
64 (int)'z') ? (chr - 32) : (chr)); in toupper()
67 static inline int isalnum(int chr) in isalnum() argument
69 return (int)(isalpha(chr) || isdigit(chr)); in isalnum()
/Zephyr-latest/soc/espressif/esp32/
Dsoc.h55 extern int esp_rom_uart_tx_one_char(uint8_t chr);
56 extern int esp_rom_uart_rx_one_char(uint8_t *chr);
/Zephyr-latest/soc/espressif/esp32c2/
Dsoc.h31 extern int esp_rom_uart_tx_one_char(uint8_t chr);
32 extern int esp_rom_uart_rx_one_char(uint8_t *chr);
/Zephyr-latest/soc/espressif/esp32c3/
Dsoc.h31 extern int esp_rom_uart_tx_one_char(uint8_t chr);
32 extern int esp_rom_uart_rx_one_char(uint8_t *chr);
/Zephyr-latest/soc/espressif/esp32s2/
Dsoc.h33 extern int esp_rom_uart_tx_one_char(uint8_t chr);
34 extern int esp_rom_uart_rx_one_char(uint8_t *chr);
/Zephyr-latest/soc/espressif/esp32s3/
Dsoc.h60 extern int esp_rom_uart_tx_one_char(uint8_t chr);
61 extern int esp_rom_uart_rx_one_char(uint8_t *chr);
/Zephyr-latest/lib/utils/
Djson.c85 int chr = next(lex); in peek() local
89 return chr; in peek()
97 int chr = next(lex); in lexer_string() local
99 if (chr == '\0') { in lexer_string()
104 if (chr == '\\') { in lexer_string()
138 if (chr == '"') { in lexer_string()
202 int chr = next(lex); in lexer_number() local
204 if (isdigit(chr) != 0 || chr == '.') { in lexer_number()
218 int chr = next(lex); in lexer_json() local
220 switch (chr) { in lexer_json()
[all …]
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/
Dutils.py40 ret_str += chr(data[offset])
Dlog_parser_v1.py228 one_str += chr(one_ch)
242 chr_vals += chr(one_hex)
Dlog_parser_v3.py233 one_str += chr(one_ch)
247 chr_vals += chr(one_hex)
/Zephyr-latest/soc/espressif/esp32c6/
Dsoc.h42 extern int esp_rom_uart_tx_one_char(uint8_t chr);
/Zephyr-latest/scripts/build/
Dgen_cfb_font_header.py80 size = font.getbbox(chr(i))
110 size = draw.textbbox((0, 0), chr(i), font=font)
121 draw.text((xpos, ypos), chr(i), font=font)
/Zephyr-latest/scripts/tracing/
Dtrace_capture_usb.py94 file_desc.write(chr(buff[index]).encode('latin1'))
/Zephyr-latest/scripts/coredump/gdbstubs/
Dgdbstub.py236 thread_index_str += chr(pkt[n])
296 thread_index_str += chr(pkt[n])
/Zephyr-latest/scripts/logging/dictionary/
Ddatabase_gen.py414 if is_printable(chr(x)):
/Zephyr-latest/scripts/west_commands/runners/
Djlink.py224 rev_str = chr(ord('a') + rev - 1) if rev else ''
/Zephyr-latest/scripts/kconfig/
Dmenuconfig.py3159 c = chr(c)