Searched defs:mem_len (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/latencytop/common/
H A Dtable.c138 read_line_from_mem(const char *mem, int mem_len, char *line, int line_len, argument
143 if (line_len <= 0 || mem_len <= 0) {
147 if (*index >= mem_len) {
151 while (line_len > 1 && *index < mem_len) {
/illumos-gate/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) argument
1026 textbuf_makeroom(itb, mem_len);
1027 (void) memcpy(itb->itb_mem + itb->itb_offset, mem, mem_len);
1028 itb->itb_offset += mem_len;
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c866 smb_mbc_put_mem(mbuf_chain_t *mbc, void *vmem, int mem_len) argument
873 if (mem_len <= 0)
876 if ((rc = mbc_marshal_make_room(mbc, mem_len)) != 0)
896 if (tlen > mem_len)
897 tlen = mem_len;
901 mem_len -= tlen;
908 while (mem_len > 0) {
911 if (tlen > mem_len)
912 tlen = mem_len;
916 mem_len
[all...]
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/qlge/
H A Dqlge.h204 size_t mem_len; /* allocated size */ member in struct:dma_info
212 (area).offset, (area).mem_len, (flag)))
223 #define DMA_ZERO(area) bzero(DMA_VPTR(area), (area).mem_len)

Completed in 71 milliseconds