Searched refs:bitOffset (Results 1 – 2 of 2) sorted by relevance
355 int bitOffset = 0; in decodeSingle() local366 int byteOffset = bitOffset / 8; in decodeSingle()367 int shift = bitOffset % 8; in decodeSingle()375 bitOffset += 7; in decodeSingle()427 int bitOffset = 0; in testDecodeExtended() local431 int byteOffset = bitOffset / 8; in testDecodeExtended()432 int shift = bitOffset % 8; in testDecodeExtended()440 bitOffset += 7; in testDecodeExtended()443 byteOffset = bitOffset / 8; in testDecodeExtended()444 shift = bitOffset % 8; in testDecodeExtended()[all …]
397 for (int i = 0, septets = startingSeptetOffset, bitOffset = startingSeptetOffset * 7; in stringToGsm7BitPacked()399 i++, bitOffset += 7) { in stringToGsm7BitPacked()411 packSmsChar(ret, bitOffset, GSM_EXTENDED_ESCAPE); in stringToGsm7BitPacked()412 bitOffset += 7; in stringToGsm7BitPacked()416 packSmsChar(ret, bitOffset, v); in stringToGsm7BitPacked()432 packSmsChar(byte[] packedChars, int bitOffset, int value) { in packSmsChar() argument433 int byteOffset = bitOffset / 8; in packSmsChar()434 int shift = bitOffset % 8; in packSmsChar()503 int bitOffset = (7 * i) + numPaddingBits; in gsm7BitPackedToString() local505 int byteOffset = bitOffset / 8; in gsm7BitPackedToString()[all …]