Lines Matching refs:input
62 bool zcbor_int32_put(zcbor_state_t *state, int32_t input); /* pint/nint */
63 bool zcbor_int64_put(zcbor_state_t *state, int64_t input); /* pint/nint */
64 bool zcbor_uint32_put(zcbor_state_t *state, uint32_t input); /* pint */
65 bool zcbor_uint64_put(zcbor_state_t *state, uint64_t input); /* pint */
66 bool zcbor_size_put(zcbor_state_t *state, size_t input); /* pint */
68 bool zcbor_bool_put(zcbor_state_t *state, bool input); /* boolean CBOR simple value */
71 bool zcbor_float16_put(zcbor_state_t *state, float input); /* IEEE754 float16 */
72 bool zcbor_float16_bytes_put(zcbor_state_t *state, uint16_t input); /* IEEE754 float16 raw bytes */
73 bool zcbor_float32_put(zcbor_state_t *state, float input); /* IEEE754 float32 */
74 bool zcbor_float64_put(zcbor_state_t *state, double input); /* IEEE754 float64 */
76 bool zcbor_int32_encode(zcbor_state_t *state, const int32_t *input); /* pint/nint */
77 bool zcbor_int64_encode(zcbor_state_t *state, const int64_t *input); /* pint/nint */
78 bool zcbor_uint32_encode(zcbor_state_t *state, const uint32_t *input); /* pint */
79 bool zcbor_uint64_encode(zcbor_state_t *state, const uint64_t *input); /* pint */
80 bool zcbor_size_encode(zcbor_state_t *state, const size_t *input); /* pint */
83 bool zcbor_bstr_encode(zcbor_state_t *state, const struct zcbor_string *input); /* bstr */
84 bool zcbor_tstr_encode(zcbor_state_t *state, const struct zcbor_string *input); /* tstr */
86 bool zcbor_bool_encode(zcbor_state_t *state, const bool *input); /* boolean CBOR simple value */
87 bool zcbor_float16_encode(zcbor_state_t *state, const float *input); /* IEEE754 float16 */
88 bool zcbor_float16_bytes_encode(zcbor_state_t *state, const uint16_t *input); /* IEEE754 float16 ra…
89 bool zcbor_float32_encode(zcbor_state_t *state, const float *input); /* IEEE754 float32 */
90 bool zcbor_float64_encode(zcbor_state_t *state, const double *input); /* IEEE754 float64 */
181 zcbor_state_t *state, const void *input, size_t result_len);
189 zcbor_state_t *state, const void *input, size_t input_len);