Home
last modified time | relevance | path

Searched refs:hextoint (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/bsd/ntp/dist/tests/libntp/
H A Dhextoint.c22 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()
/netbsd-src/external/bsd/flex/dist/examples/manual/
H A Dstring1.lex12 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10) macro
46 temp = hextoint(toupper(inch));
49 temp = (temp << 4) + hextoint(toupper(inch));
H A Dstring2.lex11 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10) macro
/netbsd-src/external/gpl2/mkhybrid/dist/libfile/
H A Dapprentice.c76 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
/netbsd-src/external/bsd/ntp/dist/libntp/
H A Dhextoint.c13 hextoint( in hextoint() function
/netbsd-src/external/bsd/file/dist/src/
H A Dapprentice.c122 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
/netbsd-src/external/bsd/ntp/dist/ntpdc/
H A Dntpdc_ops.c2798 if (!hextoint(pcmd->argval[2].string, &u_val)) in fudge()
/netbsd-src/external/bsd/ntp/dist/
H A DCommitLog-4.1.05672 * libntp/hextoint.c (hextoint): ctype macros take ints as args