HomeSort by relevance Sort by last modified time
    Searched refs:tag_buf_length_ (Results 1 - 2 of 2) sorted by null

  /system/keymaster/
aes_operation.cpp 551 tag_buf_length_ = 0;
589 const size_t data_available = tag_buf_length_ + input.available_read();
592 const size_t to_process_from_tag_buf = min(to_process, tag_buf_length_);
614 assert(to_process <= tag_buf_length_);
617 if (to_process < tag_buf_length_)
618 memmove(tag_buf_.get(), tag_buf_.get() + to_process, tag_buf_length_ - to_process);
619 tag_buf_length_ -= to_process;
624 assert(data_length <= tag_length_ - tag_buf_length_);
625 memcpy(tag_buf_.get() + tag_buf_length_, data, data_length);
626 tag_buf_length_ += data_length
    [all...]
aes_operation.h 146 size_t tag_buf_unused() { return tag_length_ - tag_buf_length_; }
153 size_t tag_buf_length_; member in class:keymaster::AesEvpDecryptOperation

Completed in 86 milliseconds