Lines Matching refs:ValType

44 typedef RealType ValType;  typedef
46 typedef std::vector<ValType> ValVector;
356 ValType maNominalWidth;
357 ValType maDefaultWidth;
360 ValType maStemStdHW;
361 ValType maStemStdVW;
463 void writeType1Val( ValType);
473 void push( ValType nVal) { mnValStack[ mnStackIdx++] = nVal;} in push()
474 ValType popVal( void) { return ((mnStackIdx>0) ? mnValStack[ --mnStackIdx] : 0);} in popVal()
475 ValType peekVal( void) const { return ((mnStackIdx>0) ? mnValStack[ mnStackIdx-1] : 0);} in peekVal()
476 ValType getVal( int nIndex) const { return mnValStack[ nIndex];} in getVal()
488 void getHintPair( int nIndex, ValType* nMin, ValType* nEnd) const;
492 ValType getCharWidth( void) const { return maCharWidth;} in getCharWidth()
493 void setNominalWidth( ValType aWidth) { mpCffLocal->maNominalWidth = aWidth;} in setNominalWidth()
494 void setDefaultWidth( ValType aWidth) { mpCffLocal->maDefaultWidth = aWidth;} in setDefaultWidth()
503 ValType mnValStack[ NMAXSTACK+4];
505 ValType mnTransVals[ NMAXTRANS];
509 ValType mnHintStack[ NMAXHINTS];
511 ValType maCharWidth;
539 const ValType aVal = popVal(); in popInt()
549 const ValType aVal = peekVal(); in peekInt()
559 const ValType aVal = getVal( nIndex); in getInt()
605 ValType nHintOfs = 0; in addHints()
620 void CffSubsetterContext::getHintPair( int nIndex, ValType* pMin, ValType* pEnd) const in getHintPair()
625 const ValType* pHint = &mnHintStack[ nIndex ]; in getHintPair()
649 ValType nVal = 0; in readDictOp()
768 nVal = static_cast<ValType>(nS32); in readDictOp()
783 ValType aVal = 0; in read2push()
794 aVal = static_cast<ValType>(p[0] - 139); in read2push()
797 aVal = static_cast<ValType>(((p[0] << 8) + p[1]) - 63124); in read2push()
800 aVal = static_cast<ValType>(64148 - ((p[0] << 8) + p[1])); in read2push()
806 aVal = static_cast<ValType>(nS32 * (1.0 / 0x10000)); in read2push()
815 void CffSubsetterContext::writeType1Val( ValType aVal) in writeType1Val()
854 const ValType aVal = popVal(); in pop2write()
879 const ValType aVal = mnValStack[i+j]; in pop2MultiWrite()
895 const ValType aVal = mnValStack[i]; in popAll2Write()
908 const ValType nDX1 = nIX1 ? mnValStack[ nStackPos+nIX1 ] : 0; in writeCurveTo()
909 const ValType nDY1 = nIY1 ? mnValStack[ nStackPos+nIY1 ] : 0; in writeCurveTo()
910 const ValType nDX2 = nIX2 ? mnValStack[ nStackPos+nIX2 ] : 0; in writeCurveTo()
911 const ValType nDY2 = nIY2 ? mnValStack[ nStackPos+nIY2 ] : 0; in writeCurveTo()
912 const ValType nDX3 = nIX3 ? mnValStack[ nStackPos+nIX3 ] : 0; in writeCurveTo()
913 const ValType nDY3 = nIY3 ? mnValStack[ nStackPos+nIY3 ] : 0; in writeCurveTo()
1105 if( !bVert ) writeType1Val( static_cast<ValType>((i==mnStackIdx) ? nInt : 0) ); in convertOneTypeOp()
1107 if( bVert ) writeType1Val( static_cast<ValType>((i==mnStackIdx) ? nInt : 0) ); in convertOneTypeOp()
1159 ValType* pTop = &mnValStack[ mnStackIdx-1]; in convertOneTypeEsc()
1164 pTop[0] = static_cast<ValType>(static_cast<int>(pTop[0]) & static_cast<int>(pTop[-1])); in convertOneTypeEsc()
1169 pTop[0] = static_cast<ValType>(static_cast<int>(pTop[0]) | static_cast<int>(pTop[-1])); in convertOneTypeEsc()
1254 const ValType nVal = pTop[0]; in convertOneTypeEsc()
1281 const ValType* pX = &mnValStack[ mnStackIdx]; in convertOneTypeEsc()
1282 const ValType fDX = pX[-9] + pX[-7] + pX[-5] + pX[-4] + pX[-3] + pX[-1]; in convertOneTypeEsc()
1295 ValType* pX = &mnValStack[ mnStackIdx]; in convertOneTypeEsc()
1297 const ValType fDX = pX[-7] + pX[-6] + pX[-4] + pX[-3] + pX[-2] + pX[-1]; in convertOneTypeEsc()
1313 const ValType nFlexDepth = mnValStack[ mnStackIdx-1 ]; in convertOneTypeEsc()
1325ValType nDeltaX = mnValStack[i-11] + mnValStack[i-9] + mnValStack[i-7] + mnValStack[i-5] + mnValSt… in convertOneTypeEsc()
1327ValType nDeltaY = mnValStack[i-10] + mnValStack[i-8] + mnValStack[i-6] + mnValStack[i-4] + mnValSt… in convertOneTypeEsc()
2374 ValType aCharWidth = getCharWidth(); in emitAsType1()
2411 ValType fXFactor = 1.0; in emitAsType1()
2412 ValType fYFactor = 1.0; in emitAsType1()