Searched refs:count (Results 276 - 300 of 2328) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/apps/deskbar/
H A DDeskbarUtils.cpp63 int32 count = 0; local
67 m->GetInfo("refs", &type, &count);
68 if (count <= 0)
95 for (long i = 0; i < count; i++) {
/haiku-fatelf/src/apps/icon-o-matic/shape/commands/
H A DAddTransformersCommand.cpp31 int32 count,
35 fTransformers(transformers && count > 0 ?
36 new (nothrow) Transformer*[count] : NULL),
37 fCount(count),
29 AddTransformersCommand(Shape* container, Transformer** const transformers, int32 count, int32 index) argument
/haiku-fatelf/src/apps/icon-o-matic/style/
H A DAddStylesCommand.cpp31 int32 count,
35 fStyles(styles && count > 0 ? new (nothrow) Style*[count] : NULL),
36 fCount(count),
29 AddStylesCommand(StyleContainer* container, Style** const styles, int32 count, int32 index) argument
/haiku-fatelf/src/apps/mediaplayer/playlist/
H A DPLItemsCommand.h20 void _CleanUp(PlaylistItem**& items, int32 count,
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmkstemps.c86 int count; local
106 for (count = 0; count < TMP_MAX; ++count)
/haiku-fatelf/src/bin/locale/
H A Ddumpcatalog.cpp72 int32 count = inputCatalog.CountItems(); local
73 if (count) {
74 fprintf(stderr, "%" B_PRId32 " entr%s dumped\n", count,
75 (count==1 ? "y": "ies"));
/haiku-fatelf/src/bin/makeudfimage/
H A DStatistics.h36 void AddDirectoryBytes(uint64 count) { fDirectoryBytes += count; } argument
37 void AddFileBytes(uint64 count) { fFileBytes += count; } argument
/haiku-fatelf/src/bin/rc/
H A DR5Compatibility.h14 extern size_t strnlen(const char *string, size_t count);
/haiku-fatelf/src/libs/iconv/
H A Dutf16be.h30 int count = 0; local
39 return count+4;
45 return count+2;
48 return RET_TOOFEW(count);
H A Dutf16le.h30 int count = 0; local
39 return count+4;
45 return count+2;
48 return RET_TOOFEW(count);
H A Dutf8.h102 int count; local
104 count = 1;
106 count = 2;
108 count = 3;
110 count = 4;
112 count = 5;
114 count = 6;
117 if (n < count)
119 switch (count) { /* note: code falls through cases! */
127 return count;
[all...]
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_md5.h50 MD5_UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:__anon4922
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dcpu.cpp100 uint128 operator<<(int count) const
102 if (count == 0)
105 if (count >= 128)
108 if (count >= 64)
109 return uint128(0, low << (count - 64));
111 return uint128(low << count, (high << count) | (low >> (64 - count)));
114 uint128 operator>>(int count) const
116 if (count
[all...]
/haiku-fatelf/src/system/boot/platform/u-boot/
H A Duimage.cpp45 int i, count = 0; local
50 count++;
51 base += (count + 1) * sizeof(uint32);
52 for (i = 0; sizes[i] && i < count; i++) {
/haiku-fatelf/src/system/libroot/posix/
H A Ddirent.c55 ssize_t count; local
81 count = _kern_read_dir(dir->fd, &dir->first_entry,
83 if (count <= 0) {
84 if (count < 0)
85 __set_errno(count);
92 dir->entries_left = count;
203 ssize_t count; local
224 count = _kern_read_dir(dir->fd, &dir->first_entry,
226 if (count <= 0) {
227 if (count <
246 ssize_t count = _kern_read_dir(dir->fd, entry, sizeof(struct dirent) local
[all...]
/haiku-fatelf/src/tests/kits/shared/
H A DNaturalCompareTest.h26 void _RunTests(const Sample* samples, int count);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfRleCompressor.cpp131 int count = -((int)*in++); local
132 inLength -= count + 1;
134 if (0 > (maxLength -= count))
137 while (count-- > 0)
142 int count = *in++; local
145 if (0 > (maxLength -= count + 1))
148 while (count-- >= 0)
/haiku-fatelf/src/bin/gdb/readline/
H A Dundo.c231 rl_revert_line (count, key)
232 int count, key;
246 rl_undo_command (count, key)
247 int count, key;
249 if (count < 0)
252 while (count)
255 count--;
H A Dutil.c100 rl_abort (count, key)
101 int count, key;
107 rl_tty_status (count, key)
108 int count, key;
112 rl_refresh_line (count, key);
265 _rl_strnicmp (string1, string2, count)
267 int count;
271 while (count)
276 count--;
280 return (count);
[all...]
/haiku-fatelf/src/kits/network/
H A Dinterfaces.cpp92 int count = (int)config.ifc_value; local
93 ifreq* interfaces = (ifreq*)malloc(count * sizeof(struct ifreq));
99 config.ifc_len = count * sizeof(struct ifreq);
105 sizeof(struct if_nameindex) * (count + 1));
109 for (int i = 0; i < count; i++) {
117 interfaceArray[count].if_index = 0;
118 interfaceArray[count].if_name = NULL;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A DFSInfo.h26 FSInfo(const char* fsName, const Port::Info* infos, int32 count) argument
31 SetTo(fsName, infos, count);
55 status_t SetTo(const char* fsName, const Port::Info* infos, int32 count) argument
58 if (!fsName || !infos || count <= 0)
62 fInfos = new(nothrow) Port::Info[count];
65 memcpy(fInfos, infos, sizeof(Port::Info) * count);
66 fCount = count;
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DBlockingQueue.h101 int32 count = fElements.Count(); local
102 for (int32 i = 0; i < count; i++)
137 int32 count = fElements.Count();
138 if (count == 0)
153 int32 count = fElements.Count();
154 if (count == 0)
172 int32 count = fElements.Remove(element);
173 if (count == 0) {
177 if (count > 1) {
179 count);
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Ddevice.h97 s64 (*read)(struct ntfs_device *dev, void *buf, s64 count);
98 s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count);
99 s64 (*pread)(struct ntfs_device *dev, void *buf, s64 count, s64 offset);
100 s64 (*pwrite)(struct ntfs_device *dev, const void *buf, s64 count,
112 extern s64 ntfs_pread(struct ntfs_device *dev, const s64 pos, s64 count,
114 extern s64 ntfs_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
117 extern s64 ntfs_mst_pread(struct ntfs_device *dev, const s64 pos, s64 count,
119 extern s64 ntfs_mst_pwrite(struct ntfs_device *dev, const s64 pos, s64 count,
123 const s64 count, void *b);
125 const s64 count, cons
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DBlockingQueue.h100 int32 count = fElements.Count(); local
101 for (int32 i = 0; i < count; i++)
136 int32 count = fElements.Count();
137 if (count == 0)
152 int32 count = fElements.Count();
153 if (count == 0)
171 int32 count = fElements.Remove(element);
172 if (count == 0) {
176 if (count > 1) {
178 count));
[all...]
/haiku-fatelf/src/tests/system/kernel/
H A Dspinlock_contention.cpp75 int32 count = atomic_set(&lock->lock, 0) - 1; local
76 if (count < 0) {
79 // add to the total count -- deal with carry manually
80 if ((uint32)atomic_add(&lock->count_low, count) + count
81 < (uint32)count) {
164 int32 count = (INT_MAX >> 16) + 1; local
169 lock.lock = count;
173 double tickTime = (double)totalTime / count;
175 if (totalTime > 1000000 || INT_MAX >> 2 < count)
[all...]

Completed in 326 milliseconds

<<11121314151617181920>>