Home | History | Annotate | Download | only in exe

Lines Matching refs:n1

162 	"logstamp [<n1>] [<n2>]  -- add a message to the log"},
994 int n1, n2;
996 n1 = (int)((unsigned char)*inptr++);
998 if (!isxdigit(n1) || !isxdigit(n2)) {
1000 (isxdigit(n1) ? n2 : n1));
1004 n1 = isdigit(n1) ? (n1 - '0')
1005 : ((islower(n1) ? (toupper(n1)) : n1) - 'A' + 10);
1008 *outptr++ = (n1 * 16) + n2;