Lines Matching +full:- +full:e
9 * SPDX-License-Identifier: Apache-2.0
48 * I.e. the largest number of elements expected in an unordered map,
164 * The CBOR spec allows elements (key-value pairs) in maps to appear in any order.
189 * or integers, i.e. the @p key_decoder is typically a _pexpect() function.
207 * @retval true If the key was found, i.e. @p key_decoder returned true.
219 * Refer to the docs for zcbor_(t|b)str_expect_* (e.g. @ref zcbor_bstr_expect_ptr)
226 #define zcbor_search_key_bstr_lit(state, str) zcbor_search_key_bstr_ptr(state, str, sizeof(str) - 1)
227 #define zcbor_search_key_tstr_lit(state, str) zcbor_search_key_tstr_ptr(state, str, sizeof(str) - 1)
234 * By default, i.e. when @ref manually_process_elem is not set, this function is
240 * element (key-value pair) that is currently being processed, or that has just been
305 * The @ref zcbor_decoder_t type is designed to be compatible with all single-
306 * value decoder functions in this library, e.g. @ref zcbor_uint32_decode,
323 * each call to @p decoder, i.e. @p result refers to
363 * _term() uses strnlen(), so @p str must be null-terminated.
364 …* _lit() uses sizeof()-1, so @p str must be a (null-terminated) string liter…
365 …* _arr() uses sizeof(), so @p str must be a uint8_t array (not null-terminat…
374 #define zcbor_bstr_expect_lit(state, str) zcbor_bstr_expect_ptr(state, str, sizeof(str) - 1)
375 #define zcbor_tstr_expect_lit(state, str) zcbor_tstr_expect_ptr(state, str, sizeof(str) - 1)
397 /** Finalize decoding a CBOR-encoded bstr.
438 * Use this function to extract all but the first fragment of a CBOR-encoded