Home
last modified time | relevance | path

Searched refs:msg_readcount (Results 1 – 9 of 9) sorted by relevance

/external/quake/quake/src/QW/qwfwd/
Dmisc.c80 int msg_readcount; variable
85 start = packet_data + msg_readcount; in MSG_ReadString()
87 for ( ; msg_readcount < packet_length ; msg_readcount++) in MSG_ReadString()
88 if (packet_data[msg_readcount] == '\n' in MSG_ReadString()
89 || packet_data[msg_readcount] == 0) in MSG_ReadString()
92 packet_data[msg_readcount] = 0; in MSG_ReadString()
93 msg_readcount++; in MSG_ReadString()
/external/quake/quake/src/WinQuake/
Dcommon.cpp597 int msg_readcount; variable
602 msg_readcount = 0; in MSG_BeginReading()
611 if (msg_readcount+1 > net_message.cursize) in MSG_ReadChar()
617 c = (signed char)net_message.data[msg_readcount]; in MSG_ReadChar()
618 msg_readcount++; in MSG_ReadChar()
627 if (msg_readcount+1 > net_message.cursize) in MSG_ReadByte()
633 c = (unsigned char)net_message.data[msg_readcount]; in MSG_ReadByte()
634 msg_readcount++; in MSG_ReadByte()
643 if (msg_readcount+2 > net_message.cursize) in MSG_ReadShort()
649 c = (short)(net_message.data[msg_readcount] in MSG_ReadShort()
[all …]
Dcommon.h113 extern int msg_readcount;
Dcl_parse.cpp713 #define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n", msg_readcount-1, x);
DWinQuake.ncb1244 …ne�char %[CMDLINE_LENGTH]�loadsize�FloatSwap�MSG_WriteAngle�bigendien�msg_readcount�COM_FileBase�m…
/external/quake/quake/src/QW/client/
Dcommon.c652 int msg_readcount; variable
657 msg_readcount = 0; in MSG_BeginReading()
663 return msg_readcount; in MSG_GetReadCount()
671 if (msg_readcount+1 > net_message.cursize) in MSG_ReadChar()
677 c = (signed char)net_message.data[msg_readcount]; in MSG_ReadChar()
678 msg_readcount++; in MSG_ReadChar()
687 if (msg_readcount+1 > net_message.cursize) in MSG_ReadByte()
693 c = (unsigned char)net_message.data[msg_readcount]; in MSG_ReadByte()
694 msg_readcount++; in MSG_ReadByte()
703 if (msg_readcount+2 > net_message.cursize) in MSG_ReadShort()
[all …]
Dcl_parse.c347 msg_readcount += size; in CL_ParseDownload()
377 msg_readcount += size; in CL_ParseDownload()
384 fwrite (net_message.data + msg_readcount, 1, size, cls.download); in CL_ParseDownload()
385 msg_readcount += size; in CL_ParseDownload()
1090 #define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n", msg_readcount-1, x);
1133 msg_readcount++; // so the EOM showner has the right value in CL_ParseServerMessage()
Dcommon.h115 extern int msg_readcount;
/external/quake/quake/src/QW/server/
Dsv_user.c589 msg_readcount += size; in SV_NextUpload()
611 fwrite (net_message.data + msg_readcount, 1, size, host_client->upload); in SV_NextUpload()
612 msg_readcount += size; in SV_NextUpload()