Home
last modified time | relevance | path

Searched refs:pb_decode_varint (Results 1 – 11 of 11) sorted by relevance

/nanopb-3.4.0/
Dpb_decode.h150 bool pb_decode_varint(pb_istream_t *stream, uint64_t *dest);
152 #define pb_decode_varint pb_decode_varint32 macro
Dpb_decode.c242 bool checkreturn pb_decode_varint(pb_istream_t *stream, uint64_t *dest) in pb_decode_varint() function
1358 if (!pb_decode_varint(stream, &value)) in pb_decode_svarint()
1429 if (!pb_decode_varint(stream, &value)) in pb_dec_varint()
1462 if (!pb_decode_varint(stream, &value)) in pb_dec_varint()
/nanopb-3.4.0/spm_headers/nanopb/
Dpb_decode.h150 bool pb_decode_varint(pb_istream_t *stream, uint64_t *dest);
152 #define pb_decode_varint pb_decode_varint32 macro
/nanopb-3.4.0/tests/decode_unittests/
Ddecode_unittests.c81 TEST((s = S("\x00"), pb_decode_varint(&s, &u) && u == 0)); in main()
82 TEST((s = S("\x01"), pb_decode_varint(&s, &u) && u == 1)); in main()
83 TEST((s = S("\xAC\x02"), pb_decode_varint(&s, &u) && u == 300)); in main()
84 TEST((s = S("\xFF\xFF\xFF\xFF\x0F"), pb_decode_varint(&s, &u) && u == UINT32_MAX)); in main()
85 … TEST((s = S("\xFF\xFF\xFF\xFF\x0F"), pb_decode_varint(&s, (uint64_t*)&i) && i == UINT32_MAX)); in main()
87 pb_decode_varint(&s, (uint64_t*)&i) && i == -1)); in main()
89 pb_decode_varint(&s, &u) && u == UINT64_MAX)); in main()
91 !pb_decode_varint(&s, &u))); in main()
/nanopb-3.4.0/tests/callbacks/
Ddecode_callbacks.c31 if (!pb_decode_varint(stream, &value)) in print_int32()
/nanopb-3.4.0/tests/oneof_callback/
Ddecode_oneof.c48 if (!pb_decode_varint(stream, &value)) in print_int32()
/nanopb-3.4.0/tests/raw_decode/
Draw_decode.c100 if (!pb_decode_varint(stream, &value)) in raw_decode()
/nanopb-3.4.0/tests/alltypes_proto3_callback/
Ddecode_alltypes_callback.c21 if (!pb_decode_varint(stream, &value)) in read_varint()
116 if (!pb_decode_varint(stream, &value)) in read_repeated_varint()
/nanopb-3.4.0/tests/alltypes_callback/
Ddecode_alltypes_callback.c21 if (!pb_decode_varint(stream, &value)) in read_varint()
117 if (!pb_decode_varint(stream, &value)) in read_repeated_varint()
/nanopb-3.4.0/docs/
Dreference.md865 [pb_decode_varint](#pb_decode_varint), [pb_decode_svarint](#pb_decode_svarint),
874 #### pb_decode_varint subsubsection
879 bool pb_decode_varint(pb_istream_t *stream, uint64_t *dest);
889 Same as `pb_decode_varint`, but limits the value to 32 bits:
893 Parameters are the same as `pb_decode_varint`. This function can be used
900 Similar to [pb_decode_varint](#pb_decode_varint), except that it
906 (parameters are the same as [pb_decode_varint](#pb_decode_varint))
965 This function uses `pb_decode_varint` to read an integer from the stream.
Dconcepts.md321 if (!pb_decode_varint(stream, &value))