Home
last modified time | relevance | path

Searched refs:max_bytes_to_read (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/executorch/backends/apple/coreml/runtime/util/
H A Djson_util.cpp70 std::optional<std::string> read_object_from_stream(std::istream& stream, size_t max_bytes_to_read) { in read_object_from_stream() argument
86 … while (stream.good() && state.n_open_braces > 0 && state.json_object.size() < max_bytes_to_read) { in read_object_from_stream()
H A Djson_util.hpp27 size_t max_bytes_to_read = 10 * 1024 * 1024);
/aosp_15_r20/external/pigweed/pw_bytes/public/pw_bytes/
H A Dendian.h164 T ReadInOrder(endian order, const void* buffer, size_t max_bytes_to_read) { in ReadInOrder() argument
166 std::memcpy(&value, buffer, std::min(sizeof(value), max_bytes_to_read)); in ReadInOrder()