Searched refs:decodedBits (Results 1 – 1 of 1) sorted by relevance
831 deUint8 decodedBits = 0; in handleData() local834 decodedBits = (deUint8)(byte - 'A'); in handleData()836 decodedBits = (deUint8)(('Z'-'A'+1) + (byte-'a')); in handleData()838 decodedBits = (deUint8)(('Z'-'A'+1) + ('z'-'a'+1) + (byte-'0')); in handleData()840 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+1); in handleData()842 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+2); in handleData()865 case 0: outPtr[0] |= (deUint8)(decodedBits<<2); break; in handleData()866 …r[0] = (deUint8)(outPtr[0] | (deUint8)(decodedBits>>4)); outPtr[1] = (deUint8)(outPtr[1] | (deUint… in handleData()867 …r[1] = (deUint8)(outPtr[1] | (deUint8)(decodedBits>>2)); outPtr[2] = (deUint8)(outPtr[2] | (deUint… in handleData()868 case 3: outPtr[2] |= decodedBits; break; in handleData()