Home
last modified time | relevance | path

Searched refs:e_len (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/drivers/common/cpt/
H A Dcpt_ucode.h373 uint32_t e_len; in fill_sg_comp_from_buf_min() local
376 to->u.s.len[i % 4] = rte_cpu_to_be_16(e_len); in fill_sg_comp_from_buf_min()
378 *psize -= e_len; in fill_sg_comp_from_buf_min()
402 uint32_t e_len; in fill_sg_comp_from_iov() local
416 e_len = (size > bufs[j].size) ? in fill_sg_comp_from_iov()
420 to->u.s.len[i % 4] = rte_cpu_to_be_16(e_len); in fill_sg_comp_from_iov()
423 if (extra_len && (e_len >= extra_offset)) { in fill_sg_comp_from_iov()
425 uint32_t next_len = e_len - extra_offset; in fill_sg_comp_from_iov()
431 e_len = extra_offset; in fill_sg_comp_from_iov()
432 size -= e_len; in fill_sg_comp_from_iov()
[all …]
/f-stack/app/redis-5.0.5/src/
H A Dt_stream.c294 int64_t e_len; in streamAppendItem() local
296 unsigned char *e = lpGet(lp_ele,&e_len,buf); in streamAppendItem()
298 if (sdslen(field) != (size_t)e_len || in streamAppendItem()
299 memcmp(e,field,e_len) != 0) break; in streamAppendItem()