Lines Matching refs:nInt

540 	const int nInt = static_cast<int>(aVal);  in popInt()  local
541 assert( nInt == aVal); in popInt()
542 return nInt; in popInt()
550 const int nInt = static_cast<int>(aVal); in peekInt() local
551 assert( nInt == aVal); in peekInt()
552 return nInt; in peekInt()
560 const int nInt = static_cast<int>(aVal); in getInt() local
561 assert( nInt == aVal); in getInt()
562 return nInt; in getInt()
650 int nInt = 0; in readDictOp() local
668 nInt = popInt(); in readDictOp()
670 case 915: mpCffLocal->mbForceBold = nInt; break; // "ForceBold" in readDictOp()
676 nInt = static_cast<int>(nVal); in readDictOp()
680 case 15: mnCharsetBase = nInt; break; // "charset" in readDictOp()
681 case 16: mnEncodingBase = nInt; break; // "nEncoding" in readDictOp()
682 case 17: mnCharStrBase = nInt; break; // "nCharStrings" in readDictOp()
683 case 19: mpCffLocal->mnLocalSubrOffs = nInt; break;// "nSubrs" in readDictOp()
690 case 917: mpCffLocal->mnLangGroup = nInt; break; // "LanguageGroup" in readDictOp()
691 case 936: mnFontDictBase = nInt; break; // "nFDArray" in readDictOp()
692 case 937: mnFDSelectBase = nInt; break; // "nFDSelect" in readDictOp()
729 nInt = popInt(); in readDictOp()
731 case 2: mnFullNameSID = nInt; break; // "FullName" in readDictOp()
732 case 3: mnFamilyNameSID = nInt; break; // "FamilyName" in readDictOp()
733 case 938: mnFontNameSID = nInt; break; // "FontName" in readDictOp()
750 nInt = popInt(); in readDictOp()
751 setCharStringType( nInt ); in readDictOp()
819 int nInt = static_cast<int>(aVal); in writeType1Val() local
821 if( (nInt != aVal) && (nOutCharstrType == 2)) { in writeType1Val()
824 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
825 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
826 nInt = static_cast<int>(aVal * 0x10000) & 0xFFFF; in writeType1Val()
827 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
828 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
829 } else if( (nInt >= -107) && (nInt <= +107)) { in writeType1Val()
830 *(pOut++) = static_cast<U8>(nInt + 139); // -107..+107 in writeType1Val()
831 } else if( (nInt >= -1131) && (nInt <= +1131)) { in writeType1Val()
832 if( nInt >= 0) in writeType1Val()
833 nInt += 63124; // +108..+1131 in writeType1Val()
835 nInt = 64148 - nInt; // -108..-1131 in writeType1Val()
836 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
837 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
841 *(pOut++) = static_cast<U8>(nInt >> 24); in writeType1Val()
842 *(pOut++) = static_cast<U8>(nInt >> 16); in writeType1Val()
843 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
844 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
933 int i, nInt; // prevent WAE for declarations inside switch cases in convertOneTypeOp() local
1027 nInt = popInt(); in convertOneTypeOp()
1029 callType2Subr( bGlobal, nInt); in convertOneTypeOp()
1095 nInt = 0; in convertOneTypeOp()
1097 nInt = static_cast<int>(mnValStack[ --mnStackIdx ]); in convertOneTypeOp()
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()