Home | History | Annotate | Download | only in pm

Lines Matching defs:group

108          * group.
117 * GROUP_SIZE) to make the odd-size group appear at the end instead
127 final int group = (int) (input & 0x1F);
130 encoded[--index] = alphabet[group];
143 final int group = input[i];
150 if ('A' <= group && group <= 'Z') {
151 value = group - 'A';
152 } else if ('2' <= group && group <= '7') {
153 value = group - ('2' - 26);
154 } else if (group == SEPARATOR) {
156 } else if ('a' <= group && group <= 'z') {
158 value = group - 'a';
159 } else if (group == '0') {
162 } else if (group == '1') {
166 throw new IllegalArgumentException("base base-32 character: " + group);