/DragonOS-0.1.8/docs/userland/libc/apis/api-list/ |
D | string.md | 9 ``size_t strlen(const char *s)`` : 返回字符串长度 13 ``char* strncpy(char *dst,const char *src,size_t count)``
|
D | unistd.md | 11 ``ssize_t read(int fd,void *buf,size_t count)`` : 从文件读取 17 ``ssize_t write(int fd,void const *buf,size_t count)`` : 写入文件
|
/DragonOS-0.1.8/user/libs/libc/src/include/export/ |
D | string.h | 16 size_t strlen(const char *s); 35 char *strncpy(char *dst, const char *src, size_t Count);
|
D | unistd.h | 25 ssize_t read(int fd, void *buf, size_t count); 35 ssize_t write(int fd, void const *buf, size_t count);
|
/DragonOS-0.1.8/user/libs/libc/src/ |
D | string.c | 3 size_t strlen(const char *s) in strlen() 68 char *strncpy(char *dst, const char *src, size_t Count) in strncpy()
|
D | unistd.c | 28 ssize_t read(int fd, void *buf, size_t count) in read() 41 ssize_t write(int fd, void const *buf, size_t count) in write()
|
/DragonOS-0.1.8/kernel/src/common/ |
D | crc32.h | 12 uint32_t crc32(uint32_t crc, const uint8_t *buffer, size_t len);
|
D | crc64.h | 12 uint64_t crc64(uint64_t crc, const uint8_t *buffer, size_t len);
|
D | crc7.h | 12 uint8_t crc7(uint8_t crc, const uint8_t *buffer, size_t len);
|
D | crc8.h | 12 uint8_t crc8(uint8_t crc, const uint8_t *buffer, size_t len);
|
D | crc16.h | 12 uint16_t crc16(uint16_t crc, const uint8_t *buffer, size_t len);
|
D | string.h | 64 static inline int memcmp(const void *s1, const void *s2, size_t len) in memcmp()
|
D | lz4.h | 595 size_t extDictSize; 597 size_t prefixSize; 632 LZ4LIB_API LZ4_stream_t *LZ4_initStream(void *buffer, size_t size);
|
D | glib.h | 92 void *memset_c(void *dst, uint8_t c, size_t count) in memset_c()
|
/DragonOS-0.1.8/kernel/src/libs/ |
D | lz4.c | 197 void *LZ4_malloc(size_t s); 198 void *LZ4_calloc(size_t n, size_t s); 276 static int LZ4_isAligned(const void *ptr, size_t alignment) in LZ4_isAligned() 278 return ((size_t)ptr & (alignment - 1)) == 0; in LZ4_isAligned() 302 typedef size_t uptrval; /* generally true, except OpenVMS-64 */ 308 typedef size_t reg_t; /* 32-bits in x32 mode */ 467 LZ4_memcpy_using_offset_base(BYTE *dstPtr, const BYTE *srcPtr, BYTE *dstEnd, const size_t offset) in LZ4_memcpy_using_offset_base() 515 LZ4_memcpy_using_offset(BYTE *dstPtr, const BYTE *srcPtr, BYTE *dstEnd, const size_t offset) in LZ4_memcpy_using_offset() 908 const void *dictStart, size_t dictSize); 1426 ip += (size_t)matchCode + MINMATCH; in LZ4_compress_generic_validated() [all …]
|
D | crc8.c | 33 uint8_t crc8(uint8_t crc, uint8_t const *buffer, size_t len) in crc8()
|
D | crc7.c | 31 uint8_t crc7(uint8_t crc, const uint8_t *buffer, size_t len) in crc7()
|
D | crc16.c | 34 uint16_t crc16(uint16_t crc, uint8_t const *buffer, size_t len) in crc16()
|
D | crc32.c | 49 uint32_t crc32(uint32_t crc, uint8_t const *buffer, size_t len) in crc32()
|
D | crc64.c | 50 uint64_t crc64(uint64_t crc, uint8_t const *buffer, size_t len) in crc64()
|
/DragonOS-0.1.8/kernel/src/mm/ |
D | slab.h | 21 extern void *kzalloc(size_t size, gfp_t gfp);
|
/DragonOS-0.1.8/user/libs/libc/src/include/export/sys/ |
D | types.h | 16 typedef __SIZE_TYPE__ size_t; typedef
|
/DragonOS-0.1.8/docs/kernel/core_api/ |
D | kernel_api.md | 701 **`uint8_t crc7(uint8_t crc, const uint8_t *buffer, size_t len)`** 703 **`uint8_t crc8(uint8_t crc, const uint8_t *buffer, size_t len)`** 705 **`uint16_t crc16(uint16_t crc, uint8_t const *buffer, size_t len)`** 707 **`uint32_t crc32(uint32_t crc, uint8_t const *buffer, size_t len)`** 709 **`uint64_t crc64(uint64_t crc, uint8_t const *buffer, size_t len)`**
|
/DragonOS-0.1.8/kernel/src/common/sys/ |
D | types.h | 16 typedef __SIZE_TYPE__ size_t; typedef
|