Searched refs:count (Results 26 - 50 of 2328) sorted by relevance

1234567891011>>

/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_open/
H A Ddo-plot40 count=1
41 while [ $count -le $columns ]
43 column[$count]=$(echo $cols | awk -vcount=$count '{print $(2 + count);}')
44 if [ -z "${column[$count]}" ]
46 column[$count]=$count;
48 count=$(($count
[all...]
/haiku-fatelf/src/tools/fs_shell/
H A Duio.cpp26 prepare_iovecs(const struct fssh_iovec *vecs, fssh_size_t count, argument
29 if (count > kMaxIOVecs) {
34 for (fssh_size_t i = 0; i < count; i++) {
44 fssh_readv(int fd, const struct fssh_iovec *vector, fssh_size_t count) argument
47 if (!prepare_iovecs(vector, count, systemVecs))
56 return readv(fd, systemVecs, count);
58 return readv_pos(fd, lseek(fd, 0, SEEK_CUR), systemVecs, count);
65 fssh_size_t count)
68 if (!prepare_iovecs(vec, count, systemVecs))
75 return readv_pos(fd, pos, systemVecs, count);
64 fssh_readv_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, fssh_size_t count) argument
80 fssh_writev(int fd, const struct fssh_iovec *vector, fssh_size_t count) argument
100 fssh_writev_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, fssh_size_t count) argument
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfull-read.h24 extern size_t full_read (int fd, void *buf, size_t count);
H A Dfull-write.h29 extern size_t full_write (int fd, const void *buf, size_t count);
H A Dsafe-write.h24 extern size_t safe_write (int fd, const void *buf, size_t count);
/haiku-fatelf/src/system/libroot/posix/string/arch/generic/
H A Dmemset.c11 memset(void *s, int c, size_t count) argument
15 while (count--)
/haiku-fatelf/src/system/libroot/posix/string/
H A Dmemcmp.c11 memcmp(const void *_a, const void *_b, size_t count) argument
16 while (count-- > 0) {
H A Dbcopy.c14 void *bcopy(void const *src, void *dest, size_t count);
17 bcopy(void const *src, void *dest, size_t count) argument
19 return memmove(dest, src, count);
/haiku-fatelf/src/system/libroot/posix/wchar/
H A Dwmemchr.c10 __wmemchr(const wchar_t* dest, const wchar_t wc, size_t count) argument
12 while (count-- > 0) {
H A Dwmemcpy.c12 __wmemcpy(wchar_t* dest, const wchar_t* src, size_t count) argument
14 return memcpy(dest, src, count * sizeof(wchar_t));
H A Dwmemmove.c12 __wmemmove(wchar_t* dest, const wchar_t* src, size_t count) argument
14 return memmove(dest, src, count * sizeof(wchar_t));
H A Dwmemset.c10 __wmemset(wchar_t* destIn, const wchar_t wc, size_t count) argument
13 while (count-- > 0)
H A Dwmempcpy.c12 __wmempcpy(wchar_t* dest, const wchar_t* src, size_t count) argument
14 memcpy(dest, src, count * sizeof(wchar_t));
16 return dest + count;
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dtext.c236 The first is a count: the numeric arg pased to this command.
253 rl_forward_byte (count, key)
254 int count, key;
256 if (count < 0)
257 return (rl_backward_byte (-count, key));
259 if (count > 0)
261 int end = rl_point + count;
286 rl_forward_char (count, key)
287 int count, key;
292 return (rl_forward_byte (count, ke
882 int count; local
[all...]
H A Dkill.c201 rl_kill_word (count, key)
202 int count, key;
206 if (count < 0)
207 return (rl_backward_kill_word (-count, key));
211 rl_forward_word (count, key);
225 rl_backward_kill_word (count, ignore)
226 int count, ignore;
230 if (count < 0)
231 return (rl_kill_word (-count, ignore));
235 rl_backward_word (count, ignor
[all...]
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_uio.h23 fssh_size_t count);
25 fssh_iovec *vec, fssh_size_t count);
27 fssh_size_t count);
29 const struct fssh_iovec *vec, fssh_size_t count);
/haiku-fatelf/src/add-ons/kernel/bus_managers/config_manager/arch/arm/
H A Dconfig_manager_arch.c14 int config_manager_scan_hardcoded(struct device_info **info, int32 *count) argument
/haiku-fatelf/src/add-ons/kernel/bus_managers/config_manager/arch/ppc/
H A Dconfig_manager_arch.c14 int config_manager_scan_hardcoded(struct device_info **info, int32 *count) argument
/haiku-fatelf/src/add-ons/kernel/bus_managers/config_manager/arch/x86/
H A Dconfig_manager_arch.c14 int config_manager_scan_hardcoded(struct device_info **info, int32 *count) argument
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dsbscan.cc33 int count = _IO_vfscanf(this, fmt0, ap, &errcode); local
36 return count;
42 int count = _IO_vfscanf(this, format, ap, NULL); local
44 return count;
/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Diofread_u.c34 fread_unlocked (buf, size, count, fp)
37 _IO_size_t count;
40 _IO_size_t bytes_requested = size * count;
46 return bytes_requested == bytes_read ? count : bytes_read / size;
H A Diofwrite_u.c34 fwrite_unlocked (buf, size, count, fp)
37 _IO_size_t count;
40 _IO_size_t request = size * count;
49 return count;
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmemcmp.c6 @deftypefn Supplemental int memcmp (const void *@var{x}, const void *@var{y}, size_t @var{count})
8 Compares the first @var{count} bytes of two areas of memory. Returns
26 memcmp (str1, str2, count)
29 size_t count;
34 while (count-- > 0)
/haiku-fatelf/src/libs/ncurses/ncurses/base/
H A Dkeybound.c38 * Returns the count'th string definition which is associated with the
43 keybound(int code, int count) argument
47 T((T_CALLED("keybound(%d,%d)"), code, count));
49 result = _nc_expand_try(SP->_keytry, code, &count, 0);
/haiku-fatelf/src/bin/gdb/readline/
H A Dtext.c228 The first is a count: the numeric arg pased to this command.
245 rl_forward_byte (count, key)
246 int count, key;
248 if (count < 0)
249 return (rl_backward_byte (-count, key));
251 if (count > 0)
253 int end = rl_point + count;
278 rl_forward_char (count, key)
279 int count, key;
284 return (rl_forward_byte (count, ke
[all...]

Completed in 119 milliseconds

1234567891011>>