Home
last modified time | relevance | path

Searched refs:decode_state (Results 1 – 3 of 3) sorted by relevance

/mcuboot-latest/boot/zcbor/src/
Dzcbor_decode.c675 state->decode_state.indefinite_length_array = indefinite_length_array;
693 if (ret && !state->decode_state.indefinite_length_array) {
709 const bool indefinite_length_array = state->decode_state.indefinite_length_array;
730 state->decode_state.map_search_elem_state
731 += zcbor_flags_to_bytes(state->decode_state.map_elem_count);
733 state->decode_state.map_elems_processed = 0;
735 state->decode_state.map_elem_count = 0;
736 state->decode_state.counting_map_elems = state->decode_state.indefinite_length_array;
738 if (!state->decode_state.counting_map_elems) {
756 return (state->decode_state.indefinite_length_array ? \
[all …]
Dzcbor_common.c97 state->decode_state = local_copy.decode_state; in zcbor_process_backup()
147 state_array[0].decode_state.indefinite_length_array = false; in zcbor_new_state()
149 state_array[0].decode_state.map_search_elem_state = flags; in zcbor_new_state()
150 state_array[0].decode_state.map_elem_count = 0; in zcbor_new_state()
152 state_array[0].decode_state.map_elems_processed = 0; in zcbor_new_state()
/mcuboot-latest/boot/zcbor/include/
Dzcbor_common.h140 } decode_state; member