Searched refs:codeAndIndex (Results 1 – 1 of 1) sorted by relevance
2037 int codeAndIndex = (cur.eventCode&0xffff) | (index<<16); in writeHistoryDelta() local2038 dest.writeInt(codeAndIndex); in writeHistoryDelta()2172 final int codeAndIndex = src.readInt(); in readHistoryDelta() local2173 cur.eventCode = (codeAndIndex&0xffff); in readHistoryDelta()2174 final int index = ((codeAndIndex>>16)&0xffff); in readHistoryDelta()