Searched refs:pb_decode_fixed32 (Results 1 – 9 of 9) sorted by relevance
/nanopb-3.4.0/tests/callbacks/ |
D | decode_callbacks.c | 41 if (!pb_decode_fixed32(stream, &value)) in print_fixed32()
|
/nanopb-3.4.0/ |
D | pb_decode.h | 172 bool pb_decode_fixed32(pb_istream_t *stream, void *dest);
|
D | pb_decode.c | 417 return pb_decode_fixed32(stream, field->pData); in decode_basic_field() 1369 bool pb_decode_fixed32(pb_istream_t *stream, void *dest) in pb_decode_fixed32() function
|
/nanopb-3.4.0/spm_headers/nanopb/ |
D | pb_decode.h | 172 bool pb_decode_fixed32(pb_istream_t *stream, void *dest);
|
/nanopb-3.4.0/tests/raw_decode/ |
D | raw_decode.c | 128 if (!pb_decode_fixed32(stream, &value)) in raw_decode()
|
/nanopb-3.4.0/tests/decode_unittests/ |
D | decode_unittests.c | 244 TEST((s = S("\x00\x00\x00\x00"), pb_decode_fixed32(&s, &d) && d == 0.0f)) in main() 245 TEST((s = S("\x00\x00\xc6\x42"), pb_decode_fixed32(&s, &d) && d == 99.0f)) in main() 246 TEST((s = S("\x4e\x61\x3c\xcb"), pb_decode_fixed32(&s, &d) && d == -12345678.0f)) in main() 248 TEST((s = S("\x00"), !pb_decode_fixed32(&s, &d) && d == -12345678.0f)) in main()
|
/nanopb-3.4.0/tests/alltypes_proto3_callback/ |
D | decode_alltypes_callback.c | 41 if (!pb_decode_fixed32(stream, &value)) in read_fixed32() 138 if (!pb_decode_fixed32(stream, &value)) in read_repeated_fixed32()
|
/nanopb-3.4.0/tests/alltypes_callback/ |
D | decode_alltypes_callback.c | 41 if (!pb_decode_fixed32(stream, &value)) in read_fixed32() 139 if (!pb_decode_fixed32(stream, &value)) in read_repeated_fixed32()
|
/nanopb-3.4.0/docs/ |
D | reference.md | 866 [pb_decode_fixed32](#pb_decode_fixed32) and [pb_decode_fixed64](#pb_decode_fixed64). 908 #### pb_decode_fixed32 subsubsection 912 bool pb_decode_fixed32(pb_istream_t *stream, void *dest); 936 Same as [pb_decode_fixed32](#pb_decode_fixed32), except this reads 8
|