Searched refs:codeAndIndex (Results 1 – 1 of 1) sorted by relevance
3312 int codeAndIndex = (cur.eventCode&0xffff) | (index<<16); in writeHistoryDelta() local3313 dest.writeInt(codeAndIndex); in writeHistoryDelta()3579 final int codeAndIndex = src.readInt(); in readHistoryDelta() local3580 cur.eventCode = (codeAndIndex&0xffff); in readHistoryDelta()3581 final int index = ((codeAndIndex>>16)&0xffff); in readHistoryDelta()