Searched refs:pcStr (Results 1 – 5 of 5) sorted by relevance
319 decstr_to_int(const char *pcStr, uint32_t *pui32CharCnt) in decstr_to_int() argument324 if ( *pcStr == '-') in decstr_to_int()327 pcStr++; in decstr_to_int()331 while ( *pcStr >= '0' && *pcStr <= '9' ) in decstr_to_int()343 ui32Val += (*pcStr - '0'); in decstr_to_int()344 pcStr++; in decstr_to_int()745 char *pcStr; in am_util_stdio_vsprintf() local851 pcStr = va_arg(pArgs, char *); in am_util_stdio_vsprintf()858 ui32strlen = simple_strlen(pcStr); in am_util_stdio_vsprintf()873 while (*pcStr != 0x0) in am_util_stdio_vsprintf()[all …]
458 am_util_string_strlen(const char *pcStr) in am_util_string_strlen() argument465 for (pcS = pcStr; *pcS; ++pcS); in am_util_string_strlen()470 return(pcS - pcStr); in am_util_string_strlen()
870 regdump_strlen(char *pcStr) in regdump_strlen() argument877 for ( pcS = pcStr; *pcS; ++pcS ); in regdump_strlen()882 return (pcS - pcStr); in regdump_strlen()
78 typedef void (*am_util_stdio_print_char_t)(char *pcStr);
191 extern uint32_t am_util_string_strlen(const char *pcStr);