Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/common/dpaax/
H A Dcompat.h331 static inline void copy_bytes(void *dest, const void *src, size_t sz) in copy_bytes() function
342 #define copy_bytes memcpy macro
/f-stack/freebsd/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_arm.c1376 int copy_bytes; in vchiq_dump() local
1385 copy_bytes = min(len, (int)(context->space - context->actual)); in vchiq_dump()
1386 if (copy_bytes == 0) in vchiq_dump()
1388 memcpy(context->buf + context->actual, str, copy_bytes); in vchiq_dump()
1389 context->actual += copy_bytes; in vchiq_dump()
1390 len -= copy_bytes; in vchiq_dump()
1395 if ((len == 0) && (str[copy_bytes - 1] == '\0')) { in vchiq_dump()