Lines Matching full:value

24 /** Extracts the integer value
27 * @return the value
31 /** Extracts the integer value
34 * @return the value
38 /** Extracts the integer value
41 * @return the value
45 /** Extracts the integer value
48 * @return the value
52 /** Extracts the integer value
55 * @return the value, extended to `uint64_t`
59 /** Assigns the integer value
62 * @param value the value to assign. For negative integer, the logical value is
63 * `-value - 1`
65 CBOR_EXPORT void cbor_set_uint8(cbor_item_t *item, uint8_t value);
67 /** Assigns the integer value
70 * @param value the value to assign. For negative integer, the logical value is
71 * `-value - 1`
73 CBOR_EXPORT void cbor_set_uint16(cbor_item_t *item, uint16_t value);
75 /** Assigns the integer value
78 * @param value the value to assign. For negative integer, the logical value is
79 * `-value - 1`
81 CBOR_EXPORT void cbor_set_uint32(cbor_item_t *item, uint32_t value);
83 /** Assigns the integer value
86 * @param value the value to assign. For negative integer, the logical value is
87 * `-value - 1`
89 CBOR_EXPORT void cbor_set_uint64(cbor_item_t *item, uint64_t value);
101 * The data value is not changed
109 * The data value is not changed
120 * value is not initialized
129 * value is not initialized
138 * value is not initialized
147 * value is not initialized
153 * @param value the value to use
156 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_uint8(uint8_t value);
160 * @param value the value to use
163 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_uint16(uint16_t value);
167 * @param value the value to use
170 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_uint32(uint32_t value);
174 * @param value the value to use
177 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_uint64(uint64_t value);
181 * @param value the value to use
184 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_negint8(uint8_t value);
188 * @param value the value to use
191 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_negint16(uint16_t value);
195 * @param value the value to use
198 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_negint32(uint32_t value);
202 * @param value the value to use
205 _CBOR_NODISCARD CBOR_EXPORT cbor_item_t *cbor_build_negint64(uint64_t value);