Lines Matching refs:buffer
713 static char *Msgbuff = NULL; /* message buffer */
742 /* If necessary, allocate larger message buffer. */
1078 unsigned long buffer;
1080 buffer = value & 0x7f;
1083 buffer <<= 8;
1084 buffer |= 0x80;
1085 buffer += (value & 0x7f);
1089 eputc ((unsigned) (buffer & 0xff));
1091 if (buffer & 0x80)
1092 buffer >>= 8;