Home | History | Annotate | Download | only in compat

Lines Matching refs:input

71    The encoding process represents 24-bit groups of input bits as output
73 24-bit input group is formed by concatenating 3 8-bit input groups.
104 always completed at the end of a quantity. When fewer than 24 input
105 bits are available in an input group, zero bits are added (on the
109 Since all base64 input is an integral number of octets, only the
113 (1) the final quantum of encoding input is an integral
117 (2) the final quantum of encoding input is exactly 8 bits;
120 (3) the final quantum of encoding input is exactly 16 bits;
128 uint8_t input[3];
133 input[0] = *src++;
134 input[1] = *src++;
135 input[2] = *src++;
138 output[0] = input[0] >> 2;
139 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
140 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
141 output[3] = input[2] & 0x3f;
158 input[0] = input[1] = input[2] = '\0';
160 input[i] = *src++;
162 output[0] = input[0] >> 2;
163 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
164 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);