Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 12 of 12) sorted by relevance

/include/
A Dhexdump.h37 static inline int hex_to_bin(char ch) in hex_to_bin() argument
39 if ((ch >= '0') && (ch <= '9')) in hex_to_bin()
40 return ch - '0'; in hex_to_bin()
41 ch = tolower(ch); in hex_to_bin()
42 if ((ch >= 'a') && (ch <= 'f')) in hex_to_bin()
43 return ch - 'a' + 10; in hex_to_bin()
A Ddebug_uart.h77 void printch(int ch);
138 static inline void _printch(int ch) \
140 if (ch == '\n') \
142 _debug_uart_putc(ch); \
145 void printch(int ch) \
147 _printch(ch); \
206 #define _printch(ch) (void)(ch) argument
210 #define printch(ch) (void)(ch) argument
A Ddm-demo.h23 int (*hello)(struct udevice *dev, int ch);
29 int demo_hello(struct udevice *dev, int ch);
A Ddbsc5.h53 } ch[4]; member
A Dsemihosting.h152 void smh_putc(char ch);
A Dserial.h180 int (*putc)(struct udevice *dev, const char ch);
354 void serial_putc(const char ch);
355 void serial_putc_raw(const char ch);
A Dmembuf.h96 bool membuf_putbyte(struct membuf *mb, int ch);
A Dos.h330 void os_putc(int ch);
A Dns16550.h238 int ns16550_serial_putc(struct udevice *dev, const char ch);
A Dvideo_console.h502 int vidconsole_put_char(struct udevice *dev, char ch);
A Defi.h613 void efi_putc(struct efi_priv *priv, const char ch);
/include/renesas/
A Drzg2l-pfc.h81 #define ETH_POC(ch) (0x300c + (ch) * 4) argument

Completed in 30 milliseconds