Searched refs:data_bytes (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/tests/sys/audit/
H A Dnetwork.c47 static ssize_t data_bytes; variable
621 ATF_REQUIRE((data_bytes =
624 /* Audit record must contain sockfd2 and data_bytes */
626 "send.*0x%x.*return,success,%zd", sockfd2, data_bytes);
685 ATF_REQUIRE((data_bytes = recv(connectfd, data, MAX_DATA, 0)) != 0);
687 /* Audit record must contain connectfd and data_bytes */
689 "recv.*0x%x.*return,success,%zd", connectfd, data_bytes);
743 ATF_REQUIRE((data_bytes = sendto(sockfd2, msgbuff,
746 /* Audit record must contain sockfd2 and data_bytes */
748 "sendto.*0x%x.*return,success,%zd", sockfd2, data_bytes);
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-nand.h250 uint64_t data_bytes : 16; member in struct:__anon10226
265 uint64_t data_bytes : 16; member in struct:__anon10227
280 uint64_t data_bytes : 16; member in struct:__anon10228
H A Dcvmx-nand.c1278 cmd.rd.data_bytes = buffer_length;
1411 cmd.wr.data_bytes = buffer_length;
/freebsd-13-stable/sys/dev/sound/pci/
H A Dmaestro3.c381 int idx, data_bytes, dac_data; local
419 data_bytes = (((MINISRC_TMP_BUFFER_SIZE & ~1) +
422 dac_data = 0x1100 + (data_bytes * idx);
432 if (ch->dac_data + data_bytes/2 >= 0x1c00) {
759 int idx, data_bytes, adc_data; local
799 data_bytes = (((MINISRC_TMP_BUFFER_SIZE & ~1) +
802 adc_data = 0x1100 + (data_bytes * idx) + data_bytes/2;
811 if (ch->adc_data + data_bytes/2 >= 0x1c00) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp209 const uint8_t *data_bytes = data->GetBytes(); local
210 if (data_bytes != nullptr) {
211 assert(m_start >= data_bytes);
212 return m_start - data_bytes;
/freebsd-13-stable/sys/netinet/
H A Dsctp_header.h403 uint8_t data_bytes[SCTP_NUM_DB_TO_VERIFY]; member in struct:sctp_chunk_desc
H A Dsctp_input.c3143 desc->data_bytes, SCTP_NUM_DB_TO_VERIFY) != 0) {
4237 memcpy(desc.data_bytes, data_chunk + 1, SCTP_NUM_DB_TO_VERIFY);
4264 memcpy(desc.data_bytes, idata_chunk + 1, SCTP_NUM_DB_TO_VERIFY);
/freebsd-13-stable/sbin/camcontrol/
H A Dcamcontrol.c4606 int c, data_bytes = 0, valid_bytes; local
4687 data_bytes = strtol(optarg, NULL, 0);
4688 if (data_bytes <= 0) {
4690 data_bytes);
4707 data_ptr = (u_int8_t *)malloc(data_bytes);
4723 data_bytes = strtol(optarg, NULL, 0);
4724 if (data_bytes <= 0) {
4726 data_bytes);
4734 data_ptr = (u_int8_t *)malloc(data_bytes);
4740 bzero(data_ptr, data_bytes);
[all...]
/freebsd-13-stable/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_libzfs_core.py1807 data_bytes = os.read(fd, size)
1810 ret = _lib.nvlist_unpack(data_bytes, size, nvp, 0)

Completed in 111 milliseconds