Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/
H A D0013-eglibc-Forward-port-cross-locale-generation-support.patch244 - from_len += wcslen ((const wchar_t *) sorted[cnt]->from) + 1;
245 + from_len += wcslen_uint32 (sorted[cnt]->from) + 1;
255 ctype->translit_from_idx[cnt] = from_len;
259 - wmemcpy ((wchar_t *) &ctype->translit_from_tbl[from_len],
262 + wmemcpy_uint32 (&ctype->translit_from_tbl[from_len],
264 from_len += len;
/openbmc/linux/net/xdp/
H A Dxsk.c200 u32 *from_len, skb_frag_t **frag, u32 rem) in xsk_copy_xdp() argument
205 u32 copy_len = min_t(u32, *from_len, to_len); in xsk_copy_xdp()
212 if (*from_len == copy_len) { in xsk_copy_xdp()
214 *from_len = skb_frag_size((*frag)++); in xsk_copy_xdp()
217 *from_len -= copy_len; in xsk_copy_xdp()
231 u32 from_len, meta_len, rem, num_desc; in __xsk_rcv() local
236 from_len = xdp->data_end - copy_from; in __xsk_rcv()
284 copied = xsk_copy_xdp(copy_to, &copy_from, to_len, &from_len, &frag, rem); in __xsk_rcv()