Lines Matching refs:le_int32
15 le_int32 fBaseIndex;
16 le_int32 fMPreIndex;
19 MPreFixups::MPreFixups(le_int32 charCount) in MPreFixups()
31 void MPreFixups::add(le_int32 baseIndex, le_int32 mpreIndex) in add()
45 for (le_int32 fixup = 0; fixup < fFixupCount; fixup += 1) { in apply()
46 le_int32 baseIndex = fFixupData[fixup].fBaseIndex; in apply()
47 le_int32 mpreIndex = fFixupData[fixup].fMPreIndex; in apply()
48 le_int32 mpreLimit = mpreIndex + 1; in apply()
63 le_int32 mpreCount = mpreLimit - mpreIndex; in apply()
64 le_int32 moveCount = baseIndex - mpreLimit; in apply()
65 le_int32 mpreDest = baseIndex - mpreCount; in apply()
67 le_int32 *indexSave = LE_NEW_ARRAY(le_int32, mpreCount); in apply()
68 le_int32 i; in apply()
77 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); in apply()