Lines Matching refs:input
113 The encoding process represents 24-bit groups of input bits as output
115 24-bit input group is formed by concatenating 3 8-bit input groups.
146 always completed at the end of a quantity. When fewer than 24 input
147 bits are available in an input group, zero bits are added (on the
151 Since all base64 input is an integral number of octets, only the
155 (1) the final quantum of encoding input is an integral
159 (2) the final quantum of encoding input is exactly 8 bits;
162 (3) the final quantum of encoding input is exactly 16 bits;
170 u_char input[3];
175 input[0] = *src++;
176 input[1] = *src++;
177 input[2] = *src++;
180 output[0] = input[0] >> 2;
181 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
182 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
183 output[3] = input[2] & 0x3f;
200 input[0] = input[1] = input[2] = '\0';
202 input[i] = *src++;
204 output[0] = input[0] >> 2;
205 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
206 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);