Lines Matching refs:septets

62      * requires a user data header of 3 octets, or 4 septets, plus UDH length.
68 * requires a user data header of 6 octets, or 7 septets, plus UDH length.
73 * Multi-part messages require a user data header of 5 octets, or 6 septets,
92 * septets for the standard ASCII and GSM encodings, and 16
282 * Byte 0 in the returned byte array is the count of septets used,
284 * the minimum size required to store the packed septets. The returned
285 * array cannot contain more than 255 septets.
321 * Byte 0 in the returned byte array is the count of septets used
323 * the packed septets. The returned array cannot contain more than 255
324 * septets.
341 * Byte 0 in the returned byte array is the count of septets used
343 * the packed septets. The returned array cannot contain more than 255
344 * septets.
363 * Byte 0 in the returned byte array is the count of septets used
365 * the packed septets. The returned array cannot contain more than 255
366 * septets.
368 * @param data the text to convert to septets
369 * @param startingSeptetOffset the number of padding septets to put before
391 throw new EncodeException("Payload cannot exceed 255 septets");
397 for (int i = 0, septets = startingSeptetOffset, bitOffset = startingSeptetOffset * 7;
398 i < dataLen && septets < septetCount;
413 septets++;
417 septets++;
451 * @param lengthSeptets string length in septets, not bytes
467 * @param lengthSeptets string length in septets, not bytes
647 int septets = countGsmSeptetsUsingTables(s, true, 0, 0);
649 // Enough for all the septets and the length byte prefix
650 ret = new byte[septets];
709 * @return the number of septets for this character
727 * @return the number of septets for this character
809 int septets = GsmAlphabet.countGsmSeptetsUsingTables(s, use7bitOnly, 0, 0);
810 if (septets == -1) {
814 ted.codeUnitCount = septets;
815 if (septets > SmsConstants.MAX_USER_DATA_SEPTETS) {
816 ted.msgCount = (septets + (SmsConstants.MAX_USER_DATA_SEPTETS_WITH_HEADER - 1)) /
819 SmsConstants.MAX_USER_DATA_SEPTETS_WITH_HEADER) - septets;
822 ted.codeUnitsRemaining = SmsConstants.MAX_USER_DATA_SEPTETS - septets;
890 int septets = lpc.septetCounts[shiftTable];
891 if (septets == -1) {
904 if (septets + udhLength > SmsConstants.MAX_USER_DATA_SEPTETS) {
910 msgCount = (septets + septetsPerMessage - 1) / septetsPerMessage;
911 septetsRemaining = (msgCount * septetsPerMessage) - septets;
914 septetsRemaining = SmsConstants.MAX_USER_DATA_SEPTETS - udhLength - septets;
926 ted.codeUnitCount = septets;
943 * after <code>limit</code> septets have been reached, starting at
948 * @param start index of where to start counting septets
949 * @param limit maximum septets to include,