Lines Matching refs:value_length
40 uint32_t* value_length) { in operator ()()
47 *value_length = reinterpret_cast<const unsigned char*>(p)[2]; in operator ()()
48 if ((*shared | *non_shared | *value_length) < 128) { in operator ()()
54 if ((p = GetVarint32Ptr(p, limit, value_length)) == nullptr) { in operator ()()
61 assert(!(static_cast<uint32_t>(limit - p) < (*non_shared + *value_length))); in operator ()()
71 uint32_t* value_length) { in operator ()()
80 *value_length = reinterpret_cast<const unsigned char*>(p)[2]; in operator ()()
81 if ((*shared | *non_shared | *value_length) < 128) { in operator ()()
87 if ((p = GetVarint32Ptr(p, limit, value_length)) == nullptr) { in operator ()()
92 if (static_cast<uint32_t>(limit - p) < (*non_shared + *value_length)) { in operator ()()
102 uint32_t value_length; in operator ()() local
103 return DecodeEntry()(p, limit, shared, non_shared, &value_length); in operator ()()
516 uint32_t shared, non_shared, value_length; in ParseNextDataKey() local
517 p = DecodeEntryFunc()(p, limit, &shared, &non_shared, &value_length); in ParseNextDataKey()
558 value_ = Slice(p + non_shared, value_length); in ParseNextDataKey()
583 uint32_t shared, non_shared, value_length; in ParseNextIndexKey() local
586 value_length = 0; in ParseNextIndexKey()
588 p = DecodeEntry()(p, limit, &shared, &non_shared, &value_length); in ParseNextIndexKey()
604 value_ = Slice(p + non_shared, value_length); in ParseNextIndexKey()