Home
last modified time | relevance | path

Searched refs:name (Results 1 – 21 of 21) sorted by relevance

/zcbor-latest/
Dpyproject.toml12 name = 'zcbor'
27 authors = [{name = 'Nordic Semiconductor ASA'}]
28 maintainers = [{name = 'Øyvind Rønningstad', email = 'oyvind.ronningstad@nordicsemi.no'}]
DMIGRATION_GUIDE.md14 …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).
DREADME.md323 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 …]
DLICENSE46 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]
DARCHITECTURE.md59 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, <…
DRELEASE_NOTES.md134 * 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/
Dzcbor_encode.h42 #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); \
Dzcbor_decode.h46 #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/
Dzcbor.py1054 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/
Dpet.cddl11 name: [ names: +tstr ],
Dmanifest20.cddl177 ? suit-text-vendor-name => tstr,
178 ? suit-text-model-name => tstr,
268 suit-text-vendor-name = 1
269 suit-text-model-name = 2
Dmanifest16.cddl186 ? suit-text-vendor-name => tstr,
187 ? suit-text-model-name => tstr,
271 suit-text-vendor-name = 1
272 suit-text-model-name = 2
Dmanifest14.cddl307 ? suit-text-vendor-name => tstr,
308 ? suit-text-model-name => tstr,
432 suit-text-vendor-name = 1
433 suit-text-model-name = 2
Dmanifest12.cddl332 ? suit-text-vendor-name => tstr,
333 ? suit-text-model-name => tstr,
460 suit-text-vendor-name = 1
461 suit-text-model-name = 2
Dmanifest9.cddl367 ? suit-text-vendor-name => tstr,
368 ? suit-text-model-name => tstr,
492 suit-text-vendor-name = 1
493 suit-text-model-name = 2
Dmanifest2.cddl340 suit-text-vendor-name = 3
341 suit-text-model-name = 4
Dmanifest3.cddl363 suit-text-vendor-name = 3
364 suit-text-model-name = 4
/zcbor-latest/tests/encode/test1_suit/src/
Dmain.c232 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/
DCMakeLists.txt51 --c-code-var-name example0
/zcbor-latest/tests/scripts/
Dtest_repo_files.py113 for p in [f for f in files if "pet" in f.name]:
184 link = path.name + m
/zcbor-latest/samples/pet/
DCMakeLists.txt32 -o ${PROJECT_BINARY_DIR}/include/pet1.h --c-code-var-name pet1