Lines Matching defs:output
70 * output shall not be considered valid unless CURLE_OK is returned.
149 /* this means either 8 or 16 bits output */
192 char *output;
208 base64data = output = malloc((insize + 2) / 3 * 4 + 1);
209 if(!output)
213 *output++ = table64[ in[0] >> 2 ];
214 *output++ = table64[ ((in[0] & 0x03) << 4) | (in[1] >> 4) ];
215 *output++ = table64[ ((in[1] & 0x0F) << 2) | ((in[2] & 0xC0) >> 6) ];
216 *output++ = table64[ in[2] & 0x3F ];
222 *output++ = table64[ in[0] >> 2 ];
224 *output++ = table64[ ((in[0] & 0x03) << 4) ];
226 *output++ = *padstr;
227 *output++ = *padstr;
232 *output++ = table64[ ((in[0] & 0x03) << 4) | ((in[1] & 0xF0) >> 4) ];
233 *output++ = table64[ ((in[1] & 0x0F) << 2) ];
235 *output++ = *padstr;
240 *output = '\0';
246 *outlen = output - base64data;
262 * output shall not be considered valid unless CURLE_OK is returned.
283 * output shall not be considered valid unless CURLE_OK is returned.