Searched refs:codeAndIndex (Results 1 – 1 of 1) sorted by relevance
2869 int codeAndIndex = (cur.eventCode&0xffff) | (index<<16); in writeHistoryDelta() local2870 dest.writeInt(codeAndIndex); in writeHistoryDelta()3128 final int codeAndIndex = src.readInt(); in readHistoryDelta() local3129 cur.eventCode = (codeAndIndex&0xffff); in readHistoryDelta()3130 final int index = ((codeAndIndex>>16)&0xffff); in readHistoryDelta()