Searched refs:decodedBits (Results 1 – 2 of 2) sorted by relevance
828 deUint8 decodedBits = 0; in handleData() local831 decodedBits = (deUint8)(byte - 'A'); in handleData()833 decodedBits = (deUint8)(('Z'-'A'+1) + (byte-'a')); in handleData()835 decodedBits = (deUint8)(('Z'-'A'+1) + ('z'-'a'+1) + (byte-'0')); in handleData()837 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+1); in handleData()839 decodedBits = ('Z'-'A'+1) + ('z'-'a'+1) + ('9'-'0'+2); in handleData()862 case 0: outPtr[0] |= (deUint8)(decodedBits<<2); break; in handleData()863 …r[0] = (deUint8)(outPtr[0] | (deUint8)(decodedBits>>4)); outPtr[1] = (deUint8)(outPtr[1] | (deUint… in handleData()864 …r[1] = (deUint8)(outPtr[1] | (deUint8)(decodedBits>>2)); outPtr[2] = (deUint8)(outPtr[2] | (deUint… in handleData()865 case 3: outPtr[2] |= decodedBits; break; in handleData()
791 DoubleBits decodedBits; in decodeTaggedTimeInterval() local792 decodedBits.sign = encodedBits.sign; in decodeTaggedTimeInterval()793 decodedBits.fraction = encodedBits.fraction; in decodeTaggedTimeInterval()794 decodedBits.exponent = decodeExponent(encodedBits.exponent); in decodeTaggedTimeInterval()796 return llvm::bit_cast<double>(decodedBits); in decodeTaggedTimeInterval()