Home | History | Annotate | Download | only in nanopb-c

Lines Matching defs:bytes

24 /* Add support for tag numbers > 255 and fields larger than 255 bytes. */
27 /* Add support for tag numbers > 65536 and fields larger than 65536 bytes. */
203 * larger than 256 bytes or field tags larger than 256.
215 pb_size_t data_size; /* Data size in bytes for a single item */
240 /* This structure is used for 'bytes' arrays.
241 * It has the number of bytes in the beginning, and after that an array.
242 * Note that actual structs used will have a different length of bytes array.
244 #define PB_BYTES_ARRAY_T(n) struct { size_t size; uint8_t bytes[n]; }
245 #define PB_BYTES_ARRAY_T_ALLOCSIZE(n) ((size_t)n + offsetof(pb_bytes_array_t, bytes))
249 uint8_t bytes[1];
362 /* Size of a structure member, in bytes. */
467 * - Field type: BOOL, BYTES, DOUBLE, ENUM, FIXED32, FIXED64,