Lines Matching refs:sam
7121 static Bits SignAndMagnitudeToBiased(const Bits &sam) {7122 if (kSignBitMask & sam) {7123 // sam represents a negative number.7124 return ~sam + 1;7126 // sam represents a positive number.7127 return kSignBitMask | sam;