Searched refs:fIndex (Results 51 - 75 of 97) sorted by relevance

1234

/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6Writer.cpp22 fIndex(0)
38 if (fIndex == fSize)
40 fBuffer[fIndex] = value;
41 fIndex ++;
48 if (fIndex > 0) {
49 fStream->Write(fBuffer, fIndex);
50 fIndex = 0;
/haiku/src/kits/tracker/
H A DFavoritesMenu.cpp77 fIndex(-1),
213 fIndex = 0;
223 if (fItems.FindRef("refs", fIndex++, &ref) != B_OK)
261 fIndex = 0;
267 if (fItems.FindRef("refs", fIndex++, &ref) != B_OK)
H A DFavoritesMenu.h88 int32 fIndex; member in class:BPrivate::FavoritesMenu
H A DRecentItems.cpp262 fIndex = 0;
359 return fItems.FindRef("refs", fIndex++, result);
409 if (fIndex == 0) {
477 if (fIndex == 0) {
501 if (fIndex == 0) {
/haiku/headers/os/net/
H A DNetworkInterface.h47 int32 Index() const { return fIndex; }
50 int32 fIndex; member in class:BNetworkInterfaceAddress
/haiku/src/apps/deskbar/
H A DResourceSet.cpp293 fIndex(0),
308 fIndex = (size_t*)malloc(sizeof(size_t) * fNumEntries);
309 MakeIndex(fStrings, amount, fNumEntries, fIndex);
316 fIndex(0),
320 fIndex = (size_t*)const_cast<void*>(block);
325 while (fIndex[fNumEntries] > last_off && fIndex[fNumEntries] < size ) {
326 last_off = fIndex[fNumEntries];
335 free(fIndex);
338 fIndex
[all...]
H A DResourceSet.h72 size_t* fIndex; member in class:TStringBlock
/haiku/headers/private/kernel/
H A Dtracing.h222 fIndex(0)
229 fIndex = 0;
234 return fIndex;
252 int32 fIndex; member in class:TraceEntryIterator
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DQuery.h71 Index fIndex; member in class:Query
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPCapabilityExtractor.h71 int fIndex; member in class:GPCapabilityExtractor
/haiku/src/apps/mail/
H A DKUndoBuffer.h67 int32 fIndex; member in class:KUndoBuffer
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.h83 int32 fIndex; member in class:BPrivate::BInfoWindow
H A DInfoWindow.cpp100 fIndex(group_index),
209 if ((fIndex + 2) % 2 == 1) {
211 fIndex--;
214 windRect.OffsetBy(fIndex * 8, fIndex * 8);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DIterators.h74 uint32 fIndex; member in class:TreePath::Element
118 int32 fIndex; member in class:TreeIterator
148 int32 fIndex; member in class:ItemIterator
211 int32 fIndex; member in class:DirEntryIterator
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h361 : fTable(table), fIndex(index), fNext(value) {}
375 fIndex = 0;
388 while (fNext == NULL && fIndex < fTable->fTableSize)
389 fNext = fTable->fTable[fIndex++];
393 size_t fIndex; member in class:BOpenHashTable::Iterator
/haiku/headers/private/kernel/util/
H A DOpenHashTable.h361 : fTable(table), fIndex(index), fNext(value) {}
375 fIndex = 0;
388 while (fNext == NULL && fIndex < fTable->fTableSize)
389 fNext = fTable->fTable[fIndex++];
393 size_t fIndex; member in class:BOpenHashTable::Iterator
/haiku/headers/private/netservices/
H A DNetworkCookieJar.h124 int32 fIndex; member in class:BPrivate::Network::BNetworkCookieJar::Iterator
160 int32 fIndex; member in class:BPrivate::Network::BNetworkCookieJar::UrlIterator
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DAttributeIndex.cpp195 fIndex(index),
217 if (fIndex->HasFixedKeyLength()) {
218 if (attributeSize != fIndex->KeyLength())
425 fIndex->_AddIteratorToUpdate(this);
/haiku/src/add-ons/kernel/busses/scsi/ahci/
H A Dahci_port.h73 int fIndex; member in class:AHCIPort
/haiku/src/apps/switcher/
H A DGroupListView.cpp20 fIndex(index),
34 return fIndex;
62 int32 fIndex; member in class:RendererLayoutItem
/haiku/headers/os/device/
H A DUSBKit.h199 uint32 fIndex; member in class:BUSBConfiguration
289 uint32 fIndex; member in class:BUSBInterface
366 uint32 fIndex; member in class:BUSBEndpoint
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.h217 int32 Index() const { return fIndex; }
218 void SetIndex(int32 index) { fIndex = index; }
236 int32 fIndex; member in class:PrimaryPartition
/haiku/src/system/kernel/debug/
H A Dtracing.cpp1210 if (fIndex == 0) {
1212 fIndex = 1;
1215 fIndex++;
1225 if (fIndex == (int32)sTracingMetaData->Entries() + 1)
1231 fIndex--;
1241 if (index == fIndex)
1245 fIndex = (index <= 0 ? 0 : sTracingMetaData->Entries() + 1);
1251 int32 distance = index - fIndex;
1259 fIndex = 0;
1261 if ((int32)sTracingMetaData->Entries() + 1 - fIndex < distanc
[all...]
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATADevice.cpp24 fIndex(index),
414 status_t err = fChannel->SelectDevice(fIndex);
417 if (fChannel->SelectedDevice() != fIndex) {
418 TRACE_ERROR("device %d not selected!\n", fIndex);
558 fTaskFile.lba.device = fIndex;
576 IsATAPI() ? "pi" : "", fChannel->ChannelID(), fIndex);
/haiku/src/tests/apps/partitioner/
H A DPartitioner.cpp168 fIndex = 0;
211 print_partition(partition, level, fIndex++);
216 int fIndex; member in class:PrintShortVisitor
224 : fIndex(index)
235 return (fIndex-- == 0);
239 int fIndex; member in class:FindPartitionByIndexVisitor

Completed in 129 milliseconds

1234