Home
last modified time | relevance | path

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

/external/nanopb-c/tests/alltypes_callback/
Ddecode_alltypes_callback.c38 static bool read_fixed32(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed32() function
257 alltypes.req_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
260 alltypes.req_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
263 alltypes.req_float.funcs.decode = &read_fixed32; in check_alltypes()
372 alltypes.opt_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
375 alltypes.opt_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
378 alltypes.opt_float.funcs.decode = &read_fixed32; in check_alltypes()
/external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
Ddecode_alltypes_callback.c38 static bool read_fixed32(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed32() function
251 alltypes.req_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
254 alltypes.req_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
257 alltypes.req_float.funcs.decode = &read_fixed32; in check_alltypes()
366 alltypes.opt_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
369 alltypes.opt_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
372 alltypes.opt_float.funcs.decode = &read_fixed32; in check_alltypes()
/external/nanopb-c/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c38 static bool read_fixed32(pb_istream_t *stream, const pb_field_t *field, void **arg) in read_fixed32() function
306 alltypes.sng_fixed32.funcs.decode = &read_fixed32; in check_alltypes()
309 alltypes.sng_sfixed32.funcs.decode = &read_fixed32; in check_alltypes()
312 alltypes.sng_float.funcs.decode = &read_fixed32; in check_alltypes()
/external/rust/crates/protobuf/src/
Dcoded_input_stream.rs335 pub fn read_fixed32(&mut self) -> ProtobufResult<u32> { in read_fixed32() method
500 target.push(self.read_fixed32()?); in read_repeated_packed_fixed32_into()
579 wire_format::WireTypeFixed32 => self.read_fixed32().map(|v| UnknownValue::Fixed32(v)), in read_unknown()
Dtypes.rs367 is.read_fixed32() in read()
Drt.rs364 target.push(is.read_fixed32()?); in read_repeated_fixed32_into()