Lines Matching refs:overflow
59 char overflow[4];
180 * prepare for overflow output
183 overflow[0]=(char)(c>>8);
184 overflow[1]=(char)c;
198 length=0; /* from here on, length counts the bytes in overflow[] */
211 /* output the surrogate pair, will overflow (see conditions comment above) */
213 overflow[0]=(char)(c>>8);
214 overflow[1]=(char)c;
215 overflow[2]=(char)(trail>>8);
216 overflow[3]=(char)trail;
234 /* output length bytes with overflow (length>targetCapacity>0) */
236 overflow, length,
449 /* output the surrogate pair, will overflow (see conditions comment above) */
658 char overflow[4];
779 * prepare for overflow output
782 overflow[0]=(char)c;
783 overflow[1]=(char)(c>>8);
797 length=0; /* from here on, length counts the bytes in overflow[] */
810 /* output the surrogate pair, will overflow (see conditions comment above) */
812 overflow[0]=(char)c;
813 overflow[1]=(char)(c>>8);
814 overflow[2]=(char)trail;
815 overflow[3]=(char)(trail>>8);
833 /* output length bytes with overflow (length>targetCapacity>0) */
835 overflow, length,
1048 /* output the surrogate pair, will overflow (see conditions comment above) */