Lines Matching refs:c

253 _inline sal_uInt32 mkTag(sal_uInt8 a, sal_uInt8 b, sal_uInt8 c, sal_uInt8 d) {  in mkTag()  argument
254 return (a << 24) | (b << 16) | (c << 8) | d; in mkTag()
399 _inline F16Dot16 fixedMulDiv(F16Dot16 a, F16Dot16 b, F16Dot16 c) in fixedMulDiv() argument
404 return fixedDiv(res, c); in fixedMulDiv()
628 F16Dot16 a = 0x10000, b = 0, c = 0, d = 0x10000, m, n, abs1, abs2, abs3; in GetCompoundTTOutline() local
725 b = c = 0; in GetCompoundTTOutline()
747 c = GetInt16(ptr, 4, 1) << 2; in GetCompoundTTOutline()
759 abs1 = (c < 0) ? -c : c; in GetCompoundTTOutline()
774 ((double) c) / 65536, in GetCompoundTTOutline()
786 …t = fixedMulDiv(a, nextComponent[i].x << 16, m) + fixedMulDiv(c, nextComponent[i].y << 16, m) + (e… in GetCompoundTTOutline()
1226 static sal_uInt32 getGlyph0(const sal_uInt8* cmap, sal_uInt32 c) { in getGlyph0() argument
1227 if (c <= 255) { in getGlyph0()
1228 return *(cmap + 6 + c); in getGlyph0()
1241 static sal_uInt32 getGlyph2(const sal_uInt8 *cmap, sal_uInt32 c) { in getGlyph2() argument
1252 theHighByte = (sal_uInt8)((c >> 8) & 0x00ff); in getGlyph2()
1253 theLowByte = (sal_uInt8)(c & 0x00ff); in getGlyph2()
1289 static sal_uInt32 getGlyph6(const sal_uInt8 *cmap, sal_uInt32 c) { in getGlyph6() argument
1296 if (c < firstCode || c > lastCode) { in getGlyph6()
1299 return *((CMAP6 + 5)/*glyphIdArray*/ + (c - firstCode)); in getGlyph6()
1325 static sal_uInt32 getGlyph4(const sal_uInt8 *cmap, sal_uInt32 c) { in getGlyph4() argument
1340 i = GEbinsearch(endCode, segCount, (sal_uInt16)c); in getGlyph4()
1347 if(Int16FromMOTA(startCode[i]) > c) { in getGlyph4()
1355c = Int16FromMOTA(*(&(idRangeOffset[i]) + (Int16FromMOTA(idRangeOffset[i])/2 + (c - Int16FromMOTA(… in getGlyph4()
1358 ToReturn = (Int16FromMOTA(idDelta[i]) + c) & 0xFFFF; in getGlyph4()