total             583 lib/common/ipc_server.c     unsigned int total = 0;
total             611 lib/common/ipc_server.c     total = iov[0].iov_len + header->size_uncompressed;
total             613 lib/common/ipc_server.c     if (total < max_send_size) {
total              83 lib/common/md5.c   ctx->total[0] = ctx->total[1] = 0;
total             120 lib/common/md5.c   ctx->total[0] += bytes;
total             121 lib/common/md5.c   if (ctx->total[0] < bytes)
total             122 lib/common/md5.c     ++ctx->total[1];
total             125 lib/common/md5.c   ctx->buffer[size - 2] = SWAP (ctx->total[0] << 3);
total             126 lib/common/md5.c   ctx->buffer[size - 1] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
total             343 lib/common/md5.c   ctx->total[0] += lolen;
total             344 lib/common/md5.c   ctx->total[1] += (len >> 31 >> 1) + (ctx->total[0] < lolen);
total              83 lib/gnu/md5.c    ctx->total[0] = ctx->total[1] = 0;
total             120 lib/gnu/md5.c    ctx->total[0] += bytes;
total             121 lib/gnu/md5.c    if (ctx->total[0] < bytes)
total             122 lib/gnu/md5.c      ++ctx->total[1];
total             125 lib/gnu/md5.c    ctx->buffer[size - 2] = SWAP (ctx->total[0] << 3);
total             126 lib/gnu/md5.c    ctx->buffer[size - 1] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
total             343 lib/gnu/md5.c    ctx->total[0] += lolen;
total             344 lib/gnu/md5.c    ctx->total[1] += (len >> 31 >> 1) + (ctx->total[0] < lolen);
total              76 lib/gnu/md5.h    uint32_t total[2];
total             447 lib/services/services_linux.c     int ret, total = 0, len = strlen(buffer);
total             451 lib/services/services_linux.c         ret = write(op->opaque->stdin_fd, buffer + total, len - total);
total             453 lib/services/services_linux.c             total += ret;
total             456 lib/services/services_linux.c     } while ((errno == EINTR) && (total < len));