Home | History | Annotate | Download | only in net

Lines Matching defs: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;
133 u_char input[3];
138 input[0] = *src++;
139 input[1] = *src++;
140 input[2] = *src++;
143 output[0] = input[0] >> 2;
144 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
145 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
146 output[3] = input[2] & 0x3f;
159 input[0] = input[1] = input[2] = '\0';
161 input[i] = *src++;
163 output[0] = input[0] >> 2;
164 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
165 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);