Home
last modified time | relevance | path

Searched refs:mem_len (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c821 smb_mbc_put_mem(mbuf_chain_t *mbc, void *vmem, int mem_len) in smb_mbc_put_mem() argument
828 if (mem_len <= 0) in smb_mbc_put_mem()
831 if ((rc = mbc_marshal_make_room(mbc, mem_len)) != 0) in smb_mbc_put_mem()
851 if (tlen > mem_len) in smb_mbc_put_mem()
852 tlen = mem_len; in smb_mbc_put_mem()
856 mem_len -= tlen; in smb_mbc_put_mem()
863 while (mem_len > 0) { in smb_mbc_put_mem()
866 if (tlen > mem_len) in smb_mbc_put_mem()
867 tlen = mem_len; in smb_mbc_put_mem()
871 mem_len -= tlen; in smb_mbc_put_mem()
/titanic_41/usr/src/cmd/latencytop/common/
H A Dtable.c138 read_line_from_mem(const char *mem, int mem_len, char *line, int line_len, in read_line_from_mem() argument
143 if (line_len <= 0 || mem_len <= 0) { in read_line_from_mem()
147 if (*index >= mem_len) { in read_line_from_mem()
151 while (line_len > 1 && *index < mem_len) { in read_line_from_mem()
/titanic_41/usr/src/uts/common/io/idm/
H A Didm_text.c220 static void textbuf_memcpy(idm_textbuf_t *itb, void *mem, int mem_len);
1024 textbuf_memcpy(idm_textbuf_t *itb, void *mem, int mem_len) in textbuf_memcpy() argument
1026 textbuf_makeroom(itb, mem_len); in textbuf_memcpy()
1027 (void) memcpy(itb->itb_mem + itb->itb_offset, mem, mem_len); in textbuf_memcpy()
1028 itb->itb_offset += mem_len; in textbuf_memcpy()
/titanic_41/usr/src/uts/common/sys/fibre-channel/fca/qlge/
H A Dqlge.h204 size_t mem_len; /* allocated size */ member
212 (area).offset, (area).mem_len, (flag)))
223 #define DMA_ZERO(area) bzero(DMA_VPTR(area), (area).mem_len)
/titanic_41/usr/src/uts/common/io/fibre-channel/fca/qlge/
H A Dqlge.c3154 alloc_size = qlge->ioctl_buf_dma_attr.mem_len = in ql_alloc_ioctl_dma_buf()