Home
last modified time | relevance | path

Searched refs:read_fixed64 (Results 1 – 6 of 6) sorted by relevance

/external/nanopb-c/tests/alltypes_callback/
Ddecode_alltypes_callback.c48 static bool read_fixed64(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed64() function
266 alltypes.req_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
269 alltypes.req_sfixed64.funcs.decode = &read_fixed64; in check_alltypes()
272 alltypes.req_double.funcs.decode = &read_fixed64; in check_alltypes()
381 alltypes.opt_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
384 alltypes.opt_sfixed64.funcs.decode = &read_fixed64; in check_alltypes()
387 alltypes.opt_double.funcs.decode = &read_fixed64; in check_alltypes()
/external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
Ddecode_alltypes_callback.c48 static bool read_fixed64(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed64() function
260 alltypes.req_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
263 alltypes.req_sfixed64.funcs.decode = &read_fixed64; in check_alltypes()
266 alltypes.req_double.funcs.decode = &read_fixed64; in check_alltypes()
375 alltypes.opt_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
378 alltypes.opt_sfixed64.funcs.decode = &read_fixed64; in check_alltypes()
381 alltypes.opt_double.funcs.decode = &read_fixed64; in check_alltypes()
/external/nanopb-c/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c48 static bool read_fixed64(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed64() function
315 alltypes.sng_fixed64.funcs.decode = &read_fixed64; in check_alltypes()
318 alltypes.sng_sfixed64.funcs.decode = &read_fixed64; in check_alltypes()
321 alltypes.sng_double.funcs.decode = &read_fixed64; in check_alltypes()
/external/rust/crates/protobuf/src/
Dcoded_input_stream.rs330 pub fn read_fixed64(&mut self) -> ProtobufResult<u64> { in read_fixed64() method
483 target.push(self.read_fixed64()?); in read_repeated_packed_fixed64_into()
578 wire_format::WireTypeFixed64 => self.read_fixed64().map(|v| UnknownValue::Fixed64(v)), in read_unknown()
Dtypes.rs395 is.read_fixed64() in read()
Drt.rs380 target.push(is.read_fixed64()?); in read_repeated_fixed64_into()