Searched refs:fCount (Results 1 - 25 of 131) sorted by relevance

123456

/haiku/src/system/kernel/vm/
H A DVMPageQueue.cpp21 fCount = 0;
/haiku/src/libs/icon/transformer/
H A DCompoundStyleTransformer.cpp22 fCount(count)
29 for (int i = 0; i < fCount; i++)
38 for (int i = 0; i < fCount; i++) {
49 StyleTransformer* oldOrder[fCount];
50 memcpy(oldOrder, fTransformers, fCount * sizeof(StyleTransformer*));
51 for (int i = 0; i < fCount; i++) {
52 fTransformers[fCount-i-1] = oldOrder[i];
56 for (int i = 0; i < fCount; i++) {
67 for (int i = 0; i < fCount; i++) {
/haiku/src/apps/icon-o-matic/shape/commands/
H A DNudgePointsCommand.cpp53 fCount(count)
55 if (fCount > 0 && indices) {
56 fIndices = new (nothrow) int32[fCount];
57 memcpy(fIndices, indices, fCount * sizeof(int32));
59 if (fCount > 0 && points) {
60 fPoints = new (nothrow) control_point[fCount];
61 memcpy((void*)fPoints, points, fCount * sizeof(control_point));
96 for (int32 i = 0; i < fCount; i++) {
H A DAddPathsCommand.cpp43 addFormat.Format(name, fCount);
45 assignFormat.Format(name, fCount);
H A DFlipPointsCommand.cpp33 fCount(0)
37 fCount = count;
72 // NOTE: fCount guaranteed > 0
73 for (int32 i = 0; i < fCount; i++) {
105 _Select(fIndex, fCount);
117 format.Format(name, fCount);
/haiku/src/kits/debugger/model/
H A DSemaphoreInfo.cpp15 fCount(0),
26 fCount(other.fCount),
38 fCount(count),
51 fCount = count;
/haiku/src/apps/mediaplayer/playlist/
H A DCopyPLItemsCommand.cpp29 fCount(indices.CountItems()),
30 fItems(fCount > 0 ? new (nothrow) PlaylistItem*[fCount] : NULL),
41 memset(fItems, 0, sizeof(PlaylistItem*) * fCount);
44 for (int32 i = 0; i < fCount; i++) {
51 _CleanUp(fItems, fCount, true);
60 _CleanUp(fItems, fCount, !fItemsCopied);
84 for (int32 i = 0; i < fCount; i++) {
105 for (int32 i = 0; i < fCount; i++) {
120 if (fCount >
[all...]
H A DRandomizePLItemsCommand.cpp31 fCount(indices.CountItems()),
32 fItems(fCount > 0 ? new (nothrow) PlaylistItem*[fCount] : NULL),
33 fListIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
34 fRandomInternalIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL)
44 memset(fItems, 0, fCount * sizeof(PlaylistItem*));
48 for (int32 i = 0; i < fCount; i++) {
60 for (int32 i = 0; i < fCount;
[all...]
H A DMovePLItemsCommand.cpp30 fCount(indices.CountItems()),
31 fItems(fCount > 0 ? new (nothrow) PlaylistItem*[fCount] : NULL),
32 fIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
42 memset(fItems, 0, sizeof(PlaylistItem*) * fCount);
48 for (int32 i = 0; i < fCount; i++) {
81 // NOTE: fIndices == NULL if fCount < 1
92 for (int32 i = 1; i < fCount; i++) {
119 for (int32 i = 0; i < fCount;
[all...]
H A DRemovePLItemsCommand.cpp31 fCount(indices.CountItems()),
32 fItems(fCount > 0 ? new (nothrow) PlaylistItem*[fCount] : NULL),
33 fIndices(fCount > 0 ? new (nothrow) int32[fCount] : NULL),
45 memset(fItems, 0, fCount * sizeof(PlaylistItem*));
48 for (int32 i = 0; i < fCount; i++) {
62 _CleanUp(fItems, fCount, fItemsRemoved);
86 for (int32 i = 0; i < fCount; i++) {
100 for (int32 i = 0; i < fCount;
[all...]
/haiku/headers/private/shared/
H A DArgumentVector.h28 int32 ArgumentCount() const { return fCount; }
43 int32 fCount; member in class:BPrivate::ArgumentVector
/haiku/src/apps/icon-o-matic/transformable/
H A DResetTransformationCommand.cpp37 fCount(count)
42 memcpy(fObjects, objects, fCount * sizeof(Transformable*));
45 for (int32 i = 0; i < fCount; i++) {
69 for (int32 i = 0; i < fCount; i++) {
82 for (int32 i = 0; i < fCount; i++) {
95 format.Format(name, fCount);
H A DTransformShapesBox.cpp28 fCount(count),
37 fOriginals = new double[fCount * Transformable::matrix_size];
39 memcpy(fShapes, shapes, fCount * sizeof(Shape*));
41 for (int32 i = 0; i < fCount; i++) {
59 for (int32 i = 0; i < fCount; i++) {
86 for (int32 i = 0; i < fCount; i++) {
113 for (int32 i = 0; i < fCount; i++) {
134 Transformable* objects[fCount];
135 for (int32 i = 0; i < fCount; i++)
138 return new TransformObjectsCommand(this, objects, fOriginals, fCount,
[all...]
H A DTransformShapesBox.h42 { return fCount; }
46 int32 fCount; member in class:TransformShapesBox
/haiku/src/kits/interface/
H A DPolygon.cpp28 fCount(0),
38 fCount(0),
48 fCount(0),
58 fCount(0),
79 fCount = 0;
82 if (_AddPoints(other.fPoints, other.fCount, false))
106 return fCount;
113 for (uint32 i = 0; i < fCount; i++)
123 for (uint32 i = 0; i < fCount; i++)
131 // transform.Apply(fPoints, (int32)fCount);
[all...]
H A DRegion.cpp27 fCount(0),
38 fCount(0),
49 fCount(0),
58 fCount = 1;
65 fCount(1),
88 memcpy(fData, other.fData, other.fCount * sizeof(clipping_rect));
91 fCount = other.fCount;
104 if (fCount != other.fCount)
[all...]
H A DRegionSupport.cpp122 if ((reg)->fCount >= ((reg)->fDataSize - 1)){\
128 (rect) = &(firstrect)[(reg)->fCount];\
137 (!(((Reg)->fCount > 0)&&\
152 (reg)->fCount++;\
167 (reg)->fCount++;\
174 #define REGION_NOT_EMPTY(pReg) pReg->fCount
220 if (pReg->fCount == 0)
231 pBoxEnd = &pBox[pReg->fCount - 1];
276 nbox = pRegion->fCount;
370 * scanline y. fCount i
[all...]
/haiku/src/kits/storage/disk_device/
H A DPartitioningInfo.cpp34 fCount(0),
61 fCount = 1;
66 fCount = 0;
69 fCapacity = fCount;
82 fCount = 0;
99 for (int32 i = 0; i < fCount; i++) {
199 if (index < 0 || index >= fCount)
211 return fCount;
223 printf("BPartitioningInfo has %" B_PRId32 " spaces:\n", fCount);
224 for (int32 i = 0; i < fCount;
[all...]
/haiku/src/apps/icon-o-matic/generic/command/
H A DCompoundCommand.cpp20 fCount(count),
29 for (int32 i = 0; i < fCount; i++)
38 status_t status = fCommands && fCount > 0 ? B_OK : B_BAD_VALUE;
49 for (; i < fCount; i++) {
73 int32 i = fCount - 1;
H A DRemoveCommand.h56 int32 fCount; member in class:RemoveCommand
68 fCount(count),
74 memcpy(fIndices, indices, sizeof(int32) * fCount);
75 for (int32 i = 0; i < fCount; i++)
84 for (int32 i = 0; i < fCount; i++) {
109 for (int32 i = 0; i < fCount; i++) {
128 for (int32 i = 0; i < fCount; i++) {
146 format.Format(name, fCount);
H A DAddCommand.h65 int32 fCount; member in class:AddCommand
78 fCount(count),
86 memcpy(fItems, items, sizeof(Type*) * fCount);
90 for (int32 i = 0; i < fCount; i++) {
102 for (int32 i = 0; i < fCount; i++) {
124 for (int32 i = 0; i < fCount; i++) {
143 for (int32 i = 0; i < fCount; i++) {
158 format.Format(name, fCount);
H A DMoveCommand.h57 int32 fCount; member in class:MoveCommand
71 fCount(count)
80 for (int32 i = 0; i < fCount; i++) {
108 // NOTE: fIndices == NULL if fCount < 1
119 for (int32 i = 1; i < fCount; i++) {
142 for (int32 i = 0; i < fCount; i++) {
153 for (int32 i = 0; i < fCount; i++) {
171 for (int32 i = 0; i < fCount; i++) {
181 for (int32 i = 0; i < fCount; i++) {
198 format.Format(name, fCount);
[all...]
/haiku/src/servers/registrar/
H A DClipboard.cpp20 fCount(0),
45 fCount++;
73 return fCount;
H A DAppInfoList.h86 fCount(it.fCount)
94 return (fIndex >= 0 && fIndex < fCount);
101 fCount--;
109 fCount = it.fCount;
157 fCount(list->CountInfos())
164 int32 fCount; member in class:AppInfoList::Iterator
/haiku/src/tests/kits/interface/bpolygon/
H A DDummyPolygon.h37 int32 fCount; member in class:DummyPolygon

Completed in 150 milliseconds

123456