Searched refs:recordBits (Results 1 – 1 of 1) sorted by relevance
409 int recordBits = (charCount * 7) + 5; // add 5 bits for char set field in encodeBody() local410 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()411 int padBits = (recordOctets * 8) - recordBits; in encodeBody()435 int recordBits = (charCount * 7) + 5; // add 5 bits for char set field in encodeBody() local436 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()437 int padBits = (recordOctets * 8) - recordBits; in encodeBody()462 int recordBits = (charCount * 6) + 21; // add 21 bits for header fields in encodeBody() local463 int recordOctets = (recordBits + 7) / 8; // round up to octet boundary in encodeBody()464 int padBits = (recordOctets * 8) - recordBits; in encodeBody()