Searched refs:count (Results 326 - 350 of 1781) sorted by relevance

<<11121314151617181920>>

/haiku/src/libs/icon/transformer/
H A DCompoundStyleTransformer.h33 int32 count);
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp92 uint128 operator<<(int count) const
94 if (count == 0)
97 if (count >= 128)
100 if (count >= 64)
101 return uint128(0, low << (count - 64));
103 return uint128(low << count, (high << count) | (low >> (64 - count)));
106 uint128 operator>>(int count) const
108 if (count
[all...]
/haiku/src/add-ons/accelerants/et6x00/
H A DEngineManagment.c36 st->counter = si->engine.count;
47 si->engine.lastIdle = si->engine.count;
52 st->counter = si->engine.count;
/haiku/src/add-ons/accelerants/radeon/
H A DCP.h88 // stores tag of last command in engine.count
102 // write PACKET3 header, restricting block count
104 // count - whished number of blocks
109 // the effective count is stored in "sub_count" substracted from "count";
113 // of bytes per command; the dword count as written into the first dword of the header
115 #define WRITE_IB_PACKET3_HEAD( command, count, bytes_left, dwords_per_block, dwords_in_header ) \
116 sub_count = min( count, \
118 count -= sub_count; \
/haiku/src/system/libroot/posix/glibc/libio/
H A Diowpadn.c43 _IO_wpadn (fp, pad, count)
46 _IO_ssize_t count;
64 for (i = count; i >= PADSIZE; i -= PADSIZE)
/haiku/src/tests/system/benchmarks/
H A Dexecbench.c18 int iter, count; local
45 count = atoi(argv[4]);
49 printf("time: %lu microseconds\n", elapsed / count);
/haiku/src/tools/cppunit/
H A DBTestSuite.cpp55 int count = 0; local
60 count += it->second->countTestCases();
62 return count;
/haiku/src/tools/cppunit/cppunit/
H A DTestSuite.cpp53 int count = 0; local
58 count += (*it)->countTestCases();
60 return count;
/haiku/src/kits/interface/
H A DSplitLayoutBuilder.cpp78 int32 count = fView->CountChildren(); local
79 if (count > 0)
80 fView->SetCollapsible(count - 1, collapsible);
/haiku/src/add-ons/kernel/cpu/x86/
H A Dgeneric_x86.cpp121 generic_init_mtrrs(uint32 count) argument
123 if (count == 0)
132 TRACE("generic_init_mtrrs(count = %ld)\n", count);
136 for (uint32 i = 0; i < count; i++)
177 uint32 count, uint32 maxCount)
179 // check count
183 if (count > maxCount)
184 count = maxCount;
192 for (uint32 i = 0; i < count;
176 generic_set_mtrrs(uint8 newDefaultType, const x86_mtrr_info* infos, uint32 count, uint32 maxCount) argument
231 generic_dump_mtrrs(uint32 count) argument
[all...]
/haiku/headers/os/support/
H A DList.h14 BList(int32 count = 20);
30 bool RemoveItems(int32 index, int32 count);
67 bool _ResizeArray(int32 count);
/haiku/src/kits/shared/
H A DRWLocker.cpp16 int32 count; member in struct:RWLocker::ReadLockInfo
94 if (--info->count == 0) {
219 info->count++;
292 readerCount = info->count;
302 } else if (info->count == fReaderCount) {
312 fWriterReaderCount = info->count;
326 readerCount = info->count;
417 RWLocker::_NewReadLockInfo(thread_id thread, int32 count) argument
421 info->count = count;
444 int32 count = fReadLockInfos.CountItems(); local
[all...]
/haiku/src/tests/kits/shared/shake_filter/
H A DShakeFilterTest.cpp53 uint32 count = 0; local
54 msg->FindUInt32("count", &count);
55 printf("Shake! %lu\n", count);
/haiku/src/kits/debugger/settings/
H A DTeamFileManagerSettings.cpp65 int32 count = 0; local
67 if (fValues.GetInfo("source:mapping", &type, &count) == B_OK)
68 return count;
/haiku/src/preferences/notifications/
H A DPrefletWin.cpp100 int32 count = fMainView->CountTabs(); local
101 for (int32 i = 0; i < count; i++) {
186 int32 count = fMainView->CountTabs(); local
187 for (int32 i = 0; i < count; i++) {
200 int32 count = fMainView->CountTabs(); local
201 for (int32 i = 0; i < count; i++) {
214 int32 count = fMainView->CountTabs(); local
215 for (int32 i = 0; i < count; i++) {
228 int32 count = fMainView->CountTabs(); local
229 for (int32 i = 0; i < count;
242 int32 count = fMainView->CountTabs(); local
[all...]
/haiku/src/preferences/repositories/
H A DRepositoriesView.h43 void _TaskStarted(RepoRow* rowItem, int16 count);
44 void _TaskCompleted(RepoRow* rowItem, int16 count,
46 void _TaskCanceled(RepoRow* rowItem, int16 count);
/haiku/src/apps/mediaconverter/
H A DMediaFileListView.cpp99 int32 count = CountItems(); local
100 if (selection >= count)
101 selection = count - 1;
/haiku/src/bin/
H A Drelease.c22 printf("usage: release [-f] [-c count] semaphore_number\n");
30 int count = 1; local
45 count = strtol(argv[i], NULL, 10);
66 err = release_sem_etc(semid, count, 0);
/haiku/src/system/kernel/cache/
H A Dvnode_store.h24 size_t count, uint32 flags,
27 size_t count, uint32 flags,
30 const generic_io_vec* vecs, size_t count,
/haiku/src/apps/terminal/
H A DHistoryBuffer.cpp211 HistoryBuffer::AddEmptyLines(int32 count) argument
213 if (count <= 0)
216 if (count > fCapacity)
217 count = fCapacity;
219 if (count + fSize > fCapacity)
220 DropLines(count + fSize - fCapacity);
226 for (int32 i = 0; i < count; i++) {
235 fSize += count;
240 HistoryBuffer::DropLines(int32 count) argument
242 if (count <
[all...]
/haiku/src/system/libroot/posix/
H A Ddirent.cpp56 ssize_t count; local
82 count = _kern_read_dir(dir->fd, &dir->first_entry,
84 if (count <= 0) {
85 if (count < 0)
86 __set_errno(count);
93 dir->entries_left = count;
204 ssize_t count; local
225 count = _kern_read_dir(dir->fd, &dir->first_entry,
227 if (count <= 0) {
228 if (count <
[all...]
/haiku/src/system/libroot/posix/sys/
H A Duname.c28 uint32 count = 1; local
51 error = get_cpu_topology_info(&root, &count);
52 if (error != B_OK || count < 1)
/haiku/headers/private/kernel/util/
H A DBitmap.h37 void SetRange(size_t index, size_t count);
38 void ClearRange(size_t index, size_t count);
41 ssize_t GetLowestContiguousClear(size_t count, size_t fromIndex = 0) const;
/haiku/src/tests/kits/shared/
H A DFakeJsonDataGenerator.h25 FakeJsonStreamDataIO(int count, uint32 checksumLimit);
54 FakeJsonStringStreamDataIO(int count, uint32 checksumLimit);
69 FakeJsonNumberStreamDataIO(int count, uint32 checksumLimit);
/haiku/src/apps/haikudepot/textview/
H A DTextSpan.h39 bool Remove(int32 start, int32 count);
41 TextSpan SubSpan(int32 start, int32 count) const;
52 int32& count) const;

Completed in 400 milliseconds

<<11121314151617181920>>