Lines Matching refs:index
63 int index = dd.charAt(0) - 'a';
64 if (index < 0 || index >= totalSegmentsCount) {
76 pts.setSegment(index, data);
118 public void setSegment(int index, byte[] segment) {
119 mSegments[index] = segment;
134 int index = 0;
136 System.arraycopy(mSegments[0], 0, res, index, mOrigPreambeLen - 2);
137 index += mOrigPreambeLen - 2;
138 res[index++] = ' ';
143 System.arraycopy(segment, payloadStart, res, index, payloadLen);
144 index += payloadLen;