Lines Matching full:glyphstorage
43 void MPreFixups::apply(LEGlyphStorage &glyphStorage, LEErrorCode& success)
54 while (glyphStorage[baseIndex] == 0xFFFF || glyphStorage[baseIndex] == 0xFFFE) {
58 while (glyphStorage[mpreLimit] == 0xFFFF || glyphStorage[mpreLimit] == 0xFFFE) {
83 mpreSave[i] = glyphStorage[mpreIndex + i];
84 indexSave[i] = glyphStorage.getCharIndex(mpreIndex + i, success); //charIndices[mpreIndex + i];
88 LEGlyphID glyph = glyphStorage[mpreLimit + i];
89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success);
91 glyphStorage[mpreIndex + i] = glyph;
92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
96 glyphStorage[mpreDest + i] = mpreSave[i];
97 glyphStorage.setCharIndex(mpreDest, indexSave[i], success);