Searched defs:src (Results 1 – 10 of 10) sorted by relevance
/DragonOS-0.1.2/kernel/src/libs/ |
D | string.c | 11 char *strcpy(char *dst, const char *src) in strcpy() 22 long strnlen(const char *src, unsigned long maxlen) in strnlen() 65 char *strncpy(char *dst, const char *src, long count) in strncpy() 84 long strncpy_from_user(char *dst, const char *src, unsigned long size) in strncpy_from_user() 99 long strnlen_user(const char *src, unsigned long maxlen) in strnlen_user() 117 char *strcat(char *dest, const char *src) in strcat()
|
D | glib.c | 38 void *memmove(void *dst, const void *src, uint64_t size) in memmove()
|
D | unistd.c | 24 void swab(void *restrict src, void *restrict dest, ssize_t nbytes) in swab()
|
D | lz4.c | 330 #define LZ4_memcpy(dst, src, size) memcpy(dst, src, size) argument 1628 const char *const src, in LZ4_compress_generic() 1712 int LZ4_compress_fast_extState_fastReset(void *state, const char *src, char *dst, int srcSize, int … in LZ4_compress_fast_extState_fastReset() 1785 int LZ4_compress_default(const char *src, char *dst, int srcSize, int maxOutputSize) in LZ4_compress_default() 1793 static int LZ4_compress_destSize_extState(LZ4_stream_t *state, const char *src, char *dst, int *src… in LZ4_compress_destSize_extState() 1817 int LZ4_compress_destSize(const char *src, char *dst, int *srcSizePtr, int targetDstSize) in LZ4_compress_destSize() 2218 const char *const src, in LZ4_decompress_generic() 2816 int LZ4_decompress_safe_partial(const char *src, char *dst, int compressedSize, int targetOutputSiz… in LZ4_decompress_safe_partial() 3096 int LZ4_compress(const char *src, char *dest, int srcSize) in LZ4_compress() 3100 int LZ4_compress_limitedOutput_withState(void *state, const char *src, char *dst, int srcSize, int … in LZ4_compress_limitedOutput_withState() [all …]
|
/DragonOS-0.1.2/user/libs/libc/src/ |
D | string.c | 68 char *strncpy(char *dst, const char *src, size_t Count) in strncpy() 94 char *strcat(char *dest, const char *src) in strcat() 107 char *strcpy(char *dst, const char *src) in strcpy()
|
D | string.h | 59 static void *memcpy(void *dst, const void *src, long Num) in memcpy()
|
D | unistd.c | 181 void swab(void *restrict src, void *restrict dest, ssize_t nbytes) in swab()
|
/DragonOS-0.1.2/kernel/src/common/ |
D | compiler.h | 49 static __always_inline void __read_once_size(void *dst, const volatile void *src, int size) in __read_once_size() 80 static __always_inline void __write_once_size(volatile void *dst, void *src, int size) in __write_once_size()
|
D | glib.h | 110 static void *memcpy(void *dst, const void *src, long Num) in memcpy() 217 static inline uint64_t copy_from_user(void *dst, void *src, uint64_t size) in copy_from_user() 246 static inline uint64_t copy_to_user(void *dst, void *src, uint64_t size) in copy_to_user()
|
/DragonOS-0.1.2/docs/kernel/core_api/ |
D | kernel_api.md | 461 ##### 描述 465 ##### 参数 477 ##### 描述 483 ##### 参数 513 #### `char *strcpy(char *dst, const char *src)` 515 ##### 描述 519 ##### 参数 531 ##### 描述 537 ##### 参数 677 #### `void *memmove(void *dst, const void *src, uint64_t size)` [all …]
|