Searched refs:binary_value (Results 1 – 5 of 5) sorted by relevance
24 uint32_t binary_value = 0; in ConvertByteArrayToFloat() local26 binary_value <<= 8; in ConvertByteArrayToFloat()27 binary_value += bytes[i]; in ConvertByteArrayToFloat()30 *out = bit_cast<float>(binary_value); in ConvertByteArrayToFloat()40 uint64_t binary_value = 0; in ConvertByteArrayToDouble() local42 binary_value <<= 8; in ConvertByteArrayToDouble()43 binary_value += bytes[i]; in ConvertByteArrayToDouble()46 *out = bit_cast<double>(binary_value); in ConvertByteArrayToDouble()56 uint32_t binary_value = bit_cast<uint32_t>(value); in ConvertFloatToByteArray() local58 out_bytes[i] = binary_value; in ConvertFloatToByteArray()[all …]
329 uint8_t binary_value[BUFFER_SIZE] = {0}; in test_mdelem_sizes_in_hpack() local331 binary_value[i] = i; in test_mdelem_sizes_in_hpack()340 verify_binary_header_size("hello-bin", binary_value, i, intern_key, in test_mdelem_sizes_in_hpack()
21 array<uint8> binary_value;
108 static base::span<const uint8_t> binary_value(const base::Value& value) {
1633 Value binary_value(Value::Type::BINARY); in TEST() local1641 main_dict.SetKey("binary", binary_value.Clone()); in TEST()1649 main_list.Append(std::make_unique<Value>(binary_value.Clone())); in TEST()