Searched refs:outByteIndex (Results 1 – 1 of 1) sorted by relevance
243 int outByteIndex = offset; in stringToGsm8BitUnpackedField() local248 for (int i = 0, sz = s.length(); i < sz && (outByteIndex - offset) < length; i++) { in stringToGsm8BitUnpackedField()257 if (!(outByteIndex + 1 - offset < length)) { in stringToGsm8BitUnpackedField()261 dest[outByteIndex++] = GSM_EXTENDED_ESCAPE; in stringToGsm8BitUnpackedField()265 dest[outByteIndex++] = (byte) v; in stringToGsm8BitUnpackedField()269 while ((outByteIndex - offset) < length) { in stringToGsm8BitUnpackedField()270 dest[outByteIndex++] = (byte) 0xff; in stringToGsm8BitUnpackedField()