Home
last modified time | relevance | path

Searched defs:buf (Results 1 – 25 of 132) sorted by relevance

123456

/third_party/ulib/musl/src/stat/
A Dstatvfs.c6 int __statfs(const char* path, struct statfs* buf) { in __statfs()
12 int __fstatfs(int fd, struct statfs* buf) { in __fstatfs()
36 int statvfs(const char* restrict path, struct statvfs* restrict buf) { in statvfs()
44 int fstatvfs(int fd, struct statvfs* buf) { in fstatvfs()
/third_party/ulib/musl/src/mman/
A Dshm_open.c10 char* __shm_mapname(const char* name, char* buf) { in __shm_mapname()
29 char buf[NAME_MAX + 10]; in shm_open() local
36 char buf[NAME_MAX + 10]; in shm_unlink() local
/third_party/ulib/cksum/
A Dadler32.c16 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} argument
17 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1); argument
18 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2); argument
19 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4); argument
20 #define DO16(buf) DO8(buf,0); DO8(buf,8); argument
63 uint32_t ZEXPORT adler32(uint32_t adler, const uint8_t* buf, size_t len) in adler32()
A Dcrc16.c20 uint16_t update_crc16(uint16_t crc, const uint8_t *buf, size_t length) in update_crc16()
38 uint16_t crc16(const uint8_t *buf, size_t length) in crc16()
/third_party/ulib/jemalloc/test/integration/
A Dthread_arena.c21 char buf[BUFERROR_BUF]; in thd_start() local
30 char buf[BUFERROR_BUF]; in thd_start() local
56 char buf[BUFERROR_BUF]; in TEST_BEGIN() local
/third_party/ulib/musl/src/passwd/
A Dgetpw_r.c5 static int getpw_r(const char* name, uid_t uid, struct passwd* pw, char* buf, size_t size, in getpw_r()
28 int getpwnam_r(const char* name, struct passwd* pw, char* buf, size_t size, struct passwd** res) { in getpwnam_r()
32 int getpwuid_r(uid_t uid, struct passwd* pw, char* buf, size_t size, struct passwd** res) { in getpwuid_r()
A Dgetgr_r.c5 static int getgr_r(const char* name, gid_t gid, struct group* gr, char* buf, size_t size, in getgr_r()
35 int getgrnam_r(const char* name, struct group* gr, char* buf, size_t size, struct group** res) { in getgrnam_r()
39 int getgrgid_r(gid_t gid, struct group* gr, char* buf, size_t size, struct group** res) { in getgrgid_r()
/third_party/ulib/musl/src/stdio/
A Dvswscanf.c5 static size_t wstring_read(FILE* f, unsigned char* buf, size_t len) { in wstring_read()
30 unsigned char buf[256]; in vswscanf() local
A Dfmemopen.c8 unsigned char* buf; member
26 static size_t mread(FILE* f, unsigned char* buf, size_t len) { in mread()
47 static size_t mwrite(FILE* f, const unsigned char* buf, size_t len) { in mwrite()
77 FILE* fmemopen(void* restrict buf, size_t size, const char* restrict mode) { in fmemopen()
A Dopen_memstream.c10 char* buf; member
29 static size_t ms_write(FILE* f, const unsigned char* buf, size_t len) { in ms_write()
62 char* buf; in open_memstream() local
A Dopen_wmemstream.c11 wchar_t* buf; member
32 static size_t wms_write(FILE* f, const unsigned char* buf, size_t len) { in wms_write()
65 wchar_t* buf; in open_wmemstream() local
A Dsetbuf.c3 void setbuf(FILE* restrict f, char* restrict buf) { in setbuf()
A Dstderr.c3 static unsigned char buf[UNGET]; variable
A Dstdin.c3 static unsigned char buf[BUFSIZ + UNGET]; variable
A Dstdout.c3 static unsigned char buf[BUFSIZ + UNGET]; variable
A D__stdout_write.c4 size_t __stdout_write(FILE* f, const unsigned char* buf, size_t len) { in __stdout_write()
/third_party/ulib/linenoise/
A Dexample.c7 void completion(const char *buf, linenoiseCompletions *lc) { in completion()
14 char *hints(const char *buf, int *color, int *bold) { in hints()
/third_party/ulib/ngunwind/src/mi/
A DGget_proc_name.c31 unw_word_t addr, char *buf, size_t buf_len, void *arg) in intern_string()
50 char *buf, size_t buf_len, unw_word_t *offp, void *arg) in get_proc_name()
99 unw_get_proc_name (unw_cursor_t *cursor, char *buf, size_t buf_len, in unw_get_proc_name()
/third_party/ulib/musl/src/time/
A D__asctime.c7 char* __asctime(const struct tm* restrict tm, char* restrict buf) { in __asctime()
A Dasctime.c4 static char buf[26]; in asctime() local
A Dasctime_r.c3 char* asctime_r(const struct tm* restrict tm, char* restrict buf) { in asctime_r()
A Dctime_r.c3 char* ctime_r(const time_t* t, char* buf) { in ctime_r()
/third_party/uapp/dash/src/bltin/
A Dtimes.c16 struct tms buf; in timescmd() local
/third_party/ulib/jemalloc/src/
A Dutil.c87 buferror(int err, char *buf, size_t buflen) in buferror()
505 char buf[D2S_BUFSIZE]; in malloc_vsnprintf() local
515 char buf[O2S_BUFSIZE]; in malloc_vsnprintf() local
524 char buf[U2S_BUFSIZE]; in malloc_vsnprintf() local
533 char buf[X2S_BUFSIZE]; in malloc_vsnprintf() local
542 char buf[2]; in malloc_vsnprintf() local
562 char buf[X2S_BUFSIZE]; in malloc_vsnprintf() local
609 char buf[MALLOC_PRINTF_BUFSIZE]; in malloc_vcprintf() local
/third_party/ulib/musl/src/crypt/
A Dcrypt.c13 static char buf[128]; in crypt() local

Completed in 34 milliseconds

123456