OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:to_process
(Results
1 - 5
of
5
) 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
...]
aes_operation.h
149
bool ProcessTagBufContentsAsData(size_t
to_process
, Buffer* output, keymaster_error_t* error);
/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
...]
/system/connectivity/shill/
device_unittest.cc
594
string
to_process
("/device/stuff/0");
595
ControlInterface::RpcIdToStorageId(&
to_process
);
596
EXPECT_TRUE(isalpha(
to_process
[0]));
597
EXPECT_EQ(string::npos,
to_process
.find('/'));
[
all
...]
/art/runtime/
class_linker.cc
[
all
...]
Completed in 391 milliseconds