Searched refs:codeAndIndex (Results 1 – 1 of 1) sorted by relevance
3315 int codeAndIndex = (cur.eventCode&0xffff) | (index<<16); in writeHistoryDelta() local3316 dest.writeInt(codeAndIndex); in writeHistoryDelta()3582 final int codeAndIndex = src.readInt(); in readHistoryDelta() local3583 cur.eventCode = (codeAndIndex&0xffff); in readHistoryDelta()3584 final int index = ((codeAndIndex>>16)&0xffff); in readHistoryDelta()