Lines Matching full:src
128 * @param src pointer to the source buffer
131 static inline void * lv_memcpy(void * dst, const void * src, size_t len) in lv_memcpy() argument
133 return memcpy(dst, src, len); in lv_memcpy()
139 * @param src pointer to the source buffer
142 static inline void * lv_memcpy_small(void * dst, const void * src, size_t len) in lv_memcpy_small() argument
144 return memcpy(dst, src, len); in lv_memcpy_small()
182 * @param src pointer to the source buffer
185 void * /* LV_ATTRIBUTE_FAST_MEM */ lv_memcpy(void * dst, const void * src, size_t len);
190 * @param src pointer to the source buffer
193 static inline void * LV_ATTRIBUTE_FAST_MEM lv_memcpy_small(void * dst, const void * src, size_t len) in lv_memcpy_small() argument
196 const uint8_t * s8 = (const uint8_t *)src; in lv_memcpy_small()