Lines Matching refs:gd

1279     GlyphData *gd;  in glyfAdd()  local
1319 gd = GetTTRawGlyphData(fnt, currentID); in glyfAdd()
1320 gd->newID = n++; in glyfAdd()
1321 listAppend(l, gd); in glyfAdd()
1407 GlyphData *gd = (GlyphData *) listCurrent(glyphlist); in ProcessTables() local
1409 glyfLen += gd->nbytes; in ProcessTables()
1413 assert(gd->newID == i); in ProcessTables()
1414 gid[i++] = gd->glyphID; in ProcessTables()
1419 if (gd->nbytes != 0) { in ProcessTables()
1420 z = GetInt16(gd->ptr, 2, 1); in ProcessTables()
1423 z = GetInt16(gd->ptr, 4, 1); in ProcessTables()
1426 z = GetInt16(gd->ptr, 6, 1); in ProcessTables()
1429 z = GetInt16(gd->ptr, 8, 1); in ProcessTables()
1433 if (gd->compflag == 0) { /* non-composite glyph */ in ProcessTables()
1434 if (gd->npoints > maxPoints) maxPoints = gd->npoints; in ProcessTables()
1435 if (gd->ncontours > maxContours) maxContours = gd->ncontours; in ProcessTables()
1437 if (gd->npoints > maxCompositePoints) maxCompositePoints = gd->npoints; in ProcessTables()
1438 if (gd->ncontours > maxCompositeContours) maxCompositeContours = gd->ncontours; in ProcessTables()
1455 GlyphData *gd = (GlyphData *) listCurrent(glyphlist); in ProcessTables() local
1457 if (gd->compflag) { /* re-number all components */ in ProcessTables()
1459 sal_uInt8 *ptr = gd->ptr + 10; in ProcessTables()
1492 if (gd->nbytes != 0) { in ProcessTables()
1493 memcpy(p1, gd->ptr, gd->nbytes); in ProcessTables()
1502 p1 += gd->nbytes; in ProcessTables()
1505 met[i].adv = gd->aw; in ProcessTables()
1506 met[i].sb = gd->lsb; in ProcessTables()