Searched refs:hextoint (Results 1 – 8 of 8) sorted by relevance
22 TEST_ASSERT_TRUE(hextoint(str, &actual)); in test_SingleDigit()30 TEST_ASSERT_TRUE(hextoint(str, &actual)); in test_MultipleDigits()38 TEST_ASSERT_TRUE(hextoint(str, &actual)); in test_MaxUnsigned()46 TEST_ASSERT_FALSE(hextoint(str, &actual)); in test_Overflow()53 TEST_ASSERT_FALSE(hextoint(str, &actual)); in test_IllegalChar()
12 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10) macro46 temp = hextoint(toupper(inch));49 temp = (temp << 4) + hextoint(toupper(inch));
11 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10) macro
76 static int hextoint (int);499 c = hextoint(*s++); /* Get next char */ in apgetstr()502 c = hextoint(*s++); in apgetstr()524 hextoint(int c) in hextoint() function
13 hextoint( in hextoint() function
122 file_private int hextoint(int);3127 c = hextoint(*s++); /* Get next char */ in getstr()3130 c = hextoint(*s++); in getstr()3157 hextoint(int c) in hextoint() function
2798 if (!hextoint(pcmd->argval[2].string, &u_val)) in fudge()
5672 * libntp/hextoint.c (hextoint): ctype macros take ints as args