Searched refs:ch (Results 1 – 12 of 12) sorted by relevance
37 static inline int hex_to_bin(char ch) in hex_to_bin() argument39 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()
77 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) argument210 #define printch(ch) (void)(ch) argument
23 int (*hello)(struct udevice *dev, int ch);29 int demo_hello(struct udevice *dev, int ch);
53 } ch[4]; member
152 void smh_putc(char ch);
180 int (*putc)(struct udevice *dev, const char ch);354 void serial_putc(const char ch);355 void serial_putc_raw(const char ch);
96 bool membuf_putbyte(struct membuf *mb, int ch);
330 void os_putc(int ch);
238 int ns16550_serial_putc(struct udevice *dev, const char ch);
502 int vidconsole_put_char(struct udevice *dev, char ch);
613 void efi_putc(struct efi_priv *priv, const char ch);
81 #define ETH_POC(ch) (0x300c + (ch) * 4) argument
Completed in 30 milliseconds