Home
last modified time | relevance | path

Searched refs:recordBits (Results 1 – 1 of 1) sorted by relevance

/packages/modules/CellBroadcastService/tests/src/com/android/cellbroadcastservice/tests/
DCdmaSmsMessageTest.java307 int recordBits = (charCount * 7) + 5; // add 5 bits for char set field in encodeBody() local
308 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()
309 int padBits = (recordOctets * 8) - recordBits; in encodeBody()
333 int recordBits = (charCount * 7) + 5; // add 5 bits for char set field in encodeBody() local
334 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()
335 int padBits = (recordOctets * 8) - recordBits; in encodeBody()
360 int recordBits = (charCount * 6) + 21; // add 21 bits for header fields in encodeBody() local
361 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()
362 int padBits = (recordOctets * 8) - recordBits; in encodeBody()