Searched refs:tempchar (Results 1 – 1 of 1) sorted by relevance
5960 UCHAR tempchar; in nx_bsd_inet_aton() local5970 tempchar = *buffer_ptr; in nx_bsd_inet_aton()5973 if (nx_bsd_isdigit(tempchar)== NX_FALSE) in nx_bsd_inet_aton()6015 tempchar = *buffer_ptr; in nx_bsd_inet_aton()6021 if (nx_bsd_isdigit(tempchar)) in nx_bsd_inet_aton()6028 value = (value * (ULONG)base) + (ULONG)(tempchar - '0'); in nx_bsd_inet_aton()6034 tempchar = *buffer_ptr; in nx_bsd_inet_aton()6037 else if (nx_bsd_isxdigit(tempchar)) in nx_bsd_inet_aton()6044 CHAR c = (CHAR)(nx_bsd_islower(tempchar) ? 'a' : 'A'); in nx_bsd_inet_aton()6050 value = (value << 4) + (ULONG)(tempchar + 10 - c); in nx_bsd_inet_aton()[all …]