Searched refs:decodedBits (Results 1 – 1 of 1) sorted by relevance
816 deUint8 decodedBits = 0; in handleData() local819 decodedBits = (deUint8)(byte - 'A'); in handleData()821 decodedBits = (deUint8)(('Z'-'A'+1) + (byte-'a')); in handleData()823 decodedBits = (deUint8)(('Z'-'A'+1) + ('z'-'a'+1) + (byte-'0')); in handleData()825 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+1); in handleData()827 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+2); in handleData()850 case 0: outPtr[0] |= (deUint8)(decodedBits<<2); break; in handleData()851 …case 1: outPtr[0] |= (deUint8)(decodedBits>>4); outPtr[1] |= (deUint8)((decodedBits&0xF)<<4); brea… in handleData()852 …case 2: outPtr[1] |= (deUint8)(decodedBits>>2); outPtr[2] |= (deUint8)((decodedBits&0x3)<<6); brea… in handleData()853 case 3: outPtr[2] |= decodedBits; break; in handleData()