Home
last modified time | relevance | path

Searched refs:nbytes (Results 1 – 25 of 27) sorted by relevance

12

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/generic/
A Dmemcopy.h76 #define BYTE_COPY_FWD(dst_bp, src_bp, nbytes) \ argument
79 size_t __nbytes = (nbytes); \
94 #define BYTE_COPY_BWD(dst_ep, src_ep, nbytes) \ argument
97 size_t __nbytes = (nbytes); \
119 _wordcopy_fwd_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
122 src_bp += (nbytes) & -OPSIZ; \
123 dst_bp += (nbytes) & -OPSIZ; \
124 (nbytes_left) = (nbytes) % OPSIZ; \
142 src_ep -= (nbytes) & -OPSIZ; \
143 dst_ep -= (nbytes) & -OPSIZ; \
[all …]
A Dpagecopy.h46 #define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) \ argument
49 if ((nbytes) >= PAGE_COPY_THRESHOLD && \
61 nbytes -= nbytes_before; \
63 PAGE_COPY_FWD (dstp, srcp, nbytes_left, nbytes); \
72 #define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) /* nada */ argument
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/string/cris/
A Dmemcopy.h33 #define WORD_COPY_FWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
36 unsigned long enddst_bp = dst_bp + nbytes - (nbytes % OPSIZ); \
37 nbytes_left = (nbytes % OPSIZ); \
48 #define WORD_COPY_BWD(dst_bp, src_bp, nbytes_left, nbytes) \ argument
51 unsigned long enddst_bp = dst_bp - nbytes + (nbytes % OPSIZ); \
52 nbytes_left = (nbytes % OPSIZ); \
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dsync_file_range.c23 static int __NC(sync_file_range)(int fd, off64_t offset, off64_t nbytes, unsigned int flags) in __NC()
26 return INLINE_SYSCALL(sync_file_range, 4, fd, offset, nbytes, flags); in __NC()
29 OFF64_HI_LO(offset), OFF64_HI_LO(nbytes), flags); in __NC()
32 OFF64_HI_LO(offset), OFF64_HI_LO(nbytes), flags); in __NC()
35 …, sync_file_range, (int fd, off64_t offset, off64_t nbytes, unsigned int flags), (fd, offset, nbyt…
A Dgetdents.c48 ssize_t __getdents (int fd, char *buf, size_t nbytes) in _syscall3()
52 retval = __syscall_getdents(fd, (unsigned char *)buf, nbytes); in _syscall3()
84 ssize_t __getdents (int fd, char *buf, size_t nbytes)
95 red_nbytes = MIN (nbytes - ((nbytes /
97 nbytes - size_diff);
106 skdp = kdp = stack_heap_alloc(nbytes);
108 retval = INLINE_SYSCALL(getdents64, 3, fd, (unsigned char *)kdp, nbytes);
129 if ((char *) dp + new_reclen > buf + nbytes) {
163 ssize_t __getdents (int fd, char *buf, size_t nbytes)
167 ssize_t ret = __getdents64 (fd, buf, nbytes);
A Dpoll.c84 int nbytes;
87 nbytes = howmany (max_fd_size, __NFDBITS);
89 nrset = alloca (nbytes);
90 nwset = alloca (nbytes);
91 nxset = alloca (nbytes);
93 memset ((char *) nrset + bytes, 0, nbytes - bytes);
94 memset ((char *) nwset + bytes, 0, nbytes - bytes);
95 memset ((char *) nxset + bytes, 0, nbytes - bytes);
101 bytes = nbytes;
A Dgetdents64.c35 ssize_t __getdents64 (int fd, char *buf, size_t nbytes) in _syscall3()
45 red_nbytes = MIN (nbytes - ((nbytes / in _syscall3()
47 nbytes - size_diff); in _syscall3()
64 if ((char *) dp + new_reclen > buf + nbytes) { in _syscall3()
/l4re-core-master/uclibc/lib/uclibc/ARCH-all/libc/sysdeps/linux/common/
A Dgetdents.c47 ssize_t __getdents (int fd, char *buf, size_t nbytes) attribute_hidden;
56 ssize_t __getdents (int fd, char *buf, size_t nbytes) in _syscall3()
60 retval = __syscall_getdents(fd, (unsigned char *)buf, nbytes); in _syscall3()
85 ssize_t __getdents (int fd, char *buf, size_t nbytes)
95 red_nbytes = MIN (nbytes - ((nbytes /
97 nbytes - size_diff);
112 if ((char *) dp + new_reclen > buf + nbytes) {
143 ssize_t __getdents (int fd, char *buf, size_t nbytes)
147 ssize_t ret = __getdents64 (fd, buf, nbytes);
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/mips/sys/
A Dcachectl.h31 extern int cachectl (void *addr, const int nbytes, const int op) __THROW;
34 extern int __cachectl (void *addr, const int nbytes, const int op) __THROW;
37 extern int cacheflush (void *addr, const int nbytes, const int op) __THROW;
39 extern int _flush_cache (char *addr, const int nbytes, const int op) __THROW;
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/
A Dcacheflush.c12 int cacheflush(void *addr, const int nbytes, int op);
13 _syscall3(int, cacheflush, void *, addr, const int, nbytes, const int, op)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/mips/
A Dcacheflush.c22 _syscall3(int, cacheflush, void *, addr, const int, nbytes, const int, op)
28 _syscall3(int, cachectl, void *, addr, const int, nbytes, const int, op)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/
A Dcacheflush.c11 _syscall3(int, cacheflush, void *, addr, int, nbytes, int, op)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/bfin/
A Dcacheflush.c14 _syscall3 (int, cacheflush, void *, addr, const int, nbytes, const int, flags)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/gnu/
A Dobstack.c398 register int nbytes = 0; in _obstack_memory_used() local
402 nbytes += lp->limit - (char *) lp; in _obstack_memory_used()
404 return nbytes; in _obstack_memory_used()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/sys/
A Dcachectl.h17 extern int cacheflush(void *addr, int nbytes, int flags);
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/bfin/sys/
A Dcachectl.h21 extern int cacheflush (void *addr, const int nbytes, const int flags);
/l4re-core-master/uclibc/lib/contrib/uclibc/test/locale-mbwc/
A Dtst_strfmon.c26 nbt = TST_INPUT (strfmon).nbytes; in tst_strfmon()
/l4re-core-master/libc_backends/lib/l4re_file/
A Dfile.cc382 extern "C" ssize_t __getdents64(int fd, char *buf, size_t nbytes);
383 extern "C" ssize_t __getdents64(int fd, char *buf, size_t nbytes) in __getdents64() argument
393 ssize_t r = fdo->getdents(buf, nbytes); in __getdents64()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++11/
A Dcodecvt.cc99 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
154 size_t size() const { return nbytes() / sizeof(Elem); } in size()
157 size_t nbytes() const { return end - next; } in nbytes() function
173 if (to.nbytes() < N) in write_bom()
188 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/
A Dcodecvt.cc99 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
154 size_t size() const { return nbytes() / sizeof(Elem); } in size()
157 size_t nbytes() const { return end - next; } in nbytes() function
173 if (to.nbytes() < N) in write_bom()
188 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/
A Dcodecvt.cc99 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
154 size_t size() const { return nbytes() / sizeof(Elem); } in size()
157 size_t nbytes() const { return end - next; } in nbytes() function
173 if (to.nbytes() < N) in write_bom()
188 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/
A Dcodecvt.cc99 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
154 size_t size() const { return nbytes() / sizeof(Elem); } in size()
157 size_t nbytes() const { return end - next; } in nbytes() function
173 if (to.nbytes() < N) in write_bom()
188 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++11/
A Dcodecvt.cc98 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
153 size_t size() const { return nbytes() / sizeof(Elem); } in size()
156 size_t nbytes() const { return end - next; } in nbytes() function
172 if (to.nbytes() < N) in write_bom()
187 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/
A Dcodecvt.cc98 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
153 size_t size() const { return nbytes() / sizeof(Elem); } in size()
156 size_t nbytes() const { return end - next; } in nbytes() function
172 if (to.nbytes() < N) in write_bom()
187 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++11/
A Dcodecvt.cc98 size_t nbytes() const { return (const char*)end - (const char*)next; } in nbytes() function
153 size_t size() const { return nbytes() / sizeof(Elem); } in size()
156 size_t nbytes() const { return end - next; } in nbytes() function
172 if (to.nbytes() < N) in write_bom()
187 if (from.nbytes() >= N && !memcmp(from.next, bom, N)) in read_bom()

Completed in 61 milliseconds

12