Lines Matching refs:pfi

751     FontInfoPtr pfi,
791 pfi = &pf->info;
792 *pfi = *opfi;
797 pfi->allExist = 0;
847 pfi->firstRow = firstRow;
848 pfi->lastRow = lastRow;
849 pfi->firstCol = firstCol;
850 pfi->lastCol = lastCol;
879 pfi->anamorphic = FALSE;
881 pfi->anamorphic = TRUE;
882 pfi->cachable = TRUE;
888 pfi->fontAscent = opfi->fontAscent * ymult;
889 pfi->fontDescent = opfi->fontDescent * ymult;
891 pfi->minbounds.leftSideBearing = MAXSHORT;
892 pfi->minbounds.rightSideBearing = MAXSHORT;
893 pfi->minbounds.ascent = MAXSHORT;
894 pfi->minbounds.descent = MAXSHORT;
895 pfi->minbounds.characterWidth = MAXSHORT;
896 pfi->minbounds.attributes = MAXSHORT;
898 pfi->maxbounds.leftSideBearing = MINSHORT;
899 pfi->maxbounds.rightSideBearing = MINSHORT;
900 pfi->maxbounds.ascent = MINSHORT;
901 pfi->maxbounds.descent = MINSHORT;
902 pfi->maxbounds.characterWidth = MINSHORT;
903 pfi->maxbounds.attributes = MINSHORT;
1019 if (pfi->minbounds.field > pci->metrics.field) \
1020 pfi->minbounds.field = pci->metrics.field; \
1021 if (pfi->maxbounds.field < pci->metrics.field) \
1022 pfi->maxbounds.field = pci->metrics.field
1032 if ((INT16)pfi->minbounds.attributes >
1034 pfi->minbounds.attributes = pci->metrics.attributes;
1035 if ((INT16)pfi->maxbounds.attributes <
1037 pfi->maxbounds.attributes = pci->metrics.attributes;
1041 pfi->ink_minbounds = pfi->minbounds;
1042 pfi->ink_maxbounds = pfi->maxbounds;
1052 if (pfi->minbounds.characterWidth == pfi->maxbounds.characterWidth)
1053 vals->width = pfi->minbounds.characterWidth * 10;
1063 FontComputeInfoAccelerators (pfi);
1065 if (pfi->defaultCh != (unsigned short) NO_SUCH_CHAR) {
1070 r = pfi->defaultCh >> 8;
1071 c = pfi->defaultCh & 0xFF;
1072 if (pfi->firstRow <= r && r <= pfi->lastRow &&
1073 pfi->firstCol <= c && c <= pfi->lastCol) {
1074 cols = pfi->lastCol - pfi->firstCol + 1;
1075 r = r - pfi->firstRow;
1076 c = c - pfi->firstCol;
1457 FontInfoPtr pfi;
1472 pfi = &pf->info;
1473 firstCol = pfi->firstCol;
1474 lastCol = pfi->lastCol;
1475 firstRow = pfi->firstRow;
1476 lastRow = pfi->lastRow;
1654 FontInfoPtr pfi;
1658 pfi = &pFont->info;
1659 free (pfi->props);
1660 free (pfi->isStringProp);