Lines Matching refs:pElt
1199 while (c->endReq - c->pElt > TextEltHeader)
1201 if (*c->pElt == FontChange)
1204 if (c->endReq - c->pElt < FontShiftSize)
1212 fid = ((Font)*(c->pElt+4)) /* big-endian */
1213 | ((Font)*(c->pElt+3)) << 8
1214 | ((Font)*(c->pElt+2)) << 16
1215 | ((Font)*(c->pElt+1)) << 24;
1229 c->endReq = c->pElt;
1251 c->pElt += FontShiftSize;
1256 pNextElt = c->pElt + TextEltHeader + (*c->pElt) * itemSize;
1264 c->pElt = pNextElt;
1269 lgerr = LoadGlyphs(client, c->pGC->font, *c->pElt, itemSize,
1270 c->pElt + TextEltHeader);
1306 len = new_closure->endReq - new_closure->pElt;
1314 memmove(new_closure->data, new_closure->pElt, len);
1315 new_closure->pElt = new_closure->data;
1316 new_closure->endReq = new_closure->pElt + len;
1366 c->xorg += *((INT8 *)(c->pElt + 1)); /* must be signed */
1369 *c->pElt, (char *) (c->pElt + TextEltHeader));
1372 *c->pElt, (unsigned short *) (c->pElt + TextEltHeader));
1374 c->pElt = pNextElt;
1391 /* restore pElt pointer for execution of remainder of the request */
1392 c->pElt = c->data;
1421 PolyText(ClientPtr client, DrawablePtr pDraw, GC *pGC, unsigned char *pElt,
1426 local_closure.pElt = pElt;