Home
last modified time | relevance | path

Searched refs:pb_dec_fixed32 (Results 1 – 2 of 2) sorted by relevance

/external/nanopb-c/tests/decode_unittests/
Ddecode_unittests.c152 TEST((s = S("\x00\x00\x00\x00"), pb_dec_fixed32(&s, &f, &d) && d == 0.0f)) in main()
153 TEST((s = S("\x00\x00\xc6\x42"), pb_dec_fixed32(&s, &f, &d) && d == 99.0f)) in main()
154 TEST((s = S("\x4e\x61\x3c\xcb"), pb_dec_fixed32(&s, &f, &d) && d == -12345678.0f)) in main()
155 TEST((s = S("\x00"), !pb_dec_fixed32(&s, &f, &d) && d == -12345678.0f)) in main()
/external/nanopb-c/
Dpb_decode.c52 static bool checkreturn pb_dec_fixed32(pb_istream_t *stream, const pb_field_t *field, void *dest);
67 &pb_dec_fixed32,
1084 static bool checkreturn pb_dec_fixed32(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_fixed32() function