buff              627 mtcp/mtcp_util.c static void rwrite (char const *buff, int size) {
buff              628 mtcp/mtcp_util.c   mtcp_write_all(2, buff, size);
buff              661 mtcp/mtcp_util.c         char buff[4];
buff              663 mtcp/mtcp_util.c         buff[0] = va_arg (ap, int); // va_arg (ap, char);
buff              664 mtcp/mtcp_util.c         rwrite (buff, 1);
buff              672 mtcp/mtcp_util.c         char buff[20];
buff              675 mtcp/mtcp_util.c         i = sizeof buff;
buff              680 mtcp/mtcp_util.c           buff[--i] = (n % 10) + '0';
buff              683 mtcp/mtcp_util.c         if (neg) buff[--i] = '-';
buff              684 mtcp/mtcp_util.c         rwrite (buff + i, sizeof buff - i);
buff              692 mtcp/mtcp_util.c         char buff[24];
buff              696 mtcp/mtcp_util.c         i = sizeof buff;
buff              699 mtcp/mtcp_util.c           buff[--i] = (n & 7) + '0';
buff              702 mtcp/mtcp_util.c         rwrite (buff + i, sizeof buff - i);
buff              710 mtcp/mtcp_util.c         char buff[18];
buff              714 mtcp/mtcp_util.c         i = sizeof buff;
buff              717 mtcp/mtcp_util.c           buff[--i] = hexdigits[n%16];
buff              720 mtcp/mtcp_util.c         buff[--i] = 'x';
buff              721 mtcp/mtcp_util.c         buff[--i] = '0';
buff              722 mtcp/mtcp_util.c         rwrite (buff + i, sizeof buff - i);
buff              738 mtcp/mtcp_util.c         char buff[18];
buff              742 mtcp/mtcp_util.c         i = sizeof buff;
buff              745 mtcp/mtcp_util.c           buff[--i] = (n % 10) + '0';
buff              748 mtcp/mtcp_util.c         rwrite (buff + i, sizeof buff - i);
buff              757 mtcp/mtcp_util.c         char buff[18];
buff              761 mtcp/mtcp_util.c         i = sizeof buff;
buff              764 mtcp/mtcp_util.c           buff[--i] = hexdigits[n%16];
buff              767 mtcp/mtcp_util.c         rwrite (buff + i, sizeof buff - i);
buff              224 util_misc.cpp            struct stat buff;
buff              225 util_misc.cpp            int ret = stat(dirName.c_str(), &buff);