Searched refs:code (Results 1 – 8 of 8) sorted by relevance
/libmctp-latest/docs/bindings/ |
D | Makefile | 6 --extras=code-friendly \ 7 --extras=fenced-code-blocks \
|
/libmctp-latest/ |
D | Makefile.am | 38 clean-local: code-coverage-clean 39 distclean-local: code-coverage-dist-clean
|
D | bootstrap.sh | 26 --enable-code-coverage \
|
D | LICENSE | 31 including but not limited to software source code, documentation 36 not limited to compiled object code, generated documentation, 60 communication on electronic mailing lists, source code control systems, 232 this service if you wish), that you receive source code or can get it 244 source code. And you must show them these terms so they know their 288 source code as you receive it, in any medium, provided that you 343 under Section 2) in object code or executable form under the terms of 347 source code, which must be distributed under the terms of Sections 353 machine-readable copy of the corresponding source code, to be 358 to distribute corresponding source code. (This alternative is [all …]
|
D | astlpc.c | 218 uint32_t code; in astlpc_pktbuf_protect_v3() local 220 code = htobe32(crc32(mctp_pktbuf_hdr(pkt), mctp_pktbuf_size(pkt))); in astlpc_pktbuf_protect_v3() 221 mctp_prdebug("%s: 0x%" PRIx32, __func__, code); in astlpc_pktbuf_protect_v3() 222 mctp_pktbuf_push(pkt, &code, 4); in astlpc_pktbuf_protect_v3() 227 uint32_t code; in astlpc_pktbuf_validate_v3() local 230 code = be32toh(crc32(mctp_pktbuf_hdr(pkt), mctp_pktbuf_size(pkt) - 4)); in astlpc_pktbuf_validate_v3() 231 mctp_prdebug("%s: 0x%" PRIx32, __func__, code); in astlpc_pktbuf_validate_v3() 233 return check && !memcmp(&code, check, 4); in astlpc_pktbuf_validate_v3()
|
D | README.md | 74 The binding code then provides a method (`_init`) to allocate and initialise the 75 binding; this may be of any prototype (calling code will know what arguments to 98 The libmctp code is intended to be integrated into other codebases by two
|
D | OWNERS | 5 # parts of this repository, including code review and approval. We use the
|
/libmctp-latest/tests/ |
D | test_astlpc.c | 1306 uint32_t code; in astlpc_test_corrupt_host_tx() local 1333 memcpy(&code, tlr, sizeof(code)); in astlpc_test_corrupt_host_tx() 1334 code = ~code; in astlpc_test_corrupt_host_tx() 1335 memcpy(tlr, &code, sizeof(code)); in astlpc_test_corrupt_host_tx() 1360 uint32_t code; in astlpc_test_corrupt_bmc_tx() local 1388 memcpy(&code, tlr, sizeof(code)); in astlpc_test_corrupt_bmc_tx() 1389 code = ~code; in astlpc_test_corrupt_bmc_tx() 1390 memcpy(tlr, &code, sizeof(code)); in astlpc_test_corrupt_bmc_tx()
|