Home
last modified time | relevance | path

Searched refs:byte_value (Results 1 – 9 of 9) sorted by relevance

/external/libxaac/decoder/
Dixheaacd_sbr_crc.c53 WORD32 byte_value; in ixheaacd_sbr_crc() local
60 byte_value = ixheaacd_read_bits_buf(it_bit_buff, 8); in ixheaacd_sbr_crc()
61 ixheaacd_calc_chk_sum(&crc_state, byte_value, 8); in ixheaacd_sbr_crc()
64 byte_value = ixheaacd_read_bits_buf(it_bit_buff, rem_bits); in ixheaacd_sbr_crc()
65 ixheaacd_calc_chk_sum(&crc_state, byte_value, rem_bits); in ixheaacd_sbr_crc()
/external/libbrillo/brillo/dbus/
Ddata_serialization_unittest.cc163 uint8_t byte_value = 0; in TEST() local
164 EXPECT_TRUE(PopValueFromReader(&reader, &byte_value)); in TEST()
165 EXPECT_EQ(123, byte_value); // Should match with the input. in TEST()
169 EXPECT_FALSE(PopValueFromReader(&reader, &byte_value)); in TEST()
192 uint8_t byte_value = 0; in TEST() local
206 EXPECT_TRUE(PopValueFromReader(&reader, &byte_value)); in TEST()
220 EXPECT_EQ(0, byte_value); in TEST()
281 uint8_t byte_value = 0; in TEST() local
297 EXPECT_TRUE(PopVariantValueFromReader(&reader, &byte_value)); in TEST()
313 EXPECT_EQ(10, byte_value); in TEST()
[all …]
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_gpu_executor.cc475 uint8 byte_value = static_cast<uint8>(value); in SynchronousMemSet() local
476 uint32 pattern = (byte_value << 24) | (byte_value << 16) | in SynchronousMemSet()
477 (byte_value << 8) | byte_value; in SynchronousMemSet()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_gpu_executor.cc594 uint8 byte_value = static_cast<uint8>(value); in SynchronousMemSet() local
595 uint32 pattern = (byte_value << 24) | (byte_value << 16) | in SynchronousMemSet()
596 (byte_value << 8) | byte_value; in SynchronousMemSet()
/external/wpa_supplicant_8/wpa_supplicant/dbus/
Ddbus_dict_helpers.h124 char byte_value; member
Ddbus_dict_helpers.c882 dbus_message_iter_get_basic(iter, &entry->byte_value); in _wpa_dbus_dict_fill_value_from_variant()
884 __func__, entry->byte_value); in _wpa_dbus_dict_fill_value_from_variant()
Ddbus_new_handlers.c2403 oper_class = entry.byte_value; in wpas_dbus_handler_tdls_channel_switch()
/external/protobuf/java/core/src/test/proto/com/google/protobuf/
Dtest_extra_interfaces.proto52 optional bytes byte_value = 3; field
/external/libchrome/base/numerics/
DREADME.md66 // Throw a compiler error if byte_value is changed to an out-of-range-type.
67 int int_value = strict_cast<int>(byte_value);