Searched refs:carryover (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/src/
H A Dcallproc.c767 int carryover = 0;
781 nread = carryover;
849 carryover = nread;
920 carryover = nread;
921 if (carryover > 0)
925 carryover);
766 int carryover = 0; variable
H A Dprocess.c5013 int carryover = XINT (p->decoding_carryover);
5036 if (carryover > 0)
5041 chars = (char *) alloca (nbytes + carryover);
5042 bcopy (SDATA (p->decoding_buf), buf, carryover);
5043 bcopy (vs->inputBuffer, chars + carryover, nbytes);
5047 chars = (char *) alloca (carryover + readmax);
5048 if (carryover)
5050 bcopy (SDATA (p->decoding_buf), chars, carryover);
5057 nbytes = recvfrom (channel, chars + carryover, readmax,
5064 nbytes = emacs_read (channel, chars + carryover, readma
4998 int carryover = XINT (p->decoding_carryover); local
[all...]
H A Dcoding.c4653 /* Move carryover bytes to DESTINATION. */
4696 int carryover = 0;
4699 carryover = 1;
4705 carryover = 2;
4709 carryover = 3;
4712 if (carryover > 0)
4714 BCOPY_SHORT (destination + coding->produced - carryover,
4716 carryover);
4717 coding->spec.ccl.eight_bit_carryover[carryover] = 0;
4718 coding->produced -= carryover;
4689 int carryover = 0; local
[all...]

Completed in 206 milliseconds