Searched refs:fCount (Results 26 - 50 of 131) sorted by relevance

123456

/haiku/src/apps/icon-o-matic/shape/commands/
H A DFreezeTransformationCommand.cpp40 fCount(count)
45 memcpy(fShapes, shapes, sizeof(PathSourceShape*) * fCount);
49 for (int32 i = 0; i < fCount; i++) {
84 for (int32 i = 0; i < fCount; i++) {
99 for (int32 i = 0; i < fCount; i++) {
124 format.Format(name, fCount);
H A DSplitPointsCommand.cpp39 fCount(0)
47 fCount = count;
96 // NOTE: fCount guaranteed > 0
98 for (int32 i = 0; i < fCount; i++) {
132 for (int32 i = 0; i < fCount; i++) {
148 _Select(fIndex, fCount);
160 format.Format(name, fCount);
H A DFlipPointsCommand.h32 int32 fCount; member in class:FlipPointsCommand
H A DTransformPointsCommand.cpp47 fCount(count)
52 memcpy(fIndices, indices, fCount * sizeof(int32));
53 memcpy((void*)fPoints, points, fCount * sizeof(control_point));
111 for (int32 i = 0; i < fCount; i++) {
H A DMoveShapesCommand.cpp40 format.Format(name, fCount);
H A DMoveTransformersCommand.cpp40 format.Format(name, fCount);
H A DMovePathsCommand.cpp40 format.Format(name, fCount);
H A DRemoveShapesCommand.cpp40 format.Format(name, fCount);
H A DRemoveTransformersCommand.cpp41 format.Format(name, fCount);
H A DAddShapesCommand.cpp40 format.Format(name, fCount);
H A DAddTransformersCommand.cpp40 format.Format(name, fCount);
/haiku/src/kits/media/
H A DSharedBufferList.cpp121 for (int32 i = 0; i < fCount; i++) {
128 fCount--;
129 if (fCount > 0)
130 fInfos[i--] = fInfos[fCount];
214 if (fCount == kMaxBuffers) {
218 fInfos[fCount].id = buffer->ID();
219 fInfos[fCount].buffer = buffer;
220 fInfos[fCount].reclaim_sem = groupReclaimSem;
221 fInfos[fCount].reclaimed = true;
222 fCount
[all...]
/haiku/headers/private/debugger/model/
H A DSemaphoreInfo.h30 int32 Count() const { return fCount; }
37 int32 fCount; member in class:SemaphoreInfo
/haiku/src/apps/aboutsystem/
H A DUtilities.cpp80 fCount(0)
88 fCount(0)
103 fCount(0)
112 fCount(0)
114 if (other.fCount == 0)
117 fStrings = new BString[other.fCount];
118 fCount = other.fCount;
120 for (int32 i = 0; i < fCount; i++)
153 fCount
[all...]
/haiku/src/apps/icon-o-matic/transformable/
H A DResetTransformationCommand.h42 int32 fCount; member in class:ResetTransformationCommand
H A DTransformObjectsCommand.cpp44 fCount(count)
49 memcpy(fObjects, objects, fCount * sizeof(Transformable*));
51 fCount * Transformable::matrix_size * sizeof(double));
109 for (int32 i = 0; i < fCount; i++) {
/haiku/src/apps/mediaplayer/playlist/
H A DCopyPLItemsCommand.h31 int32 fCount; member in class:CopyPLItemsCommand
/haiku/src/system/kernel/vm/
H A DVMAddressSpaceLocking.cpp332 fCount(0),
358 if (fCount == fCapacity) {
375 for (int32 i = 0; i < fCount; i++) {
398 lock_item& item = fItems[fCount++];
421 for (int32 i = 0; i < fCount; i++)
424 fCount = 0;
433 qsort(fItems, fCount, sizeof(lock_item), &_CompareItems);
435 for (int32 i = 0; i < fCount; i++) {
464 for (int32 i = 0; i < fCount; i++) {
486 int originalCount = fCount;
[all...]
/haiku/src/apps/icon-o-matic/style/
H A DAddStylesCommand.cpp39 format.Format(name, fCount);
H A DMoveStylesCommand.cpp40 format.Format(name, fCount);
H A DRemoveStylesCommand.cpp38 for (int32 i = 0; i < fCount; i++) {
75 for (int32 i = 0; i < fCount; i++) {
101 for (int32 i = 0; i < fCount; i++) {
122 format.Format(name, fCount);
/haiku/src/libs/icon/transformer/
H A DCompoundStyleTransformer.h44 int32 fCount; member in class:CompoundStyleTransformer
/haiku/src/tests/system/kernel/cache/
H A Dfile_map_test.cpp47 uint32 fCount; member in class:Map
62 fCount(0),
86 fCount = 0;
99 if (fCount < MAX_VECS) {
100 fOffsets[fCount] = offset;
101 fVecs[fCount].offset = diskOffset;
102 fVecs[fCount].length = length;
103 fCount++;
114 fCount = 0;
196 if ((uint32)index >= fCount)
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/shared/
H A DDriverSettings.cpp114 fCount(count)
124 return new(std::nothrow) Iterator(fParameters, fCount);
129 return (fParameters && fCount > 0);
134 if (fParameters && fCount > 0) {
138 fCount--;
146 int32 fCount; member in class:DriverParameterContainer::Iterator
157 fCount(count),
169 return new(std::nothrow) NameIterator(fParameters, fCount,
175 return (fParameters && fCount > 0);
180 if (fParameters && fCount >
206 int32 fCount; member in class:DriverParameterContainer::NameIterator
[all...]
/haiku/src/kits/storage/
H A DDriverSettings.cpp131 fCount(count)
141 return new(std::nothrow) Iterator(fParameters, fCount);
146 return fParameters != NULL && fCount > 0;
151 if (fParameters == NULL || fCount <= 0)
154 fCount--;
160 int32 fCount; member in class:BPrivate::BDriverParameterContainer::Iterator
172 fCount(count),
184 return new(std::nothrow) NameIterator(fParameters, fCount, fName);
189 return fParameters != NULL && fCount > 0;
194 if (fParameters == NULL || fCount <
219 int32 fCount; member in class:BPrivate::BDriverParameterContainer::NameIterator
[all...]

Completed in 94 milliseconds

123456