Lines Matching defs:out
229 ** there are a few uuencodes out there that use
492 newline. Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */
1181 Py_ssize_t in, out;
1197 * The previous implementation used calloc() so we'll zero out the
1208 in = out = 0;
1222 odata[out++] = '=';
1237 odata[out++] = ch;
1240 odata[out++] = '=';
1244 odata[out++] = ' ';
1248 odata[out] = data[in];
1250 out++;
1253 if ((rv = PyString_FromStringAndSize((char *)odata, out)) == NULL) {
1288 Py_ssize_t in, out;
1388 * The previous implementation used calloc() so we'll zero out the
1399 in = out = linelen = 0;
1414 odata[out++] = '=';
1415 if (crlf) odata[out++] = '\r';
1416 odata[out++] = '\n';
1419 odata[out++] = '=';
1420 to_hex(data[in], &odata[out]);
1421 out += 2;
1433 if (out && ((odata[out-1] == ' ') || (odata[out-1] == '\t'))) {
1434 ch = odata[out-1];
1435 odata[out-1] = '=';
1436 to_hex(ch, &odata[out]);
1437 out += 2;
1440 if (crlf) odata[out++] = '\r';
1441 odata[out++] = '\n';
1451 odata[out++] = '=';
1452 if (crlf) odata[out++] = '\r';
1453 odata[out++] = '\n';
1458 odata[out++] = '_';
1462 odata[out++] = data[in++];
1467 if ((rv = PyString_FromStringAndSize((char *)odata, out)) == NULL) {