Lines Matching defs:result
106 // result only through rounding. Rounding works as follows:
127 // * Shift the result back to the original magnitude.
143 float result = static_cast<float>(extracted_bits);
144 // We have to shift the result back. The shift amount is
156 result *= bit_cast<float>(multiplier_bits);
157 WriteUnalignedValue<float>(data, result);
171 double result = static_cast<double>(input);
183 result = static_cast<double>(high_word);
184 result *= shift;
185 result += static_cast<double>(low_word);
188 WriteUnalignedValue<double>(data, result);
365 uint64_t result = (input << shift) | (input >> ((64 - shift) & 63));
366 WriteUnalignedValue<uint64_t>(data, result);
372 uint64_t result = (input >> shift) | (input << ((64 - shift) & 63));
373 WriteUnalignedValue<uint64_t>(data, result);
469 V result = ReadUnalignedValue<V>(data + *offset);
471 return result;