Home
last modified time | relevance | path

Searched refs:threadPosition (Results 1 – 3 of 3) sorted by relevance

/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/win32/
H A Dwin_main.c663 int threadPosition; // next byte to be read from file member
696 … count = stream.sIO[i].bufferSize - (stream.sIO[i].threadPosition - stream.sIO[i].streamPosition); in Sys_StreamThread()
701 bufferPoint = stream.sIO[i].threadPosition % stream.sIO[i].bufferSize; in Sys_StreamThread()
706 stream.sIO[i].threadPosition += r; in Sys_StreamThread()
770 stream.sIO[f].threadPosition = 0; in Sys_BeginStreamedFile()
828 available = stream.sIO[f].threadPosition - stream.sIO[f].streamPosition; in Sys_StreamedRead()
877 stream.sIO[f].threadPosition = 0; in Sys_StreamSeek()
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/unix/
H A Dunix_main.c891 int threadPosition; // next byte to be read from file member
914 count = stream.bufferSize - (stream.threadPosition - stream.streamPosition); in Sys_StreamThread()
917 bufferPoint = stream.threadPosition % stream.bufferSize; in Sys_StreamThread()
921 stream.threadPosition += r; in Sys_StreamThread()
967 stream.threadPosition = 0; in Sys_BeginStreamedFile()
1016 available = stream.threadPosition - stream.streamPosition; in Sys_StreamedRead()
1052 stream.threadPosition = 0; in Sys_StreamSeek()
/dports/deskutils/kdeconnect-kde/kdeconnect-kde-21.12.3/plugins/sms/
H A Dconversationsdbusinterface.cpp122 const auto& threadPosition = m_conversations[threadId].insert(message.date(), message); in addMessages() local
126 bool latestMessage = threadPosition == m_conversations[threadId].end() - 1; in addMessages()