Home
last modified time | relevance | path

Searched refs:binary_value (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/transient/
Dfile_utils.cc24 uint32_t binary_value = 0; in ConvertByteArrayToFloat() local
26 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() local
42 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() local
58 out_bytes[i] = binary_value; in ConvertFloatToByteArray()
[all …]
/external/grpc-grpc/test/core/transport/
Dmetadata_test.cc329 uint8_t binary_value[BUFFER_SIZE] = {0}; in test_mdelem_sizes_in_hpack() local
331 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()
/external/libchrome/mojo/public/mojom/base/
Dvalues.mojom21 array<uint8> binary_value;
/external/libchrome/mojo/public/cpp/base/
Dvalues_mojom_traits.h108 static base::span<const uint8_t> binary_value(const base::Value& value) {
/external/libchrome/base/
Dvalues_unittest.cc1633 Value binary_value(Value::Type::BINARY); in TEST() local
1641 main_dict.SetKey("binary", binary_value.Clone()); in TEST()
1649 main_list.Append(std::make_unique<Value>(binary_value.Clone())); in TEST()