Searched refs:b (Results 1 – 13 of 13) sorted by relevance
/zcbor-latest/tests/cases/ |
D | senml.cddl | 18 label = non-b-label / b-label 19 non-b-label = tstr / uint 20 b-label = tstr / nint
|
/zcbor-latest/tests/unit/test3_float16/ |
D | floats.py | 24 b = numpy.frombuffer(a.tobytes(), dtype=numpy.float32).astype("<e") # <e is little endian float16 25 c = numpy.where(b[1:] != b[:-1])[0].astype(numpy.uintc) + 1 26 assert all(numpy.frombuffer((b[c].tobytes()), dtype=numpy.ushort) == numpy.arange(2, 31744))
|
D | CMakeLists.txt | 38 execute_process(COMMAND ${LD} ${LD_SIMULATION} -r -b binary -o fp_bytes_decode.o fp_bytes_decode.bi… 42 execute_process(COMMAND ${LD} ${LD_SIMULATION} -r -b binary -o fp_bytes_encode.o fp_bytes_encode.bi…
|
/zcbor-latest/include/ |
D | zcbor_common.h | 61 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 65 #define MAX(a, b) (((a) < (b)) ? (b) : (a)) argument
|
/zcbor-latest/tests/include/ |
D | common_test.h | 10 #define CONCAT_BYTE(a,b) a ## b argument
|
/zcbor-latest/tests/decode/test5_corner_cases/ |
D | floats.py | 17 for b in bytestr: 18 var_str += hex(b) + ", "
|
/zcbor-latest/tests/cmake/ |
D | test_template.cmake | 31 set(bit_arg -b 64)
|
/zcbor-latest/tests/scripts/ |
D | test_zcbor.py | 122 [b'\x00'], 146 [b'\x00'], 219 sig_struct = dumps(["Signature1", signature_header, b'', manifest_suit_digest]) 324 struct.value[23] = b'' # Invalid integrated payload key 341 struct4[1][1] += b'x' # vendor ID: wrong length 402 … self.assertEqual(b'\x00', self.decoded.suit_manifest.suit_common.suit_components[0][0].bstr[0]) 403 … self.assertEqual(b'\x02', self.decoded.suit_manifest.suit_common.suit_components[0][1].bstr[0]) 404 … self.assertEqual(b'\x01', self.decoded.suit_manifest.suit_common.suit_components[0][2].bstr[0]) 618 self.assertIn(b"error: Please specify at least one of --decode or --encode", stderr1) 624 b"error: Please specify both --output-c and --output-h " [all …]
|
/zcbor-latest/scripts/ |
D | add_helptext.py | 35 assert b"options:" in stdout, f"Seems like something went wrong: {stdout.decode('utf-8')}"
|
/zcbor-latest/ |
D | RELEASE_NOTES.md | 72 * Generics (`foo<a, b>`). 105 * Generics (`foo<a, b>`). 177 * Generics (`foo<a, b>`). 233 * Generics (`foo<a, b>`). 272 * Generics (`foo<a, b>`). 301 * Generics (`foo<a, b>`). 354 * Generics (`foo<a, b>`). 457 * Generics (`foo<a, b>`). 524 * Generics (`foo<a, b>`).
|
D | LICENSE | 98 (b) You must cause any modified files to carry prominent notices
|
D | README.md | 340 * Generics (`foo<a, b>`). 443 [--git-sha-header] [-b {32,64}] 527 -b {32,64}, --default-bit-size {32,64}
|
/zcbor-latest/zcbor/ |
D | zcbor.py | 1483 mask = sum(((1 << b.value) for b in self.my_control_groups[self.bits].value)) 1799 if f.read(1) != b'':
|