Home | History | Annotate | Download | only in net

Lines Matching defs:output

88    The encoding process represents 24-bit groups of input bits as output
96 output string.
132 output will be an integral multiple of 4 characters
135 here, the final unit of encoded output will be two
138 here, the final unit of encoded output will be three
146 u_char output[4];
158 output[0] = (uint32_t)input[0] >> 2;
159 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
161 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
163 output[3] = input[2] & 0x3f;
164 Assert(output[0] < 64);
165 Assert(output[1] < 64);
166 Assert(output[2] < 64);
167 Assert(output[3] < 64);
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]];
173 target[datalength++] = Base64[output[2]];
174 target[datalength++] = Base64[output[3]];
184 output[0] = (uint32_t)input[0] >> 2;
185 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
187 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
189 Assert(output[0] < 64);
190 Assert(output[1] < 64);
191 Assert(output[2] < 64);
195 target[datalength++] = Base64[output[0]];
196 target[datalength++] = Base64[output[1]];
200 target[datalength++] = Base64[output[2]];