Home
last modified time | relevance | path

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

/aosp_15_r20/external/webrtc/modules/audio_processing/transient/
H A 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 …]
/aosp_15_r20/external/grpc-grpc/test/core/transport/chttp2/
H A Dhpack_utils_test.cc74 uint8_t binary_value[BUFFER_SIZE] = {0}; in TEST_P() local
76 binary_value[i] = i; in TEST_P()
85 verify_binary_header_size("hello-bin", binary_value, i, intern_key, in TEST_P()
/aosp_15_r20/external/libchrome/mojo/public/mojom/base/
H A Dvalues.mojom21 array<uint8> binary_value;
/aosp_15_r20/frameworks/base/cmds/idmap2/libidmap2/
H A DFabricatedOverlay.cpp113 const std::string& resource_name, std::optional<android::base::borrowed_fd>&& binary_value, in SetResourceValue() argument
116 entries_.emplace_back(Entry{resource_name, 0, 0, "", binary_value, in SetResourceValue()
/aosp_15_r20/frameworks/base/cmds/idmap2/include/idmap2/
H A DFabricatedOverlay.h53 std::optional<android::base::borrowed_fd>&& binary_value,
/aosp_15_r20/external/libchrome/mojo/public/cpp/base/
H A Dvalues_mojom_traits.h108 static base::span<const uint8_t> binary_value(const base::Value& value) {
/aosp_15_r20/external/pigweed/pw_protobuf/pw_protobuf_test_protos/
H A Dfull_test.proto71 Binary binary_value = 1; field
/aosp_15_r20/external/libchrome/base/
H A 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()