Home
last modified time | relevance | path

Searched refs:bytes_length (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/parse_example/
Dexample_proto_fast_parsing.h154 uint32 bytes_length = 0; in GetNumElementsInBytesList() local
155 if (!stream.ReadVarint32(&bytes_length)) return false; in GetNumElementsInBytesList()
156 if (!stream.Skip(bytes_length)) return false; in GetNumElementsInBytesList()
190 uint32 bytes_length; in ParseBytesList() local
191 if (!stream.ReadVarint32(&bytes_length)) return false; in ParseBytesList()
194 bytes->resize_uninitialized(bytes_length); in ParseBytesList()
195 if (!stream.ReadRaw(bytes->data(), bytes_length)) return false; in ParseBytesList()
466 uint32 bytes_length; in ParseBytesFeature() local
468 !stream->ReadVarint32(&bytes_length)) { in ParseBytesFeature()
472 stream->Skip(bytes_length); in ParseBytesFeature()
[all …]
/external/grpc-grpc/src/core/tsi/alts/handshaker/
Dtransport_security_common_api.cc76 size_t bytes_length) { in grpc_gcp_rpc_protocol_versions_encode_to_raw_bytes() argument
77 if (versions == nullptr || bytes == nullptr || bytes_length == 0) { in grpc_gcp_rpc_protocol_versions_encode_to_raw_bytes()
83 pb_ostream_t output_stream = pb_ostream_from_buffer(bytes, bytes_length); in grpc_gcp_rpc_protocol_versions_encode_to_raw_bytes()
Dtransport_security_common_api.h90 size_t bytes_length);
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing.cc160 uint32 bytes_length = 0; in GetNumElementsInBytesList() local
161 if (!stream.ReadVarint32(&bytes_length)) return false; in GetNumElementsInBytesList()
162 if (!stream.Skip(bytes_length)) return false; in GetNumElementsInBytesList()
196 uint32 bytes_length; in ParseBytesList() local
197 if (!stream.ReadVarint32(&bytes_length)) return false; in ParseBytesList()
200 bytes->resize_uninitialized(bytes_length); in ParseBytesList()
201 if (!stream.ReadRaw(bytes->data(), bytes_length)) return false; in ParseBytesList()
1856 uint32 bytes_length; in ParseBytesFeature() local
1858 !stream->ReadVarint32(&bytes_length)) { in ParseBytesFeature()
1862 stream->Skip(bytes_length); in ParseBytesFeature()
[all …]
/external/python/cpython2/Objects/
Dbytesobject.c1426 bytes_length(PyBytesObject *a) in bytes_length() function
1739 (lenfunc)bytes_length, /*sq_length*/
1750 (lenfunc)bytes_length,
/external/python/cpython3/Objects/
Dbytesobject.c1354 bytes_length(PyBytesObject *a) in bytes_length() function
1653 (lenfunc)bytes_length, /*sq_length*/
1664 (lenfunc)bytes_length,
/external/flatbuffers/tests/
Dgo_test.go1879 bytes_length := int64(len(buf[offset:]))
1886 b.SetBytes(bytes_length)