Searched refs:msg_readcount (Results 1 – 9 of 9) sorted by relevance
/external/quake/quake/src/QW/qwfwd/ |
D | misc.c | 80 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/ |
D | common.cpp | 597 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 …]
|
D | common.h | 113 extern int msg_readcount;
|
D | cl_parse.cpp | 713 #define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n", msg_readcount-1, x);
|
D | WinQuake.ncb | 1244 …nechar %[CMDLINE_LENGTH]loadsizeFloatSwapMSG_WriteAnglebigendienmsg_readcountCOM_FileBasem…
|
/external/quake/quake/src/QW/client/ |
D | common.c | 652 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 …]
|
D | cl_parse.c | 347 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()
|
D | common.h | 115 extern int msg_readcount;
|
/external/quake/quake/src/QW/server/ |
D | sv_user.c | 589 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()
|