HomeSort by: relevance | last modified time | path
    Searched refs:hextoint (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/ntp/dist/tests/libntp/
hextoint.c 1 /* $NetBSD: hextoint.c,v 1.2 2020/05/25 20:47:36 christos Exp $ */
22 TEST_ASSERT_TRUE(hextoint(str, &actual));
30 TEST_ASSERT_TRUE(hextoint(str, &actual));
38 TEST_ASSERT_TRUE(hextoint(str, &actual));
46 TEST_ASSERT_FALSE(hextoint(str, &actual));
53 TEST_ASSERT_FALSE(hextoint(str, &actual));
  /src/external/bsd/flex/dist/examples/manual/
string1.lex 12 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10)
46 temp = hextoint(toupper(inch));
49 temp = (temp << 4) + hextoint(toupper(inch));
string2.lex 11 #define hextoint(x) (isdigit((x)) ? (x) - '0' : ((x) - 'A') + 10)
55 temp += hextoint(toupper(yytext[yyleng-loop]));
  /src/external/bsd/ntp/dist/libntp/
hextoint.c 1 /* $NetBSD: hextoint.c,v 1.8 2020/05/25 20:47:24 christos Exp $ */
4 * hextoint - convert an ascii string in hex to an unsigned
13 hextoint( function
  /src/external/gpl2/mkhybrid/dist/libfile/
apprentice.c 76 static int hextoint (int);
499 c = hextoint(*s++); /* Get next char */
502 c = hextoint(*s++);
524 hextoint(int c) function
  /src/external/bsd/ntp/lib/libntp/
Makefile 38 hextoint.c \
  /src/external/bsd/ntp/dist/include/
ntp_stdlib.h 174 extern int hextoint (const char *, u_long *);
  /src/external/bsd/ntp/dist/ntpq/
ntpq.c 2291 return hextoint(str+2, (u_long *)val);
2309 return (hextoint(str + 2, val));
  /src/external/bsd/file/dist/src/
apprentice.c 122 file_private int hextoint(int);
3127 c = hextoint(*s++); /* Get next char */
3130 c = hextoint(*s++);
3157 hextoint(int c) function
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc_ops.c 2798 if (!hextoint(pcmd->argval[2].string, &u_val))

Completed in 39 milliseconds