Home
last modified time | relevance | path

Searched refs:cursor_read_value_ (Results 1 – 2 of 2) sorted by relevance

/external/federated-compute/fcp/secagg/shared/
Dsecagg_vector.cc231 cursor_read_value_(0), in Decoder()
241 static constexpr ssize_t kBlockSizeBytes = sizeof(cursor_read_value_); in ReadData()
247 memcpy(&cursor_read_value_, read_cursor_, kBlockSizeBytes); in ReadData()
249 memcpy(&cursor_read_value_, read_cursor_, in ReadData()
252 scratch_ |= cursor_read_value_ << static_cast<unsigned>(read_cursor_bit_); in ReadData()
256 static constexpr int kBlockSizeBits = sizeof(cursor_read_value_) * 8; in ReadValue()
270 cursor_read_value_ >>= right_shift_value; in ReadValue()
271 cursor_read_value_ <<= left_shift_value; in ReadValue()
272 scratch_ |= cursor_read_value_; in ReadValue()
Dsecagg_vector.h149 uint64_t cursor_read_value_; variable