Lines Matching defs:input
91 The encoding process represents 24-bit groups of input bits as output
93 24-bit input group is formed by concatenating 3 8-bit input groups.
124 always completed at the end of a quantity. When fewer than 24 input
125 bits are available in an input group, zero bits are added (on the
129 Since all base64 input is an integral number of octets, only the
133 (1) the final quantum of encoding input is an integral
137 (2) the final quantum of encoding input is exactly 8 bits;
140 (3) the final quantum of encoding input is exactly 16 bits;
148 u_char input[3];
153 input[0] = *src++;
154 input[1] = *src++;
155 input[2] = *src++;
158 output[0] = input[0] >> 2;
159 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
160 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
161 output[3] = input[2] & 0x3f;
178 input[0] = input[1] = input[2] = '\0';
180 input[i] = *src++;
182 output[0] = input[0] >> 2;
183 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
184 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);