Lines Matching refs:input
88 The encoding process represents 24-bit groups of input bits as output
90 24-bit input group is formed by concatenating 3 8-bit input groups.
121 always completed at the end of a quantity. When fewer than 24 input
122 bits are available in an input group, zero bits are added (on the
126 Since all base64 input is an integral number of octets, only the
130 (1) the final quantum of encoding input is an integral
134 (2) the final quantum of encoding input is exactly 8 bits;
137 (3) the final quantum of encoding input is exactly 16 bits;
145 u_char input[3];
153 input[0] = *src++;
154 input[1] = *src++;
155 input[2] = *src++;
158 output[0] = (uint32_t)input[0] >> 2;
159 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
160 ((uint32_t)input[1] >> 4);
161 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
162 ((uint32_t)input[2] >> 6);
163 output[3] = input[2] & 0x3f;
180 input[0] = input[1] = input[2] = '\0';
182 input[i] = *src++;
184 output[0] = (uint32_t)input[0] >> 2;
185 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
186 ((uint32_t)input[1] >> 4);
187 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
188 ((uint32_t)input[2] >> 6);