| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| strerror.c | 40 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3]; local 44 sprintf (mesg, fmt, n); 45 return mesg;
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| strerror.c | 40 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3]; local 44 sprintf (mesg, fmt, n); 45 return mesg;
|
| /src/external/gpl2/texinfo/dist/lib/ |
| strerror.c | 42 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3]; local 46 sprintf (mesg, fmt, n); 47 return mesg;
|
| /src/external/gpl2/xcvs/dist/lib/ |
| strerror.c | 43 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3]; local 47 sprintf (mesg, fmt, n); 48 return mesg;
|
| /src/external/bsd/libbind/dist/bsd/ |
| writev.c | 34 struct msghdr mesg; local 36 memset(&mesg, 0, sizeof(mesg)); 37 mesg.msg_name = 0; 38 mesg.msg_namelen = 0; 39 mesg.msg_iov = iov; 40 mesg.msg_iovlen = iovlen; 41 mesg.msg_accrights = 0; 42 mesg.msg_accrightslen = 0; 43 return (sendmsg(fd, &mesg, 0)) [all...] |
| /src/external/historical/nawk/dist/ |
| main.c | 71 const char *mesg = NULL; local 75 mesg = "Integer divide by zero"; 78 mesg = "Integer overflow"; 81 mesg = "Floating point divide by zero"; 84 mesg = "Floating point overflow"; 87 mesg = "Floating point underflow"; 90 mesg = "Floating point inexact result"; 93 mesg = "Invalid Floating point operation"; 96 mesg = "Subscript out of range"; 100 mesg = "Unknown error" [all...] |
| /src/usr.bin/mail/ |
| cmd3.c | 651 int *ip, mesg; local 655 mesg = *ip; 656 mp = get_message(mesg); 657 (void)printf("%d: %ld/%llu\n", mesg, mp->m_blines,
|
| /src/crypto/external/bsd/netpgp/dist/bindings/python/ |
| netpgppython_wrap.c | 838 SWIG_Python_AddErrorMsg(const char* mesg) 849 PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); 853 PyErr_Format(PyExc_RuntimeError, mesg); 2337 SWIG_Python_AddErrMesg(const char* mesg, int infront) 2349 PyErr_Format(type, "%s %s", mesg, PyString_AsString(old_str)); 2351 PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); 2366 char mesg[256]; local 2367 PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); 2368 return SWIG_Python_AddErrMesg(mesg, 1) [all...] |