| /zcbor-latest/ |
| D | pyproject.toml | 12 name = 'zcbor' 27 authors = [{name = 'Nordic Semiconductor ASA'}] 28 maintainers = [{name = 'Øyvind Rønningstad', email = 'oyvind.ronningstad@nordicsemi.no'}]
|
| D | MIGRATION_GUIDE.md | 14 …ments with a .size specifier, which might mean that these elements change name in your code when y… 28 * All enum (choice) names have now gained a ``_c`` suffix, so the enum name no longer matches 29 the corresponding member name exactly (because this broke C++ namespace rules).
|
| D | README.md | 323 E.g. `Foo = [name: tstr, age: uint]` is equivalent to `Foo = [tstr, uint]`. 484 specified, the path and name will be based on the 487 there with the same name (except the file extension) 493 If not specified, the path and name will be based on 496 be placed there with the same name (except the file 501 and name will be taken from the output header file 502 (--output-h), with '_types' added to the file name. 507 file without '.cmake' is used as the name of the CMake 575 omitted, the format is inferred from the file name. 606 [--c-code-var-name C_CODE_VAR_NAME] [all …]
|
| D | LICENSE | 46 separable from, or merely link (or bind by name) to the interfaces of, 186 file or class name and description of purpose be included on the 190 Copyright [yyyy] [name of copyright owner]
|
| D | ARCHITECTURE.md | 59 For `"OTHER"`, `self.value` is a string with the name of the type it refers to. 79 The elements are on the form `<name>: <CddlParser object>`. 209 All functions (generated and not) have the same API structure: `bool <name>(zcbor_state_t *state, <…
|
| D | RELEASE_NOTES.md | 134 * Code generation name improvements: 136 * zcbor.py: Change name of generated choice enum members to add a '_c' 395 … to handle this. Look for `zcbor_update_state()` and various functions with `fragment` in the name. 475 * Change command line name from `cddl_gen` to `cddl-gen`
|
| /zcbor-latest/include/ |
| D | zcbor_encode.h | 42 #define ZCBOR_STATE_E(name, num_backups, payload, payload_size, elem_count) \ argument 43 zcbor_state_t name[((num_backups) + 2)]; \ 45 zcbor_new_encode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count); \
|
| D | zcbor_decode.h | 46 #define ZCBOR_STATE_D(name, num_backups, payload, payload_size, elem_count, n_flags) \ argument 47 zcbor_state_t name[((num_backups) + 2 + ZCBOR_FLAG_STATES(n_flags))]; \ 49 zcbor_new_decode_state(name, ZCBOR_ARRAY_SIZE(name), payload, payload_size, elem_count, \ 50 (uint8_t *)&name[(num_backups) + 1], ZCBOR_FLAG_STATES(n_flags) * sizeof(zcbor_state_t)); \
|
| /zcbor-latest/zcbor/ |
| D | zcbor.py | 1054 name = self.id(with_prefix=with_prefix) 1055 if name in c_keywords: 1056 name = name.capitalize() 1057 elif name in c_keywords_underscore: 1058 name = "_" + name 1059 return name 1504 def _flatten_list(self, name, obj): argument 1510 and hasattr(obj[0], name)): 1529 def _add_if(self, my_list, obj, expect_key=False, name=None): argument 1552 self.key._add_if(my_list, key, name=self.var_name() + "_key") [all …]
|
| /zcbor-latest/tests/cases/ |
| D | pet.cddl | 11 name: [ names: +tstr ],
|
| D | manifest20.cddl | 177 ? suit-text-vendor-name => tstr, 178 ? suit-text-model-name => tstr, 268 suit-text-vendor-name = 1 269 suit-text-model-name = 2
|
| D | manifest16.cddl | 186 ? suit-text-vendor-name => tstr, 187 ? suit-text-model-name => tstr, 271 suit-text-vendor-name = 1 272 suit-text-model-name = 2
|
| D | manifest14.cddl | 307 ? suit-text-vendor-name => tstr, 308 ? suit-text-model-name => tstr, 432 suit-text-vendor-name = 1 433 suit-text-model-name = 2
|
| D | manifest12.cddl | 332 ? suit-text-vendor-name => tstr, 333 ? suit-text-model-name => tstr, 460 suit-text-vendor-name = 1 461 suit-text-model-name = 2
|
| D | manifest9.cddl | 367 ? suit-text-vendor-name => tstr, 368 ? suit-text-model-name => tstr, 492 suit-text-vendor-name = 1 493 suit-text-model-name = 2
|
| D | manifest2.cddl | 340 suit-text-vendor-name = 3 341 suit-text-model-name = 4
|
| D | manifest3.cddl | 363 suit-text-vendor-name = 3 364 suit-text-model-name = 4
|
| /zcbor-latest/tests/encode/test1_suit/src/ |
| D | main.c | 232 bool present, char *name) in test_command_sequence() argument 247 zcbor_log("\r\ntest %s\r\n", name); in test_command_sequence()
|
| /zcbor-latest/tests/decode/test9_manifest14/ |
| D | CMakeLists.txt | 51 --c-code-var-name example0
|
| /zcbor-latest/tests/scripts/ |
| D | test_repo_files.py | 113 for p in [f for f in files if "pet" in f.name]: 184 link = path.name + m
|
| /zcbor-latest/samples/pet/ |
| D | CMakeLists.txt | 32 -o ${PROJECT_BINARY_DIR}/include/pet1.h --c-code-var-name pet1
|