Home
last modified time | relevance | path

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

/frameworks/av/media/mtp/
DMtpFfsHandle.cpp138 size_t this_len = std::min(len - total, static_cast<size_t>(AIO_BUF_LEN * AIO_BUFS_MAX)); in doAsync() local
139 int num_bufs = this_len / AIO_BUF_LEN + (this_len % AIO_BUF_LEN == 0 ? 0 : 1); in doAsync()
143 int ret = iobufSubmit(&mIobuf[0], read ? mBulkOut : mBulkIn, this_len, read); in doAsync()
148 if (static_cast<size_t>(ret) < this_len) break; in doAsync()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/third_party/jsoncpp/
Djsoncpp.cpp2678 unsigned this_len = this->storage_.length_; in operator <() local
2680 unsigned min_len = std::min(this_len, other_len); in operator <()
2684 return (this_len < other_len); in operator <()
2691 unsigned this_len = this->storage_.length_; in operator ==() local
2693 if (this_len != other_len) return false; in operator ==()
2694 int comp = memcmp(this->cstr_, other.cstr_, this_len); in operator ==()
2932 unsigned this_len; in operator <() local
2936 decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str); in operator <()
2938 unsigned min_len = std::min(this_len, other_len); in operator <()
2942 return (this_len < other_len); in operator <()
[all …]