Searched refs:fCount (Results 51 - 75 of 131) sorted by relevance

123456

/haiku/src/apps/icon-o-matic/transformable/
H A DTransformPointsBox.cpp31 fCount(count),
40 memcpy(fIndices, indices, fCount * sizeof(int32));
42 for (int32 i = 0; i < fCount; i++) {
101 for (int32 i = 0; i < fCount; i++) {
126 fCount,
H A DTransformPointsBox.h53 int32 fCount; member in class:TransformPointsBox
/haiku/src/apps/icon-o-matic/shape/commands/
H A DRemovePointsCommand.cpp39 fCount(0),
58 fCount(0),
107 for (int32 i = 0; i < fCount; i++) {
124 _Select(fIndex, fCount);
144 for (int32 i = 0; i < fCount; i++) {
167 format.Format(name, fCount);
181 fCount = count;
H A DNudgePointsCommand.h49 int32 fCount; member in class:NudgePointsCommand
H A DSplitPointsCommand.h36 int32 fCount; member in class:SplitPointsCommand
H A DFreezeTransformationCommand.h44 int32 fCount; member in class:FreezeTransformationCommand
H A DRemovePathsCommand.cpp41 for (int32 i = 0; i < fCount; i++) {
78 for (int32 i = 0; i < fCount; i++) {
103 for (int32 i = 0; i < fCount; i++) {
124 format.Format(name, fCount);
H A DRemovePointsCommand.h48 int32 fCount; member in class:RemovePointsCommand
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DHTreeEntryIterator.cpp35 fCount(0),
60 fCount(0),
89 fCount = fLimit = 0;
96 fCount = countLimit->Count();
99 if (fCount > fLimit) {
100 ERROR("HTreeEntryIterator::Init() bad fCount %u (fLimit %u)\n",
101 fCount, fLimit);
102 fCount = fLimit = 0;
114 fCount = fLimit = 0;
119 fCount, fLimi
[all...]
/haiku/src/apps/aboutsystem/
H A DUtilities.h38 bool IsEmpty() const { return fCount == 0; }
39 int32 CountStrings() const { return fCount; }
52 int32 fCount; member in class:StringVector
/haiku/src/apps/icon-o-matic/generic/command/
H A DCompoundCommand.h32 int32 fCount; member in class:CompoundCommand
/haiku/src/servers/registrar/
H A DClipboard.h30 int32 fCount; member in class:Clipboard
/haiku/src/apps/mediaplayer/playlist/
H A DRemovePLItemsCommand.h31 int32 fCount; member in class:RemovePLItemsCommand
H A DMovePLItemsCommand.h31 int32 fCount; member in class:MovePLItemsCommand
H A DRandomizePLItemsCommand.h32 int32 fCount; member in class:RandomizePLItemsCommand
/haiku/src/bin/debug/strace/
H A DSyscall.h22 : fTypeName(typeName), fHandler(handler), fCount(1) {}
34 uint32 Count() const { return fCount; }
35 void SetCount(uint32 count) { fCount = count; }
40 uint32 fCount; member in class:Type
/haiku/src/system/kernel/cache/
H A Dfile_map.cpp81 size_t Count() const { return fCount; }
101 size_t fCount; member in class:FileMap
117 fCount(0),
146 if (index >= fCount)
149 if (fCount > CACHED_FILE_EXTENTS)
160 int32 right = fCount - 1;
190 if (fCount > CACHED_FILE_EXTENTS) {
200 if (fCount > CACHED_FILE_EXTENTS) {
219 if (fCount > 0 && fCount <
[all...]
/haiku/src/system/kernel/vm/
H A DVMPageQueue.h52 inline phys_addr_t Count() const { return fCount; }
61 phys_addr_t fCount; member in struct:VMPageQueue
80 fCount++;
99 fCount++;
118 fCount++;
137 fCount--;
150 fCount--;
208 fCount += count;
/haiku/src/bin/bfs_tools/lib/
H A DCache.h46 fCount(0),
78 if (--fCount <= targetCount)
148 fCount++;
167 && fCount > fMaxInQueue
189 int32 fMaxInQueue, fCount; member in class:Cache
H A DHashtable.h54 int32 fCapacity,fCount,fThreshold,fModCount; member in class:Hashtable
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareNode.cpp277 fCount(0),
295 return (!fRewind && fIndex < fCount ? fEntries[fIndex] : NULL);
302 if (fIndex < fCount)
346 for (int32 i = 0; i < fCount; i++)
348 fCount = 0;
358 if (!entry || fCount >= fCapacity)
361 fEntries[fCount++] = entry;
/haiku/src/kits/app/
H A DServerLink.cpp66 fReceiver->Read(&region->fCount, sizeof(int32));
67 if (region->fCount > 0) {
69 if (!region->_SetSize(region->fCount))
72 region->fCount * sizeof(clipping_rect));
82 fSender->Attach(&region.fCount, sizeof(int32));
83 if (region.fCount > 0) {
86 region.fCount * sizeof(clipping_rect));
/haiku/src/system/boot/platform/openfirmware/
H A Dconsole.cpp49 int fCount; member in class:Console
81 while (bufferSize > 0 && fCount > 0) {
147 if (fCount >= BUFFER_SIZE)
150 int pos = (fStart + fCount) % BUFFER_SIZE;
152 fCount++;
167 if (fCount == 0)
170 fCount--;
/haiku/src/kits/shared/
H A DArgumentVector.cpp140 fCount(0)
156 fCount = 0;
191 fCount = count;
/haiku/headers/os/interface/
H A DPolygon.h51 uint32 fCount; member in class:BPolygon

Completed in 107 milliseconds

123456