Searched refs:character (Results 1 - 5 of 5) sorted by relevance
/device/soc/rockchip/rk2206/sdk_liteos/platform/uart/ |
H A D | uart_debug.h | 31 void uart_debug_putc(char character); 32 void _putchar(char character);
|
H A D | uart_debug.c | 76 void uart_debug_putc(char character) in uart_debug_putc() argument 78 DebugWrite(UART_DEBUG_ID, &character, 1); in uart_debug_putc()
|
/device/soc/rockchip/rk2206/sdk_liteos/platform/system/ |
H A D | printf.c | 119 typedef void (*out_fct_type)(char character, void* buffer, size_t idx, size_t maxlen); 123 void (*fct)(char character, void* arg); 128 static inline void _out_buffer(char character, void* buffer, size_t idx, size_t maxlen) in _out_buffer() argument 131 ((char*)buffer)[idx] = character; in _out_buffer() 136 static inline void _out_null(char character, void* buffer, size_t idx, size_t maxlen) in _out_null() argument 138 (void)character; in _out_null() 150 static inline void _out_char(char character, void* buffer, size_t idx, size_t maxlen) in _out_char() argument 155 if (character) { in _out_char() 156 uart_debug_putc(character); in _out_char() 162 static inline void _out_fct(char character, voi argument 1037 fctprintf(void (*out)(char character, void* arg), void* arg, const char* format, ...) fctprintf() argument [all...] |
H A D | printf.h | 32 * \return The number of characters that are written into the array, not counting the terminating null character 41 * \param count The maximum number of characters to store in the buffer, including a terminating null character 45 * null character. A value equal or larger than count indicates truncation. Only when the returned value 57 * \param out An output function which takes one character and an argument pointer 60 * \return The number of characters that are sent to the output function, not counting the terminating null character 62 int fctprintf(void (*out)(char character, void* arg), void* arg, const char* format, ...);
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/mpp_help/src/ |
H A D | osd_img.c | 44 #define NOASCII_CHARACTER_BYTES (2) /* Number of bytes occupied by each Chinese character */
928 static int OsdInitFont(HI_CHAR *character, HI_U8 **fontMod, HI_S32 *fontModLen)
in OsdInitFont() argument 936 if (!character || !fontMod || !fontModLen) {
in OsdInitFont() 941 * Return true if the parameter is an ASCII character, otherwise NULL (0)
in OsdInitFont() 943 if (!IsAscii(character[0])) {
in OsdInitFont() 946 HI_U32 offset = (character[0] - baseChar) * (OSD_FONT_MOD_H * OSD_FONT_MOD_W / HI_BYTE_BITS);
in OsdInitFont()
|
Completed in 9 milliseconds