Home
last modified time | relevance | path

Searched refs:PushLimit (Results 1 – 14 of 14) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dcoded_stream_unittest.cc719 coded_input.PushLimit(sizeof(buffer_)); in TEST_1D()
764 coded_input.PushLimit(sizeof(buffer_)); in TEST_F()
784 coded_input.PushLimit(sizeof(buffer_)); in TEST_F()
801 coded_input.PushLimit(16); in TEST_F()
842 coded_input.PushLimit(sizeof(buffer_)); in TEST_F()
864 coded_input.PushLimit(16); in TEST_F()
1009 CodedInputStream::Limit limit = coded_input.PushLimit(8); in TEST_1D()
1039 CodedInputStream::Limit limit1 = coded_input.PushLimit(8); in TEST_1D()
1041 CodedInputStream::Limit limit2 = coded_input.PushLimit(4); in TEST_1D()
1081 CodedInputStream::Limit limit1 = coded_input.PushLimit(4); in TEST_1D()
[all …]
Dcoded_stream.cc119 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) { in PushLimit() function in google::protobuf::io::CodedInputStream
157 return std::make_pair(PushLimit(byte_limit), --recursion_budget_); in IncrementRecursionDepthAndPushLimit()
162 return PushLimit(ReadVarint32(&length) ? length : 0); in ReadLengthAndPushLimit()
Dcoded_stream.h327 Limit PushLimit(int byte_limit);
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing.cc105 auto limit = stream.PushLimit(length); in GetNumElementsInBytesList()
129 auto limit = stream.PushLimit(length); in ParseBytesList()
152 auto limit = stream.PushLimit(length); in ParseFloatList()
164 auto packed_limit = stream.PushLimit(packed_length); in ParseFloatList()
215 auto limit = stream.PushLimit(length); in ParseInt64List()
226 auto packed_limit = stream.PushLimit(packed_length); in ParseInt64List()
311 auto limit = stream->PushLimit(length); in ParseFeatureMapEntry()
329 auto limit = stream->PushLimit(length); in ParseFeatures()
1585 auto limit = stream->PushLimit(length); in ParseBytesFeature()
1625 auto limit = stream->PushLimit(length); in ParseFloatFeature()
[all …]
/external/protobuf/src/google/protobuf/
Dmessage_lite.cc190 decoder.PushLimit(size); in ParseFromBoundedZeroCopyStream()
199 decoder.PushLimit(size); in ParsePartialFromBoundedZeroCopyStream()
Dwire_format_lite.cc297 io::CodedInputStream::Limit limit = input->PushLimit(length); in ReadPackedEnumNoInline()
320 io::CodedInputStream::Limit limit = input->PushLimit(length); in ReadPackedEnumPreserveUnknowns()
Dwire_format.cc161 io::CodedInputStream::Limit limit = input->PushLimit(length); in ReadPackedEnumPreserveUnknowns()
498 io::CodedInputStream::Limit limit = input->PushLimit(length); in ParseAndMergeField()
Dwire_format_lite_inl.h334 io::CodedInputStream::Limit limit = input->PushLimit(length); in ReadPackedPrimitive()
Dextension_set.cc1169 io::CodedInputStream::Limit limit = input->PushLimit(size); in ParseFieldWithExtensionInfo()
/external/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs572 int oldLimit = PushLimit(length); in ReadMessage()
930 internal int PushLimit(int byteLimit) in PushLimit() method in Google.Protobuf.CodedInputStream
DFieldCodec.cs296 int oldLimit = input.PushLimit(length); in Read()
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource.cc262 int old_limit = stream_->PushLimit(buffer32); in RenderMap()
302 int old_limit = stream_->PushLimit(length); in RenderPacked()
733 int old_limit = stream_->PushLimit(buffer32); in RenderField()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs105 int oldLimit = input.PushLimit(length); in AddEntriesFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs352 int oldlimit = cin.PushLimit((int)childlen); in TestCodedInputOutputPosition()