Searched refs:binary_value (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/transient/ |
D | file_utils.cc | 24 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/ |
D | metadata_test.cc | 329 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/ |
D | values.mojom | 21 array<uint8> binary_value;
|
/external/libchrome/mojo/public/cpp/base/ |
D | values_mojom_traits.h | 108 static base::span<const uint8_t> binary_value(const base::Value& value) {
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_queue.c | 1508 uint64_t binary_value = 0; in anv_GetFenceStatus() local 1510 &binary_value, 1, 0, in anv_GetFenceStatus() 1944 uint64_t binary_value = 0; in wait_syncobj_materialize() local 1948 if (anv_gem_syncobj_timeline_wait(device, &syncobj, &binary_value, 1, in wait_syncobj_materialize()
|
/external/libchrome/base/ |
D | values_unittest.cc | 1633 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()
|