Lines Matching refs:U8

37 typedef unsigned char U8;  typedef
387 explicit CffSubsetterContext( const U8* pBasePtr, int nBaseLen);
393 const sal_GlyphId* pGlyphIds, const U8* pEncoding,
400 int convert2Type1Ops( CffLocal*, const U8* pType2Ops, int nType2Len, U8* pType1Ops);
408 const U8* mpBasePtr;
410 const U8* mpBaseEnd;
413 const U8* mpReadPtr;
414 const U8* mpReadEnd;
416 U8* mpWritePtr;
516 CffSubsetterContext::CffSubsetterContext( const U8* pBasePtr, int nBaseLen) in CffSubsetterContext()
651 const U8 c = *mpReadPtr; in readDictOp()
658 const U8 nExtId = *(mpReadPtr++); in readDictOp()
785 const U8*& p = mpReadPtr; in read2push()
786 const U8 c = *p; in read2push()
817 U8* pOut = mpWritePtr; in writeType1Val()
824 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
825 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
827 *(pOut++) = static_cast<U8>(nInt >> 8); in writeType1Val()
828 *(pOut++) = static_cast<U8>(nInt); in writeType1Val()
830 *(pOut++) = static_cast<U8>(nInt + 139); // -107..+107 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()
862 *(mpWritePtr++) = static_cast<U8>(nTypeOp); in writeTypeOp()
870 *(mpWritePtr++) = static_cast<U8>(nTypeEsc); in writeTypeEsc()
962 U8 nMaskBit = 0; in convertOneTypeOp()
963 U8 nMaskByte = 0; in convertOneTypeOp()
988 U8 nMaskBit = 0; in convertOneTypeOp()
989 U8 nMaskByte = 0; in convertOneTypeOp()
1350 const U8* const pOldReadPtr = mpReadPtr; in callType2Subr()
1351 const U8* const pOldReadEnd = mpReadEnd; in callType2Subr()
1372 …setterContext::convert2Type1Ops( CffLocal* pCffLocal, const U8* const pT2Ops, int nT2Len, U8* cons… in convert2Type1Ops()
1379 U8 aType1Ops[ MAX_T1OPS_SIZE]; in convert2Type1Ops()
1382 *const_cast<U8**>(&pT1Ops) = mpWritePtr; in convert2Type1Ops()
1443 for( U8* p = pT1Ops; p < mpWritePtr; ++p) { in convert2Type1Ops()
1445 nRDCryptR = (*(U8*)p + nRDCryptR) * 52845 + 22719; in convert2Type1Ops()
1462 const U8 c = *(mpReadPtr++); // read nibbles in readRealVal()
1464 const U8 nH = c >> 4U; in readRealVal()
1486 const U8 nL = c & 0x0F; in readRealVal()
1649 const U8 nVerMajor = *(mpReadPtr++); in initialCffRead()
1650 const U8 nVerMinor = *(mpReadPtr++); in initialCffRead()
1651 const U8 nHeaderSize = *(mpReadPtr++); in initialCffRead()
1652 const U8 nOffsetSize = *(mpReadPtr++); in initialCffRead()
1758 const U8* pReadPtr = mpReadPtr; in getString()
1759 const U8* pReadEnd = mpReadEnd; in getString()
1791 const U8* pReadPtr = mpBasePtr + mnFDSelectBase; in getFDSelect()
1792 const U8 nFDSelFormat = *(pReadPtr++); in getFDSelect()
1796 const U8 nFDIdx = *(pReadPtr++); in getFDSelect()
1808 const U8 nFDIdx = pReadPtr[0]; in getFDSelect()
1838 const U8* pReadPtr = mpBasePtr + mnCharsetBase; in getGlyphSID()
1839 const U8 nCSetFormat = *(pReadPtr++); in getGlyphSID()
2004 U8 cData[4]; in updateLen()
2005 cData[0] = static_cast<U8>(nLength >> 0); in updateLen()
2006 cData[1] = static_cast<U8>(nLength >> 8); in updateLen()
2007 cData[2] = static_cast<U8>(nLength >> 16); in updateLen()
2008 cData[3] = static_cast<U8>(nLength >> 24); in updateLen()
2069 mnEECryptR = (*(U8*)p + mnEECryptR) * 52845 + 22719; in emitAllCrypted()
2119 const sal_GlyphId* pReqGlyphIds, const U8* pReqEncoding, in emitAsType1()
2362 U8 aType1Ops[ MAX_T1OPS_SIZE]; // TODO: dynamic allocation in emitAsType1()