Home
last modified time | relevance | path

Searched refs:total_length (Results 1 – 22 of 22) sorted by relevance

/freebsd-12-stable/contrib/binutils/opcodes/
Dmep-ibld.c129 unsigned int total_length, in insert_normal() argument
148 && word_length > total_length) in insert_normal()
149 word_length = total_length; in insert_normal()
215 shift = total_length - (word_offset + start + length); in insert_normal()
426 unsigned int total_length, in extract_normal() argument
451 if (word_offset + word_length > total_length) in extract_normal()
452 word_length = total_length - word_offset; in extract_normal()
457 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length)) in extract_normal()
462 value = insn_value >> (total_length - ( word_offset + start + length)); in extract_normal()
564 unsigned int total_length = CGEN_FIELDS_BITSIZE (fields); in mep_cgen_insert_operand() local
[all …]
Dcgen-ibld.in129 unsigned int total_length,
148 && word_length > total_length)
149 word_length = total_length;
215 shift = total_length - (word_offset + start + length);
426 unsigned int total_length,
451 if (word_offset + word_length > total_length)
452 word_length = total_length - word_offset;
457 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length))
462 value = insn_value >> (total_length - ( word_offset + start + length));
/freebsd-12-stable/contrib/libpcap/
Dsf-pcapng.c55 bpf_u_int32 total_length; member
62 bpf_u_int32 total_length; member
295 bhdr.total_length = SWAPLONG(bhdr.total_length); in read_block()
302 if (bhdr.total_length < sizeof(struct block_header) + in read_block()
306 bhdr.total_length, in read_block()
314 if ((bhdr.total_length % 4) != 0) { in read_block()
320 bhdr.total_length); in read_block()
327 if (p->bufsize < bhdr.total_length) { in read_block()
334 if (bhdr.total_length > ps->max_blocksize) { in read_block()
335 pcap_snprintf(errbuf, PCAP_ERRBUF_SIZE, "pcapng block size %u > maximum %u", bhdr.total_length, in read_block()
[all …]
/freebsd-12-stable/contrib/wpa/src/wps/
Dndef.c29 u32 total_length; member
75 record->total_length = pos - data; in ndef_parse_record()
76 if (record->total_length > size || in ndef_parse_record()
77 record->total_length < record->payload_length) in ndef_parse_record()
98 data += record.total_length; in ndef_parse_records()
99 len -= record.total_length; in ndef_parse_records()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp666 size_t total_length = 0; in CheckForPacket() local
682 content_length = total_length = 1; // The command is one byte long... in CheckForPacket()
702 total_length = in CheckForPacket()
743 } else if (total_length > 0) { in CheckForPacket()
747 assert(total_length <= m_bytes.size()); in CheckForPacket()
748 assert(content_length <= total_length); in CheckForPacket()
763 if (m_bytes[0] == '$' && total_length > 4) { in CheckForPacket()
764 for (size_t i = 0; !binary && i < total_length; ++i) { in CheckForPacket()
776 (uint64_t)original_packet_size, (uint64_t)total_length, in CheckForPacket()
780 (uint64_t)total_length, m_bytes[0]); in CheckForPacket()
[all …]
/freebsd-12-stable/sys/dev/sfxge/common/
Def10_nvram.c641 header->total_length = __CPU_TO_LE_32(new_len); in tlv_update_partition_len_and_cks()
674 size_t total_length; in ef10_nvram_buffer_validate() local
700 total_length = __LE_TO_CPU_32(header->total_length); in ef10_nvram_buffer_validate()
701 if (total_length > partn_size) { in ef10_nvram_buffer_validate()
730 for (pos = 0; (size_t)pos < total_length; pos += sizeof (uint32_t)) { in ef10_nvram_buffer_validate()
798 header.total_length = 0; /* This will be fixed below. */ in ef10_nvram_buffer_create()
1157 size_t total_length; in ef10_nvram_read_tlv_segment() local
1189 total_length = __LE_TO_CPU_32(header->total_length); in ef10_nvram_read_tlv_segment()
1190 if (total_length > max_seg_size) { in ef10_nvram_read_tlv_segment()
1196 if (total_length > EF10_NVRAM_CHUNK) { in ef10_nvram_read_tlv_segment()
[all …]
Def10_tlv_layout.h124 uint32_t total_length; member
/freebsd-12-stable/sys/contrib/octeon-sdk/
Dcvmx-qlm.c360 int total_length = qlm_jtag_length * num_lanes; in cvmx_qlm_jtag_set() local
391 while (bits < total_length) in cvmx_qlm_jtag_set()
394 int width = total_length - bits; in cvmx_qlm_jtag_set()
/freebsd-12-stable/sys/dev/qlxgb/
Dqla_hw.c936 uint32_t total_length = 0, bytes, tx_cmd_count = 0; in qla_hw_send() local
949 total_length = mp->m_pkthdr.len; in qla_hw_send()
950 if (total_length > QLA_MAX_TSO_FRAME_SIZE) { in qla_hw_send()
952 __func__, total_length); in qla_hw_send()
1029 tx_cmd->data_len_lo = (uint8_t)(total_length & 0xFF); in qla_hw_send()
1030 tx_cmd->data_len_hi = qla_host_to_le16(((uint16_t)(total_length >> 8))); in qla_hw_send()
/freebsd-12-stable/contrib/binutils/bfd/
Ddwarf2.c43 bfd_vma total_length; member
1029 lh.total_length = read_4_bytes (abfd, line_ptr); in decode_line_info()
1032 if (lh.total_length == 0xffffffff) in decode_line_info()
1034 lh.total_length = read_8_bytes (abfd, line_ptr); in decode_line_info()
1038 else if (lh.total_length == 0 && unit->addr_size == 8) in decode_line_info()
1041 lh.total_length = read_4_bytes (abfd, line_ptr); in decode_line_info()
1045 line_end = line_ptr + lh.total_length; in decode_line_info()
DChangeLog-0001917 * dwarf2.c (struct line_head) [total_length]: Change type to
/freebsd-12-stable/sys/dev/qlxge/
Dqls_hw.c678 uint32_t total_length = 0; in qls_hw_send() local
685 total_length = mp->m_pkthdr.len; in qls_hw_send()
687 if (total_length > QLA_MAX_TSO_FRAME_SIZE) { in qls_hw_send()
689 __func__, total_length); in qls_hw_send()
730 tx_mac->frame_length = total_length; in qls_hw_send()
736 QL_DPRINT2((dev, "%s: 1 [%d, %d]\n", __func__, total_length, in qls_hw_send()
747 QL_DPRINT2((dev, "%s: 2 [%d, %d]\n", __func__, total_length, in qls_hw_send()
/freebsd-12-stable/sys/dev/ice/
Dice_protocol_type.h227 __be16 total_length; member
/freebsd-12-stable/contrib/subversion/subversion/libsvn_diff/
Ddiff_file.c1030 apr_off_t total_length; in token_compare() local
1050 total_length = file_token[0]->length; in token_compare()
1051 if (total_length == 0) in token_compare()
1073 length[i] = total_length; in token_compare()
1135 total_length -= len; in token_compare()
1141 while(total_length > 0); in token_compare()
/freebsd-12-stable/contrib/tcpdump/
Dprint-bgp.c675 u_int total_length, offset; in bgp_vpn_sg_print() local
677 total_length = 0; in bgp_vpn_sg_print()
685 total_length += (addr_length >> 3) + 1; in bgp_vpn_sg_print()
699 total_length += (addr_length >> 3) + 1; in bgp_vpn_sg_print()
708 return (total_length); in bgp_vpn_sg_print()
Dprint-isoclns.c757 uint8_t total_length[2]; member
889 EXTRACT_16BITS(clnp_segment_header->total_length))); in clnp_print()
/freebsd-12-stable/contrib/gdb/gdb/
Dstabsread.c2160 int total_length = 0; in read_member_functions() local
2557 total_length += has_destructor; in read_member_functions()
2606 total_length += length; in read_member_functions()
2618 TYPE_NFN_FIELDS_TOTAL (type) = total_length; in read_member_functions()
Ddwarf2read.c111 unsigned int total_length; /* byte length of the statement member
268 unsigned int total_length; member
2965 int total_length = 0; in dwarf2_attach_fn_fields_to_type() local
2985 total_length += flp->length; in dwarf2_attach_fn_fields_to_type()
2989 TYPE_NFN_FIELDS_TOTAL (type) = total_length; in dwarf2_attach_fn_fields_to_type()
5227 lh->total_length = read_initial_length (abfd, line_ptr, &cu->header, &bytes_read); in dwarf_decode_line_header()
5229 if (line_ptr + lh->total_length > dwarf_line_buffer + dwarf_line_size) in dwarf_decode_line_header()
5234 lh->statement_program_end = line_ptr + lh->total_length; in dwarf_decode_line_header()
/freebsd-12-stable/sys/dev/qlxgbe/
Dql_hw.c2505 uint32_t total_length = 0, bytes, tx_cmd_count = 0, txr_next; in ql_hw_send() local
2521 total_length = mp->m_pkthdr.len; in ql_hw_send()
2522 if (total_length > QLA_MAX_TSO_FRAME_SIZE) { in ql_hw_send()
2524 __func__, total_length); in ql_hw_send()
2637 tx_cmd->data_len_lo = (uint8_t)(total_length & 0xFF); in ql_hw_send()
2638 tx_cmd->data_len_hi = qla_host_to_le16(((uint16_t)(total_length >> 8))); in ql_hw_send()
/freebsd-12-stable/sys/dev/qlnx/qlnxe/
Decore_sriov.c1378 u16 i = 1, total_length = 0; in ecore_dp_tlv_list() local
1383 tlv = (struct channel_tlv *)((u8 *)tlvs_list + total_length); in ecore_dp_tlv_list()
1405 total_length += tlv->length; in ecore_dp_tlv_list()
1407 if (total_length >= sizeof(struct tlv_buffer_size)) { in ecore_dp_tlv_list()
/freebsd-12-stable/sys/dev/oce/
Doce_hw.h2449 uint32_t total_length:16; member
2475 uint32_t total_length:16;
Doce_if.c1168 nichdr->u0.s.total_length = m->m_pkthdr.len; in oce_tx()