Lines Matching refs:c
1397 char c; in SlNetUtil_inetAton() local
1421 c = *str++; in SlNetUtil_inetAton()
1423 if ((c >= '0' && c <= '9')) { in SlNetUtil_inetAton()
1424 val[sect] = (val[sect] * base) + (c - '0'); in SlNetUtil_inetAton()
1426 else if (base == 16 && (c >= 'A' && c <= 'F')) { in SlNetUtil_inetAton()
1427 val[sect] = (val[sect] * 16) + (c - 'A') + 10; in SlNetUtil_inetAton()
1429 else if (base == 16 && (c >= 'a' && c <= 'f')) { in SlNetUtil_inetAton()
1430 val[sect] = (val[sect] * 16) + (c - 'a') + 10; in SlNetUtil_inetAton()
1432 else if (c == '.') { in SlNetUtil_inetAton()
1449 else if (!c) { in SlNetUtil_inetAton()
1452 else if (c != ' ') { in SlNetUtil_inetAton()