Searched refs:bitOffset (Results 1 – 2 of 2) sorted by relevance
372 int bitOffset = 0; in decodeSingle() local383 int byteOffset = bitOffset / 8; in decodeSingle()384 int shift = bitOffset % 8; in decodeSingle()392 bitOffset += 7; in decodeSingle()444 int bitOffset = 0; in testDecodeExtended() local448 int byteOffset = bitOffset / 8; in testDecodeExtended()449 int shift = bitOffset % 8; in testDecodeExtended()457 bitOffset += 7; in testDecodeExtended()460 byteOffset = bitOffset / 8; in testDecodeExtended()461 shift = bitOffset % 8; in testDecodeExtended()[all …]
415 for (int i = 0, septets = startingSeptetOffset, bitOffset = startingSeptetOffset * 7; in stringToGsm7BitPacked()417 i++, bitOffset += 7) { in stringToGsm7BitPacked()429 packSmsChar(ret, bitOffset, GSM_EXTENDED_ESCAPE); in stringToGsm7BitPacked()430 bitOffset += 7; in stringToGsm7BitPacked()434 packSmsChar(ret, bitOffset, v); in stringToGsm7BitPacked()451 packSmsChar(byte[] packedChars, int bitOffset, int value) { in packSmsChar() argument452 int byteOffset = bitOffset / 8; in packSmsChar()453 int shift = bitOffset % 8; in packSmsChar()524 int bitOffset = (7 * i) + numPaddingBits; in gsm7BitPackedToString() local526 int byteOffset = bitOffset / 8; in gsm7BitPackedToString()[all …]