Searched refs:bytes_len (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/bmake/ |
H A D | buf.c | 90 Buf_AddBytes(Buffer *buf, const char *bytes, size_t bytes_len) in Buf_AddBytes() argument 95 if (old_len + bytes_len >= buf->cap) { in Buf_AddBytes() 96 size_t minIncr = bytes_len + 16; in Buf_AddBytes() 102 buf->len = old_len + bytes_len; in Buf_AddBytes() 103 memcpy(end, bytes, bytes_len); in Buf_AddBytes() 104 end[bytes_len] = '\0'; in Buf_AddBytes()
|
/freebsd/contrib/elftoolchain/libdwarf/ |
H A D | dwarf_loclist.c | 227 Dwarf_Unsigned bytes_len, Dwarf_Locdesc **llbuf, Dwarf_Signed *listlen, in dwarf_loclist_from_expr() argument 231 return (dwarf_loclist_from_expr_a(dbg, bytes_in, bytes_len, in dwarf_loclist_from_expr() 237 Dwarf_Unsigned bytes_len, Dwarf_Half addr_size, Dwarf_Locdesc **llbuf, in dwarf_loclist_from_expr_a() argument 264 return (dwarf_loclist_from_expr_b(dbg, bytes_in, bytes_len, addr_size, in dwarf_loclist_from_expr_a() 270 Dwarf_Unsigned bytes_len, Dwarf_Half addr_size, Dwarf_Half offset_size, in dwarf_loclist_from_expr_b() argument 277 if (dbg == NULL || bytes_in == NULL || bytes_len == 0 || in dwarf_loclist_from_expr_b() 293 ret = _dwarf_loc_fill_locexpr(dbg, &ld, bytes_in, bytes_len, addr_size, in dwarf_loclist_from_expr_b()
|
/freebsd/contrib/tcpdump/ |
H A D | print-radius.c | 102 #define PRINT_HEX(bytes_len, ptr_data) \ argument 103 while(bytes_len) \ 107 bytes_len--; \
|
/freebsd/sys/dev/qlnx/qlnxr/ |
H A D | qlnxr_cm.c | 651 qp->wqe_wr_id[qp->sq.prod].bytes_len = IB_GRH_BYTES; //RDMA_GRH_BYTES in qlnxr_gsi_build_packet() 655 qp->wqe_wr_id[qp->sq.prod].bytes_len += in qlnxr_gsi_build_packet()
|
H A D | qlnxr_def.h | 662 u32 bytes_len; member
|
H A D | qlnxr_verbs.c | 4351 qp->wqe_wr_id[qp->sq.prod].bytes_len = swqe->length; in qlnxr_post_send() 4372 qp->wqe_wr_id[qp->sq.prod].bytes_len = swqe->length; in qlnxr_post_send() 4392 qp->wqe_wr_id[qp->sq.prod].bytes_len = swqe->length; in qlnxr_post_send() 4411 qp->wqe_wr_id[qp->sq.prod].bytes_len = rwqe->length; in qlnxr_post_send() 4431 qp->wqe_wr_id[qp->sq.prod].bytes_len = rwqe->length; in qlnxr_post_send() 4462 qp->wqe_wr_id[qp->sq.prod].bytes_len = rwqe->length; in qlnxr_post_send() 4794 wc->byte_len = qp->wqe_wr_id[qp->sq.cons].bytes_len; in process_req() 4798 qp->wqe_wr_id[qp->sq.cons].bytes_len); in process_req()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunication.cpp | 691 const size_t bytes_len = m_bytes.size(); in CheckForPacket() local 694 for (idx = 1; !done && idx < bytes_len; ++idx) { in CheckForPacket()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/ |
H A D | DisassemblerLLVMC.cpp | 251 /// \param[in] bytes_len 263 InstructionLengthDecode(const uint8_t *inst_bytes, int bytes_len, in InstructionLengthDecode() 274 if (op_idx >= bytes_len) in InstructionLengthDecode() 258 InstructionLengthDecode(const uint8_t * inst_bytes,int bytes_len,bool is_exec_mode_64b) InstructionLengthDecode() argument
|