Lines Matching defs:overflow
57 char overflow[4];
178 * prepare for overflow output
181 overflow[0]=(char)(c>>8);
182 overflow[1]=(char)c;
196 length=0; /* from here on, length counts the bytes in overflow[] */
209 /* output the surrogate pair, will overflow (see conditions comment above) */
211 overflow[0]=(char)(c>>8);
212 overflow[1]=(char)c;
213 overflow[2]=(char)(trail>>8);
214 overflow[3]=(char)trail;
232 /* output length bytes with overflow (length>targetCapacity>0) */
234 overflow, length,
447 /* output the surrogate pair, will overflow (see conditions comment above) */
653 char overflow[4];
774 * prepare for overflow output
777 overflow[0]=(char)c;
778 overflow[1]=(char)(c>>8);
792 length=0; /* from here on, length counts the bytes in overflow[] */
805 /* output the surrogate pair, will overflow (see conditions comment above) */
807 overflow[0]=(char)c;
808 overflow[1]=(char)(c>>8);
809 overflow[2]=(char)trail;
810 overflow[3]=(char)(trail>>8);
828 /* output length bytes with overflow (length>targetCapacity>0) */
830 overflow, length,
1043 /* output the surrogate pair, will overflow (see conditions comment above) */