Home
last modified time | relevance | path

Searched refs:union_int (Results 1 – 2 of 2) sorted by relevance

/zcbor-latest/zcbor/
Dzcbor.py2231 def single_func_prim_name(self, union_int=None, ptr_result=False): argument
2240 elif not union_int:
2242 elif union_int == "EXPECT":
2246 elif union_int == "DROP":
2257 def single_func_prim(self, access, union_int=None, ptr_result=False): argument
2271 return self.my_types[self.value].single_func(access, union_int)
2273 func_name = self.single_func_prim_name(union_int, ptr_result=ptr_result)
2291 def single_func(self, access=None, union_int=None): argument
2296 return self.single_func_prim(access or self.val_access(), union_int)
2345 def xcode_single_func_prim(self, union_int=None): argument
[all …]
/zcbor-latest/
DRELEASE_NOTES.md256 * zcbor.py: Fix bug where the union_int optimization decodes twice
336 …* zcbor.py: "union_int" optimization: If all union members start with an integer, the optimization…
337 * zcbor.py: Fix a bug preventing the "union_int" optimization from being applied.