Searched refs:count (Results 1 - 25 of 1779) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/drivers/timer/
H A Dint.h12 status_t reserve_io_interrupt_vectors(long count, long startVector);
13 status_t allocate_io_interrupt_vectors(long count, long *startVector);
14 void free_io_interrupt_vectors(long count, long startVector);
/haiku/src/add-ons/media/plugins/raw_decoder/
H A DAudioConversion.h30 void uint8_to_uint8(void *dst, const void *src, int32 count);
31 void uint8_to_int8(void *dst, const void *src, int32 count);
32 void uint8_to_int16(void *dst, const void *src, int32 count);
33 void uint8_to_int32(void *dst, const void *src, int32 count);
34 void uint8_to_float32(void *dst, const void *src, int32 count);
36 void int8_to_uint8(void *dst, const void *src, int32 count);
37 void int8_to_int8(void *dst, const void *src, int32 count);
38 void int8_to_int16(void *dst, const void *src, int32 count);
39 void int8_to_int32(void *dst, const void *src, int32 count);
40 void int8_to_float32(void *dst, const void *src, int32 count);
[all...]
/haiku/src/system/libroot/posix/string/
H A Dbzero.c15 void bzero(void *dest, size_t count);
18 bzero(void *dest, size_t count) argument
20 memset(dest, 0, count);
H A Dstrncat.c11 strncat(char *dest, char const *src, size_t count) argument
15 if (count > 0) {
19 if (--count == 0) {
H A Dstrncmp.c11 strncmp(char const *a, char const *b, size_t count) argument
13 while (count-- > 0) {
H A Dstrspn.c15 size_t count = 0; local
23 return count;
24 ++count;
27 return count;
H A Dstrncpy.cpp18 strncpy(char* dest, const char* src, size_t count) argument
23 while (((addr_t)dest & 3) != 0 && count != 0) {
24 count--;
26 memset(dest, '\0', count);
31 if (count == 0)
39 size_t alignedCount = count / 4;
40 count -= alignedCount * 4;
46 count += alignedCount * 4;
52 while (count-- != 0) {
54 memset(dest, '\0', count);
[all...]
H A Dmemmove.c19 memmove(void* dest, void const* src, size_t count) argument
25 if (count == 0 || dest == src)
31 if ((((long)d ^ (long)s) & lmask) || (count < lsize))
32 len = count; // copy the rest of the buffer with the byte mover
36 count -= len;
40 for (len = count / lsize; len > 0; len--) {
45 for (len = count & lmask; len > 0; len--)
48 d += count;
49 s += count;
52 if ((((long)d ^ (long)s) & lmask) || (count <
[all...]
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/headers/private/system/
H A Darchitecture_private.h18 size_t count);
19 size_t __get_architectures(const char** architectures, size_t count);
/haiku/src/system/libroot/posix/wchar/
H A Dwmemset.c10 __wmemset(wchar_t* destIn, const wchar_t wc, size_t count) argument
13 while (count-- > 0)
H A Dwmemchr.c10 __wmemchr(const wchar_t* dest, const wchar_t wc, size_t count) argument
12 while (count-- > 0) {
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 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 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/src/tools/fs_shell/
H A Duio.cpp25 extern "C" ssize_t _kern_readv(int fd, off_t pos, const struct iovec *vecs, size_t count);
26 extern "C" ssize_t _kern_writev(int fd, off_t pos, const struct iovec *vecs, size_t count);
34 prepare_iovecs(const struct fssh_iovec *vecs, int count, argument
37 if (count < 0 || count > kMaxIOVecs) {
42 for (int i = 0; i < count; i++) {
52 fssh_readv(int fd, const struct fssh_iovec *vector, int count) argument
55 if (!prepare_iovecs(vector, count, systemVecs))
64 return readv(fd, systemVecs, count);
66 return _kern_readv(fd, lseek(fd, 0, SEEK_CUR), systemVecs, count);
72 fssh_readv_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, int count) argument
91 fssh_writev(int fd, const struct fssh_iovec *vector, int count) argument
111 fssh_writev_pos(int fd, fssh_off_t pos, const struct fssh_iovec *vec, int count) argument
[all...]
/haiku/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/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/headers/posix/sys/
H A Duio.h22 ssize_t readv(int fd, const struct iovec *vector, int count);
23 ssize_t readv_pos(int fd, off_t pos, const struct iovec *vec, int count);
24 ssize_t writev(int fd, const struct iovec *vector, int count);
25 ssize_t writev_pos(int fd, off_t pos, const struct iovec *vec, int count);
/haiku/headers/private/fs_shell/
H A Dfssh_uio.h23 int count);
25 fssh_iovec *vec, int count);
27 int count);
29 const struct fssh_iovec *vec, int count);
/haiku/headers/compatibility/bsd/sys/
H A Duio.h22 preadv(int fd, const struct iovec *vecs, int count, off_t pos) argument
24 return readv_pos(fd, pos, vecs, count);
29 pwritev(int fd, const struct iovec *vecs, int count, off_t pos) argument
31 return writev_pos(fd, pos, vecs, count);
/haiku/src/system/kernel/arch/generic/
H A Dgeneric_msi.cpp28 msi_allocate_vectors(uint32 count, uint32 *startVector, uint64 *address, uint32 *data) argument
30 return sMSIInterface->AllocateVectors(count, *startVector, *address, *data);
35 msi_free_vectors(uint32 count, uint32 startVector) argument
37 sMSIInterface->FreeVectors(count, startVector);
/haiku/src/system/libroot/posix/string/arch/generic/
H A Dmemset.c11 memset(void *s, int c, size_t count) argument
15 while (count--)
22 void* __aeabi_memset(void *s, int c, size_t count)

Completed in 230 milliseconds

1234567891011>>