Home
last modified time | relevance | path

Searched refs:new_value (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/packet/
Dbit_inserter.cc33 …uint16_t new_value = static_cast<uint8_t>(saved_bits_) | (static_cast<uint16_t>(byte) << num_saved… in insert_bits() local
35 ByteInserter::insert_byte(static_cast<uint8_t>(new_value)); in insert_bits()
37 new_value = new_value >> 8; in insert_bits()
41 saved_bits_ = static_cast<uint8_t>(new_value) & mask; in insert_bits()
Dfragmenting_inserter.cc33 …uint16_t new_value = static_cast<uint8_t>(saved_bits_) | (static_cast<uint16_t>(byte) << num_saved… in insert_bits() local
35 uint8_t new_byte = static_cast<uint8_t>(new_value); in insert_bits()
43 new_value = new_value >> 8; in insert_bits()
47 saved_bits_ = static_cast<uint8_t>(new_value) & mask; in insert_bits()
/packages/modules/Bluetooth/system/gd/os/fake_timer/
Dfake_timerfd.cc59 const struct itimerspec* new_value, in fake_timerfd_settime() argument
67 uint64_t trigger_delta_ms = timespec_to_ms(&new_value->it_value); in fake_timerfd_settime()
73 uint64_t period_ms = timespec_to_ms(&new_value->it_interval); in fake_timerfd_settime()
Dfake_timerfd.h29 int fake_timerfd_settime(int fd, int flags, const struct itimerspec* new_value, struct itimerspec* …
/packages/modules/Bluetooth/system/gd/storage/
Ddevice.h74 …auto new_value = [this](const RETURN_TYPE& value) -> RETURN_TYPE FUNC(value); …
75 …nEntry::Set<RETURN_TYPE>(MutationEntry::PropertyType::NORMAL, section_, PROPERTY_KEY, new_value); \
/packages/modules/Bluetooth/system/device/test/
Ddevice_iot_config_test.cc1129 int int_value = 0, new_value = 0xff; in TEST_F_WITH_FLAGS() local
1141 const std::string& key, int def_value) { return new_value; }; in TEST_F_WITH_FLAGS()
1166 EXPECT_EQ(int_value, new_value); in TEST_F_WITH_FLAGS()
1183 int int_value = 0, new_value = 0xff; in TEST_F_WITH_FLAGS() local
1195 const std::string& key, int def_value) { return new_value; }; in TEST_F_WITH_FLAGS()
1220 EXPECT_EQ(int_value, new_value); in TEST_F_WITH_FLAGS()