Lines Matching defs:in
7 ** This program is distributed in the hope that it will be useful,
87 /* just in case */
111 /* only keep a small buffer in the heap */
480 unsigned char in[4];
485 in[0] = src[0];
486 in[1] = src+1 < srcend ? src[1] : 0;
487 in[2] = src+2 < srcend ? src[2] : 0;
489 dst[result+0] = cb64[ in[0] >> 2 ];
490 dst[result+1] = cb64[ ((in[0] & 3) << 4) | ((in[1] & 0xf0) >> 4) ];
491 dst[result+2] = (unsigned char) (src+1 < srcend ? cb64[ ((in[1] & 0xf) << 2) | ((in[2] & 0xc0) >> 6) ] : '=');
492 dst[result+3] = (unsigned char) (src+2 < srcend ? cb64[ in[2] & 0x3f ] : '=');
557 /* An immediate connection is very unlikely, but deal with it, just in case */