Searched refs:PartialNChars (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/libX11/dist/src/
H A DText.c75 int PartialNChars = length; local in function:XDrawString
80 while(PartialNChars > 254)
92 PartialNChars = PartialNChars - 254;
96 if (PartialNChars)
98 nbytes = PartialNChars + SIZEOF(xTextElt);
101 * elt->len = PartialNChars;
103 *(unsigned char *)tbuf = PartialNChars;
105 /* memcpy ((char *) (elt + 1), CharacterOffset, PartialNChars);
107 memcpy ((char *)tbuf+2, CharacterOffset, (size_t)PartialNChars);
[all...]
H A DText16.c75 int PartialNChars = length; local in function:XDrawString16
79 while(PartialNChars > 254)
86 PartialNChars = PartialNChars - 254;
90 if (PartialNChars)
92 nbytes = PartialNChars * 2 + SIZEOF(xTextElt);
95 elt->len = PartialNChars;
96 memcpy(((char *)elt) + 2, (char *)CharacterOffset, PartialNChars * 2);
H A DPolyTxt.c113 int PartialNChars = item->nchars; local in function:XDrawText
144 while(PartialNChars > 254)
171 PartialNChars = PartialNChars - 254;
175 if (PartialNChars)
177 nbytes = PartialNChars;
199 *tbuf = PartialNChars; /* elt->len */
200 memcpy (tbuf+2 , CharacterOffset, (size_t) PartialNChars);
H A DPolyTxt16.c113 int PartialNChars = item->nchars; local in function:XDrawText16
142 while(PartialNChars > 254)
172 PartialNChars = PartialNChars - 254;
176 if (PartialNChars)
178 nbytes = PartialNChars * 2;
203 elt->len = PartialNChars;
206 PartialNChars *

Completed in 4 milliseconds