Lines Matching refs:inBytes
132 int inBytes[4];
141 inBytes[inCount++] = 0;
153 inBytes[inCount++] = 0;
164 inBytes[inCount++] = byteVal;
168 outBytes[0] = ((inBytes[0]<<2) & 0xfc) | ((inBytes[1]>>4) & 0x03);
169 outBytes[1] = ((inBytes[1]<<4) & 0xf0) | ((inBytes[2]>>2) & 0x0f);
170 outBytes[2] = ((inBytes[2]<<6) & 0xc0) | ((inBytes[3] ) & 0x3f);