Home | History | Annotate | Download | only in telephony

Lines Matching defs:byteOffset

433         int byteOffset = bitOffset / 8;
436 byteOffset] |= value << shift;
439 packedChars[++byteOffset] = (byte)(value >> (8 - shift));
505 int byteOffset = bitOffset / 8;
509 gsmVal = (0x7f & (pdu[offset + byteOffset] >> shift));
516 gsmVal |= 0x7f & (pdu[offset + byteOffset + 1] << (8 - shift));