HomeSort by relevance Sort by last modified time
    Searched defs:to_process (Results 1 - 3 of 3) sorted by null

  /system/keymaster/
aes_operation.cpp 591 const size_t to_process = data_available - tag_length_; local
592 const size_t to_process_from_tag_buf = min(to_process, tag_buf_length_);
593 const size_t to_process_from_input = to_process - to_process_from_tag_buf;
595 if (!output->reserve(to_process + AES_BLOCK_SIZE))
612 bool AesEvpDecryptOperation::ProcessTagBufContentsAsData(size_t to_process, Buffer* output,
614 assert(to_process <= tag_buf_length_);
615 if (!InternalUpdate(tag_buf_.get(), to_process, output, error))
617 if (to_process < tag_buf_length_)
618 memmove(tag_buf_.get(), tag_buf_.get() + to_process, tag_buf_length_ - to_process);
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test.cc 50 Packets to_process; local
51 FindPacketsToProcess(processor_->flow_ids(), in_out, &to_process);
52 processor_->RunFor(time_ms, &to_process);
53 QueuePackets(&to_process, time_now_ms * 1000);
54 if (!to_process.empty()) {
55 processor_->Plot(to_process.back()->send_time_ms());
57 in_out->merge(to_process, DereferencingComparator<Packet>);
    [all...]
  /external/flatbuffers/src/
idl_parser.cpp 2011 std::list<std::string> to_process; local
    [all...]

Completed in 955 milliseconds