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

1234567891011>>

/haiku-fatelf/src/bin/gdb/libiberty/
H A Dbzero.c6 @deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
8 Zeros @var{count} bytes starting at @var{mem}. Use of this function
17 bzero (to, count)
19 int count;
21 while (count-- > 0)
H A Dbcmp.c6 @deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
8 Compares the first @var{count} bytes of two areas of memory. Returns
10 @var{count} is zero. A nonzero result only indicates a difference,
20 bcmp (from, to, count)
22 int count;
26 while (count-- > 0)
H A Dspaces.c22 @deftypefn Extension char* spaces (int @var{count})
45 spaces (count)
46 int count;
52 if (count > maxsize)
58 buf = malloc (count + 1);
61 for (t = buf + count ; t != buf ; )
65 maxsize = count;
66 buf[count] = '\0';
68 return (const char *) (buf + maxsize - count);
/haiku-fatelf/src/add-ons/kernel/bus_managers/config_manager/arch/m68k/
H A Dconfig_manager_arch.c14 int config_manager_scan_hardcoded(struct device_info **info, int32 *count) argument
17 return atari_hardcoded(info, count);
19 count = 0;
/haiku-fatelf/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-fatelf/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-fatelf/src/tools/stubgen/
H A Dlexer.l47 * like count() are now contributing to linebuf so we get correct
199 static void count();
225 "//".* { count(); }
226 "#" { macro(); /* was #.* { count(); } */ }
228 "static" { count(); tokens_seen++; }
229 "volatile" { count(); tokens_seen++; }
230 "auto" { count(); tokens_seen++; }
231 "extern" { count(); RETURN_VAL(EXTERN); }
232 "register" { count(); tokens_seen++; }
233 "typedef" { count(); tokens_see
[all...]
/haiku-fatelf/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...]
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfThreading.cpp54 setGlobalThreadCount (int count) argument
56 IlmThread::ThreadPool::globalThreadPool().setNumThreads (count);
H A DImfThreading.h87 void setGlobalThreadCount (int count);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/functional/threads/pi_test/
H A Ddo-plot20 count=1
21 while [ $count -le $columns ]
23 column[$count]=$(echo $cols | awk -vcount=$count '{print $(2 + count);}')
24 if [ -z "${column[$count]}" ]
26 column[$count]=$count;
28 count=$(($count
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmbslen.c33 size_t count; local
36 count = 0;
38 count++;
40 return count;
H A Dstrcspn.c32 size_t count = 0; local
36 ++count;
38 return count;
40 return count;
H A Dacl_entries.c33 int count = 0; local
47 count++;
57 count++;
64 count = acl->acl_cnt;
69 count = acl->acl_num;
74 return count;
/haiku-fatelf/src/bin/coreutils/lib/unistr/
H A Du8-uctomb-aux.c29 int count; local
35 count = 2;
39 count = 3;
45 count = 4;
47 count = 5;
49 count = 6;
52 count = 4;
57 if (n < count)
60 switch (count) /* note: code falls through cases! */
71 return count;
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlwriter.c510 int count; local
546 count = xmlOutputBufferWriteString(writer->out, "<?xml version=");
547 if (count < 0)
549 sum += count;
550 count = xmlOutputBufferWrite(writer->out, 1, &writer->qchar);
551 if (count < 0)
553 sum += count;
555 count = xmlOutputBufferWriteString(writer->out, version);
557 count = xmlOutputBufferWriteString(writer->out, "1.0");
558 if (count <
624 int count; local
707 int count; local
786 int count; local
901 int count; local
933 int count; local
1027 int count; local
1076 int count; local
1153 int count; local
1276 int count; local
1402 int count; local
1474 int count; local
1547 int count; local
1596 int count; local
1640 int count; local
1685 int count; local
1753 int count; local
1817 int count; local
1965 int count; local
2072 int count; local
2182 int count; local
2289 int count; local
2325 int count; local
2416 int count; local
2528 int count; local
2561 int count; local
2634 int count; local
2733 int count; local
2771 int count; local
2907 int count; local
3057 int count; local
3091 int count; local
3178 int count; local
3291 int count; local
3328 int count; local
3415 int count; local
3528 int count; local
3567 int count; local
3666 int count; local
3829 int count; local
3875 int count; local
3921 int count; local
4052 int count; local
4170 int count; local
4363 int count; local
4546 int count; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/fork/
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/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_cond_timedwait/
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/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_create/
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/tests/system/libroot/posix/posixtestsuite/stress/threads/sem_init/
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...]

Completed in 102 milliseconds

1234567891011>>