Lines Matching refs:pElt
1139 while (c->endReq - c->pElt > TextEltHeader) { in doPolyText()
1140 if (*c->pElt == FontChange) { in doPolyText()
1143 if (c->endReq - c->pElt < FontShiftSize) { in doPolyText()
1150 fid = ((Font) *(c->pElt + 4)) /* big-endian */ in doPolyText()
1151 |((Font) *(c->pElt + 3)) << 8 in doPolyText()
1152 | ((Font) *(c->pElt + 2)) << 16 | ((Font) *(c->pElt + 1)) << 24; in doPolyText()
1165 c->endReq = c->pElt; in doPolyText()
1186 c->pElt += FontShiftSize; in doPolyText()
1192 pNextElt = c->pElt + TextEltHeader + (*c->pElt) * itemSize; in doPolyText()
1198 c->pElt = pNextElt; in doPolyText()
1202 lgerr = LoadGlyphs(client, c->pGC->font, *c->pElt, itemSize, in doPolyText()
1203 c->pElt + TextEltHeader); in doPolyText()
1238 len = new_closure->endReq - new_closure->pElt; in doPolyText()
1245 memmove(new_closure->data, new_closure->pElt, len); in doPolyText()
1246 new_closure->pElt = new_closure->data; in doPolyText()
1247 new_closure->endReq = new_closure->pElt + len; in doPolyText()
1292 c->xorg += *((INT8 *) (c->pElt + 1)); /* must be signed */ in doPolyText()
1296 c->yorg, *c->pElt, in doPolyText()
1297 (char *) (c->pElt + in doPolyText()
1302 c->yorg, *c->pElt, in doPolyText()
1304 pElt + in doPolyText()
1307 c->pElt = pNextElt; in doPolyText()
1324 c->pElt = c->data; in doPolyText()
1352 PolyText(ClientPtr client, DrawablePtr pDraw, GC * pGC, unsigned char *pElt, in PolyText() argument
1357 local_closure.pElt = pElt; in PolyText()