Lines Matching refs:pfi
754 FontInfoPtr pfi,
794 pfi = &pf->info;
795 *pfi = *opfi;
800 pfi->allExist = 0;
850 pfi->firstRow = firstRow;
851 pfi->lastRow = lastRow;
852 pfi->firstCol = firstCol;
853 pfi->lastCol = lastCol;
882 pfi->anamorphic = FALSE;
884 pfi->anamorphic = TRUE;
885 pfi->cachable = TRUE;
891 pfi->fontAscent = opfi->fontAscent * ymult;
892 pfi->fontDescent = opfi->fontDescent * ymult;
894 pfi->minbounds.leftSideBearing = MAXSHORT;
895 pfi->minbounds.rightSideBearing = MAXSHORT;
896 pfi->minbounds.ascent = MAXSHORT;
897 pfi->minbounds.descent = MAXSHORT;
898 pfi->minbounds.characterWidth = MAXSHORT;
899 pfi->minbounds.attributes = MAXSHORT;
901 pfi->maxbounds.leftSideBearing = MINSHORT;
902 pfi->maxbounds.rightSideBearing = MINSHORT;
903 pfi->maxbounds.ascent = MINSHORT;
904 pfi->maxbounds.descent = MINSHORT;
905 pfi->maxbounds.characterWidth = MINSHORT;
906 pfi->maxbounds.attributes = MINSHORT;
1022 if (pfi->minbounds.field > pci->metrics.field) \
1023 pfi->minbounds.field = pci->metrics.field; \
1024 if (pfi->maxbounds.field < pci->metrics.field) \
1025 pfi->maxbounds.field = pci->metrics.field
1035 if ((INT16)pfi->minbounds.attributes >
1037 pfi->minbounds.attributes = pci->metrics.attributes;
1038 if ((INT16)pfi->maxbounds.attributes <
1040 pfi->maxbounds.attributes = pci->metrics.attributes;
1044 pfi->ink_minbounds = pfi->minbounds;
1045 pfi->ink_maxbounds = pfi->maxbounds;
1055 if (pfi->minbounds.characterWidth == pfi->maxbounds.characterWidth)
1056 vals->width = pfi->minbounds.characterWidth * 10;
1066 FontComputeInfoAccelerators (pfi);
1068 if (pfi->defaultCh != (unsigned short) NO_SUCH_CHAR) {
1073 r = pfi->defaultCh >> 8;
1074 c = pfi->defaultCh & 0xFF;
1075 if (pfi->firstRow <= r && r <= pfi->lastRow &&
1076 pfi->firstCol <= c && c <= pfi->lastCol) {
1077 cols = pfi->lastCol - pfi->firstCol + 1;
1078 r = r - pfi->firstRow;
1079 c = c - pfi->firstCol;
1460 FontInfoPtr pfi;
1475 pfi = &pf->info;
1476 firstCol = pfi->firstCol;
1477 lastCol = pfi->lastCol;
1478 firstRow = pfi->firstRow;
1479 lastRow = pfi->lastRow;
1657 FontInfoPtr pfi;
1661 pfi = &pFont->info;
1662 free (pfi->props);
1663 free (pfi->isStringProp);