Lines Matching refs:dst
21 NJ_CHAR *nj_strcpy(NJ_CHAR *dst, NJ_CHAR *src) { in nj_strcpy() argument
23 NJ_CHAR *ret = dst; in nj_strcpy()
27 *dst++ = *src++; in nj_strcpy()
29 *dst = *src; in nj_strcpy()
33 NJ_CHAR *nj_strncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) { in nj_strncpy() argument
35 NJ_CHAR *d = dst; in nj_strncpy()
50 return dst; in nj_strncpy()
122 NJ_CHAR *nj_charncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) { in nj_charncpy() argument
124 NJ_CHAR *d = dst; in nj_charncpy()
132 return dst; in nj_charncpy()
140 return dst; in nj_charncpy()
143 NJ_UINT8 *nj_memcpy(NJ_UINT8 *dst, NJ_UINT8 *src, NJ_UINT16 n) { in nj_memcpy() argument
145 NJ_UINT8 *d = dst; in nj_memcpy()
152 return dst; in nj_memcpy()