Lines Matching defs:padBytes
693 int padBytes;
759 padBytes = padding_for_int32(count);
766 replyinfo.dataLenBytes = count + padBytes;
767 replyinfo.padBytes = padBytes;
769 who->replyBytesRemaining -= count + padBytes;
781 bytesleft = (replylen * 4) + SIZEOF(xReply) - count - padBytes;
790 who->replyBytesRemaining -= (count + padBytes);
797 (replylen * 4) + SIZEOF(xReply) - count - padBytes;
801 if (oco->count == 0 || oco->count + count + padBytes > oco->size) {
815 if (padBytes) {
816 memset(oco->buf + oco->count, '\0', padBytes);
817 oco->count += padBytes;