Searched refs:fWriteIndex (Results 1 – 6 of 6) sorted by relevance
/haiku/src/tests/add-ons/kernel/file_systems/shared/consistency_check/ |
H A D | AdaptiveBuffering.cpp | 24 fWriteIndex(0), in AdaptiveBuffering() 119 fWriteIndex = 0; in Run() 200 TRACE("%ld. write index %lu, %p, bytes %lu\n", fWriteCount, fWriteIndex, in _Writer() 201 fBuffers[fWriteIndex], fReadBytes[fWriteIndex]); in _Writer() 203 fWriteStatus = Write(fBuffers[fWriteIndex], fReadBytes[fWriteIndex]); in _Writer() 207 fWriteIndex = (fWriteIndex + 1) % fBufferCount; in _Writer()
|
H A D | AdaptiveBuffering.h | 35 uint32 fWriteIndex; variable
|
/haiku/src/servers/app/drawing/interface/remote/ |
H A D | RemoteMessage.h | 199 size_t fWriteIndex; variable 213 fWriteIndex(0), in RemoteMessage() 222 if (fWriteIndex > 0) in ~RemoteMessage() 231 if (fWriteIndex > 0) in Start() 244 if (fWriteIndex == 0 || fTarget == NULL) in Flush() 247 uint32 length = fWriteIndex; in Flush() 248 fAvailable += fWriteIndex; in Flush() 249 fWriteIndex = 0; in Flush() 263 memcpy(fBuffer + fWriteIndex, &value, sizeof(T)); in Add() 264 fWriteIndex += sizeof(T); in Add() [all …]
|
H A D | RemoteMessage.cpp | 84 fAvailable += fWriteIndex; in Cancel() 85 fWriteIndex = 0; in Cancel() 108 memcpy(fBuffer + fWriteIndex, bitmap.Bits(), bitsLength); in AddBitmap() 109 fWriteIndex += bitsLength; in AddBitmap() 188 memcpy(fBuffer + fWriteIndex, bitmap.Bits(), bitsLength); in AddBitmap() 189 fWriteIndex += bitsLength; in AddBitmap()
|
/haiku/src/add-ons/media/media-add-ons/dvb/ |
H A D | PacketQueue.cpp | 43 , fWriteIndex(0) in PacketQueue() 79 fQueue[fWriteIndex] = packet; in Insert() 80 fWriteIndex = (fWriteIndex + 1) % fMaxPackets; in Insert() 159 fWriteIndex = 0; in Restart()
|
H A D | PacketQueue.h | 62 int fWriteIndex; variable
|