Searched refs:fCount (Results 26 - 50 of 131) sorted by last modified time

123456

/haiku/src/apps/icon-o-matic/shape/commands/
H A DMovePathsCommand.cpp40 format.Format(name, fCount);
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 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);
H A DAddTransformersCommand.cpp40 format.Format(name, fCount);
H A DAddPathsCommand.cpp43 addFormat.Format(name, fCount);
45 assignFormat.Format(name, fCount);
H A DAddShapesCommand.cpp40 format.Format(name, fCount);
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 DTransformPointsCommand.h66 int32 fCount; member in class:TransformPointsCommand
H A DFreezeTransformationCommand.h44 int32 fCount; member in class:FreezeTransformationCommand
/haiku/src/apps/icon-o-matic/generic/command/
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...]
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 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;
/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...]
H A Dblock_cache.cpp319 size_t fCount; member in class:__anon39::BlockWriter
1099 fCount(0),
1127 if (fCount >= fCapacity) {
1151 fBlocks[fCount++] = block;
1202 if (fCount == 0)
1211 qsort(fBlocks, fCount, sizeof(void*), &_CompareBlocks);
1216 for (uint32 i = 0; i < fCount; i++) {
1234 if (fStatus == B_OK && fCount >= 8) {
1237 / fCount;
1240 for (uint32 i = 0; i < fCount;
[all...]
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DTransportStreamDemux.cpp50 : fCount(0)
93 fCount++;
95 // printf("ProcessPacket %lld\n", fCount);
101 "%02x %02x %02x %02x %02x %02x %02x %02x\n", fCount,
111 // printf("invalid packet %lld (transport_error_indicator)\n", fCount);
/haiku/src/kits/interface/layouter/
H A DComplexLayouter.cpp39 : fCount(elementCount),
56 for (int32 i = 0; i < fCount; i++)
62 if (element < 0 || element >= fCount)
70 if (element < 0 || element >= fCount)
79 if (position < 0 || length < 0 || position + length > fCount)
89 fCount);
90 for (int32 i = 0; i < fCount + 1; i++) {
97 int32 fCount; member in class:ComplexLayouter::MyLayoutInfo
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformShapesBox.h42 { return fCount; }
46 int32 fCount; member in class:TransformShapesBox
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 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++) {
H A DTransformObjectsCommand.h59 int32 fCount; member in class:TransformObjectsCommand
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
H A DTransformGradientBox.h55 int32 fCount; member in class:TransformGradientBox
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEFileSystem.cpp28 fCount(0)
44 return fCount;
57 fCount = 0;
65 fArguments[fCount++] = fBuffer;
92 if (fCount == MAX_ARGUMENTS)
95 fArguments[fCount++] = fBuffer + bufferIndex;
109 fArguments[fCount] = NULL;
117 int fCount; member in class:FUSEFileSystem::ArgumentVector

Completed in 101 milliseconds

123456