HomeSort by: relevance | last modified time | path
    Searched defs:numstr (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/arch/x68k/stand/common/
xprintf.c 55 static char * numstr(char *buf, long val, int base, int sign);
62 numstr(char *buf, long val, int base, int sign) function
133 s = numstr(numbuf, va_arg(ap, long), 10, 1);
140 s = numstr(numbuf, va_arg(ap, long), 10, 0);
152 s = numstr(numbuf, va_arg(ap, long), 16, 0);
156 s = numstr(numbuf, va_arg(ap, long), 8, 0);
  /src/external/bsd/libbind/dist/irs/
dns_pr.c 143 char numstr[16]; local
146 sprintf(numstr, "%d", num);
147 if (!(hes_list = hesiod_resolve(dns->hes_ctx, numstr, "protonum")))
  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fphex.c 89 char *numstr;
250 numstr = _itoa_word (num1, numbuf + sizeof numbuf, 16,
258 numstr = _itoa (num1, numbuf + sizeof numbuf, 16,
265 while (numstr > numbuf + (sizeof numbuf - 64 / 4))
267 *--numstr = '0';
273 numstr = _itoa_word (num0, numstr, 16, info->spec == 'A');
278 numstr = _itoa (num0, numstr, 16, info->spec == 'A');
283 while (numstr > numbuf + (sizeof numbuf - 112 / 4)
87 char *numstr; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fphex.c 89 char *numstr;
250 numstr = _itoa_word (num1, numbuf + sizeof numbuf, 16,
258 numstr = _itoa (num1, numbuf + sizeof numbuf, 16,
265 while (numstr > numbuf + (sizeof numbuf - 64 / 4))
267 *--numstr = '0';
273 numstr = _itoa_word (num0, numstr, 16, info->spec == 'A');
278 numstr = _itoa (num0, numstr, 16, info->spec == 'A');
283 while (numstr > numbuf + (sizeof numbuf - 112 / 4)
87 char *numstr; local
    [all...]
  /src/crypto/dist/ipsec-tools/src/setkey/
setkey.c 106 static const char *numstr(int);
903 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
906 numstr(int x) function
  /src/usr.bin/usbhidctl/
usbhid.c 133 char numstr[16]; local
135 if (nlen >= sizeof(numstr) || !isdigit((unsigned char)*nptr))
143 memcpy(numstr, nptr, nlen);
144 numstr[nlen] = '\0';
146 result = strtol(numstr, &endptr, 0);
148 if (result < 0 || result > 0xffff || endptr != &numstr[nlen])
  /src/external/bsd/tcpdump/dist/
print-telnet.c 364 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
367 numstr(int x) function
print-isakmp.c 626 static char *numstr(u_int);
723 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
1713 ND_PRINT(" type=%s", numstr(type));
1717 ND_PRINT(" type=%s", numstr(type));
1739 ND_PRINT(" type=%s", numstr(type));
2812 numstr(u_int x) function

Completed in 33 milliseconds