Home
last modified time | relevance | path

Searched refs:b (Results 1 – 13 of 13) sorted by relevance

/zcbor-latest/tests/cases/
Dsenml.cddl18 label = non-b-label / b-label
19 non-b-label = tstr / uint
20 b-label = tstr / nint
/zcbor-latest/tests/unit/test3_float16/
Dfloats.py24 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))
DCMakeLists.txt38 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/
Dzcbor_common.h61 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
65 #define MAX(a, b) (((a) < (b)) ? (b) : (a)) argument
/zcbor-latest/tests/include/
Dcommon_test.h10 #define CONCAT_BYTE(a,b) a ## b argument
/zcbor-latest/tests/decode/test5_corner_cases/
Dfloats.py17 for b in bytestr:
18 var_str += hex(b) + ", "
/zcbor-latest/tests/cmake/
Dtest_template.cmake31 set(bit_arg -b 64)
/zcbor-latest/tests/scripts/
Dtest_zcbor.py122 [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/
Dadd_helptext.py35 assert b"options:" in stdout, f"Seems like something went wrong: {stdout.decode('utf-8')}"
/zcbor-latest/
DRELEASE_NOTES.md72 * 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>`).
DLICENSE98 (b) You must cause any modified files to carry prominent notices
DREADME.md340 * Generics (`foo<a, b>`).
443 [--git-sha-header] [-b {32,64}]
527 -b {32,64}, --default-bit-size {32,64}
/zcbor-latest/zcbor/
Dzcbor.py1483 mask = sum(((1 << b.value) for b in self.my_control_groups[self.bits].value))
1799 if f.read(1) != b'':