Home | History | Annotate | Download | only in io

Lines Matching refs:value_length

60 // "*value_length", respectively.  Will not dereference past "limit".
66 uint32* value_length) {
70 *value_length = reinterpret_cast<const unsigned char*>(p)[2];
71 if ((*shared | *non_shared | *value_length) < 128) {
78 if ((p = core::GetVarint32Ptr(p, limit, value_length)) == nullptr)
82 if (static_cast<uint32>(limit - p) < (*non_shared + *value_length)) {
159 uint32 shared, non_shared, value_length;
162 &non_shared, &value_length);
217 uint32 shared, non_shared, value_length;
218 p = DecodeEntry(p, limit, &shared, &non_shared, &value_length);
225 value_ = StringPiece(p + non_shared, value_length);