Home
last modified time | relevance | path

Searched refs:sizebuf_t (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/dports/games/opentyrian/opentyrian-opentyrian-77a8715634e3/src/
H A Dsizebuf.h31 } sizebuf_t; typedef
34 bool SZ_Error ( sizebuf_t * );
35 void SZ_Memset ( sizebuf_t *, int, size_t ); /* memset with a sizebuf */
37 void SZ_Memcpy2 ( sizebuf_t *, sizebuf_t *, size_t ); /* memcpy with a sizebuf */
38 void SZ_Seek ( sizebuf_t *, long, int ); /* fseek with a sizebuf. */
42 void MSG_WriteByte ( sizebuf_t *, unsigned int );
43 void MSG_WriteWord ( sizebuf_t *, unsigned int );
44 void MSG_WriteDWord ( sizebuf_t *, unsigned int );
46 unsigned int MSG_ReadByte ( sizebuf_t * );
47 unsigned int MSG_ReadWord ( sizebuf_t * );
[all …]
H A Dsizebuf.c52 bool SZ_Error(sizebuf_t * sz) in SZ_Error()
57 void SZ_Memset(sizebuf_t * sz, int value, size_t count) in SZ_Memset()
85 void SZ_Memcpy2(sizebuf_t * sz, sizebuf_t * bf, size_t count) in SZ_Memcpy2()
105 void SZ_Seek(sizebuf_t * sz, long count, int mode) in SZ_Seek()
132 const Uint8 * SZ_GetCurBufferPtr (sizebuf_t * sz) in SZ_GetCurBufferPtr()
141 void MSG_WriteByte(sizebuf_t * sz, unsigned int value) in MSG_WriteByte()
152 void MSG_WriteWord(sizebuf_t * sz, unsigned int value) in MSG_WriteWord()
163 void MSG_WriteDWord(sizebuf_t * sz, unsigned int value) in MSG_WriteDWord()
175 unsigned int MSG_ReadByte(sizebuf_t * sz) in MSG_ReadByte()
191 unsigned int MSG_ReadWord(sizebuf_t * sz) in MSG_ReadWord()
[all …]
/dports/games/qwdtools/mvdsv-0.34/tools/qwdtools/source/
H A Dtools.h41 } sizebuf_t; typedef
50 sizebuf_t *msgbuf;
60 extern sizebuf_t *msgbuf;
61 void SZ_Clear (sizebuf_t *buf);
64 void SZ_Print (sizebuf_t *buf, const char *data);
67 void MSG_WriteChar (sizebuf_t *sb, const int c);
68 void MSG_WriteByte (sizebuf_t *sb, const int c);
69 void MSG_WriteShort (sizebuf_t *sb, const int c);
70 void MSG_WriteLong (sizebuf_t *sb, const int c);
71 void MSG_WriteFloat (sizebuf_t *sb, const float f);
[all …]
/dports/games/mvdsv/mvdsv-0.34/tools/qwdtools/source/
H A Dtools.h41 } sizebuf_t; typedef
50 sizebuf_t *msgbuf;
60 extern sizebuf_t *msgbuf;
61 void SZ_Clear (sizebuf_t *buf);
64 void SZ_Print (sizebuf_t *buf, const char *data);
67 void MSG_WriteChar (sizebuf_t *sb, const int c);
68 void MSG_WriteByte (sizebuf_t *sb, const int c);
69 void MSG_WriteShort (sizebuf_t *sb, const int c);
70 void MSG_WriteLong (sizebuf_t *sb, const int c);
71 void MSG_WriteFloat (sizebuf_t *sb, const float f);
[all …]
/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dcommon.h51 } sizebuf_t; typedef
53 void SZ_Clear (sizebuf_t *buf);
168 void MSG_BeginReading (sizebuf_t *sb);
170 int MSG_ReadBigShort (sizebuf_t *sb);
171 int MSG_ReadLittleLong (sizebuf_t *sb);
172 int MSG_ReadBigLong (sizebuf_t *sb);
174 float MSG_ReadBigFloat (sizebuf_t *sb);
184 float MSG_ReadAngle8i (sizebuf_t *sb);
185 float MSG_ReadAngle16i (sizebuf_t *sb);
186 float MSG_ReadAngle32f (sizebuf_t *sb);
[all …]
/dports/games/darkplaces/darkplaces/
H A Dcommon.h51 } sizebuf_t; typedef
53 void SZ_Clear (sizebuf_t *buf);
168 void MSG_BeginReading (sizebuf_t *sb);
170 int MSG_ReadBigShort (sizebuf_t *sb);
171 int MSG_ReadLittleLong (sizebuf_t *sb);
172 int MSG_ReadBigLong (sizebuf_t *sb);
174 float MSG_ReadBigFloat (sizebuf_t *sb);
184 float MSG_ReadAngle8i (sizebuf_t *sb);
185 float MSG_ReadAngle16i (sizebuf_t *sb);
186 float MSG_ReadAngle32f (sizebuf_t *sb);
[all …]
/dports/games/quakeforge/quakeforge-0.7.2/include/QF/
H A Dmsg.h37 void MSG_WriteByte (sizebuf_t *sb, int c);
38 void MSG_WriteShort (sizebuf_t *sb, int c);
39 void MSG_WriteLong (sizebuf_t *sb, int c);
40 void MSG_WriteFloat (sizebuf_t *sb, float f);
41 void MSG_WriteString (sizebuf_t *sb, const char *s);
43 void MSG_WriteCoord (sizebuf_t *sb, float coord);
44 void MSG_WriteCoordV (sizebuf_t *sb, const vec3_t coord);
47 void MSG_WriteAngle (sizebuf_t *sb, float angle);
49 void MSG_WriteAngle16 (sizebuf_t *sb, float angle);
51 void MSG_WriteUTF8 (sizebuf_t *sb, unsigned utf8);
[all …]
H A Dsizebuf.h45 } sizebuf_t; typedef
47 void SZ_Alloc (sizebuf_t *buf, int startsize);
48 void SZ_Free (sizebuf_t *buf);
49 void SZ_Clear (sizebuf_t *buf);
50 void *SZ_GetSpace (sizebuf_t *buf, int length);
51 void SZ_Write (sizebuf_t *buf, const void *data, int length);
52 void SZ_Print (sizebuf_t *buf, const char *data); // strcats onto the sizebuf
/dports/games/quake2max/Quake2maX_0.45-src_unix/qcommon/
H A Dqcommon.h129 } sizebuf_t; typedef
132 void SZ_Clear (sizebuf_t *buf);
159 int MSG_ReadChar (sizebuf_t *sb);
160 int MSG_ReadByte (sizebuf_t *sb);
161 int MSG_ReadShort (sizebuf_t *sb);
162 int MSG_ReadLong (sizebuf_t *sb);
163 float MSG_ReadFloat (sizebuf_t *sb);
164 char *MSG_ReadString (sizebuf_t *sb);
167 float MSG_ReadCoord (sizebuf_t *sb);
169 float MSG_ReadAngle (sizebuf_t *sb);
[all …]
/dports/games/quetoo/quetoo-0.6.1/src/
H A Dqcommon.h41 } sizebuf_t; typedef
44 void SZ_Clear(sizebuf_t *buf);
67 int MSG_ReadChar(sizebuf_t *sb);
68 int MSG_ReadByte(sizebuf_t *sb);
69 int MSG_ReadShort(sizebuf_t *sb);
70 int MSG_ReadLong(sizebuf_t *sb);
71 float MSG_ReadFloat(sizebuf_t *sb);
72 char *MSG_ReadString(sizebuf_t *sb);
74 float MSG_ReadCoord(sizebuf_t *sb);
76 float MSG_ReadAngle(sizebuf_t *sb);
[all …]
/dports/games/alienarena/alienarena-7.66/source/qcommon/
H A Dqcommon.h112 } sizebuf_t; typedef
115 void SZ_Clear (sizebuf_t *buf);
148 int MSG_ReadChar (sizebuf_t *sb);
149 int MSG_ReadByte (sizebuf_t *sb);
150 int MSG_ReadShort (sizebuf_t *sb);
151 int MSG_ReadLong (sizebuf_t *sb);
153 float MSG_ReadFloat (sizebuf_t *sb);
157 float MSG_ReadCoord (sizebuf_t *sb);
159 float MSG_ReadAngle (sizebuf_t *sb);
653 extern sizebuf_t net_message;
[all …]
/dports/games/alienarena-data/alienarena-7.66/source/qcommon/
H A Dqcommon.h112 } sizebuf_t; typedef
115 void SZ_Clear (sizebuf_t *buf);
148 int MSG_ReadChar (sizebuf_t *sb);
149 int MSG_ReadByte (sizebuf_t *sb);
150 int MSG_ReadShort (sizebuf_t *sb);
151 int MSG_ReadLong (sizebuf_t *sb);
153 float MSG_ReadFloat (sizebuf_t *sb);
157 float MSG_ReadCoord (sizebuf_t *sb);
159 float MSG_ReadAngle (sizebuf_t *sb);
653 extern sizebuf_t net_message;
[all …]
/dports/games/quake2-source/quake2-r0.16.2/src/qcommon/
H A Dqcommon.h83 } sizebuf_t; typedef
86 void SZ_Clear (sizebuf_t *buf);
113 int MSG_ReadChar (sizebuf_t *sb);
114 int MSG_ReadByte (sizebuf_t *sb);
115 int MSG_ReadShort (sizebuf_t *sb);
116 int MSG_ReadLong (sizebuf_t *sb);
117 float MSG_ReadFloat (sizebuf_t *sb);
118 char *MSG_ReadString (sizebuf_t *sb);
121 float MSG_ReadCoord (sizebuf_t *sb);
123 float MSG_ReadAngle (sizebuf_t *sb);
[all …]
/dports/games/quake2lnx/quake2-r0.16.2/src/qcommon/
H A Dqcommon.h83 } sizebuf_t; typedef
86 void SZ_Clear (sizebuf_t *buf);
113 int MSG_ReadChar (sizebuf_t *sb);
114 int MSG_ReadByte (sizebuf_t *sb);
115 int MSG_ReadShort (sizebuf_t *sb);
116 int MSG_ReadLong (sizebuf_t *sb);
117 float MSG_ReadFloat (sizebuf_t *sb);
118 char *MSG_ReadString (sizebuf_t *sb);
121 float MSG_ReadCoord (sizebuf_t *sb);
123 float MSG_ReadAngle (sizebuf_t *sb);
[all …]
/dports/games/q2p/Q2P-0.2-2006-12-31/qcommon/
H A Dqcommon.h111 } sizebuf_t; typedef
114 void SZ_Clear (sizebuf_t *buf);
141 int MSG_ReadChar (sizebuf_t *sb);
142 int MSG_ReadByte (sizebuf_t *sb);
143 int MSG_ReadShort (sizebuf_t *sb);
144 int MSG_ReadLong (sizebuf_t *sb);
145 float MSG_ReadFloat (sizebuf_t *sb);
146 char *MSG_ReadString (sizebuf_t *sb);
149 float MSG_ReadCoord (sizebuf_t *sb);
151 float MSG_ReadAngle (sizebuf_t *sb);
[all …]
/dports/games/qudos/QuDos-0.40.1-src/src/qcommon/
H A Dqcommon.h92 } sizebuf_t; typedef
95 void SZ_Clear (sizebuf_t * buf);
122 void MSG_BeginReading(sizebuf_t * sb);
124 int MSG_ReadChar(sizebuf_t * sb);
125 int MSG_ReadByte(sizebuf_t * sb);
126 int MSG_ReadShort(sizebuf_t * sb);
127 int MSG_ReadLong(sizebuf_t * sb);
128 float MSG_ReadFloat(sizebuf_t * sb);
132 float MSG_ReadCoord(sizebuf_t * sb);
134 float MSG_ReadAngle(sizebuf_t * sb);
[all …]
/dports/games/qwdtools/mvdsv-0.34/src/
H A Dcommon.h34 } sizebuf_t; typedef
42 void SZ_Clear (sizebuf_t *buf);
47 void SZ_Print (sizebuf_t *buf, const char *data);
71 void MSG_WriteChar (sizebuf_t *sb, const int c);
72 void MSG_WriteByte (sizebuf_t *sb, const int c);
73 void MSG_WriteShort (sizebuf_t *sb, const int c);
74 void MSG_WriteLong (sizebuf_t *sb, const int c);
75 void MSG_WriteFloat (sizebuf_t *sb, const float f);
77 void MSG_WriteCoord (sizebuf_t *sb, const float f);
78 void MSG_WriteAngle (sizebuf_t *sb, const float f);
[all …]
/dports/games/mvdsv/mvdsv-0.34/src/
H A Dcommon.h34 } sizebuf_t; typedef
42 void SZ_Clear (sizebuf_t *buf);
47 void SZ_Print (sizebuf_t *buf, const char *data);
71 void MSG_WriteChar (sizebuf_t *sb, const int c);
72 void MSG_WriteByte (sizebuf_t *sb, const int c);
73 void MSG_WriteShort (sizebuf_t *sb, const int c);
74 void MSG_WriteLong (sizebuf_t *sb, const int c);
75 void MSG_WriteFloat (sizebuf_t *sb, const float f);
77 void MSG_WriteCoord (sizebuf_t *sb, const float f);
78 void MSG_WriteAngle (sizebuf_t *sb, const float f);
[all …]
/dports/games/uhexen2/hexen2source-1.5.9/engine/h2shared/
H A Dmsg_io.h27 void MSG_WriteChar (sizebuf_t *sb, int c);
28 void MSG_WriteByte (sizebuf_t *sb, int c);
29 void MSG_WriteShort (sizebuf_t *sb, int c);
30 void MSG_WriteLong (sizebuf_t *sb, int c);
31 void MSG_WriteFloat (sizebuf_t *sb, float f);
32 void MSG_WriteString (sizebuf_t *sb, const char *s);
33 void MSG_WriteCoord (sizebuf_t *sb, float f);
34 void MSG_WriteAngle (sizebuf_t *sb, float f);
37 void MSG_WriteAngle16 (sizebuf_t *sb, float f);
38 void MSG_WriteUsercmd (sizebuf_t *sb, const struct usercmd_s *cmd, qboolean long_msg);
/dports/games/tenebrae/tenebrae_0/
H A Dcommon.h41 } sizebuf_t; typedef
43 void SZ_Alloc (sizebuf_t *buf, int startsize);
44 void SZ_Free (sizebuf_t *buf);
45 void SZ_Clear (sizebuf_t *buf);
46 void *SZ_GetSpace (sizebuf_t *buf, int length);
99 void MSG_WriteChar (sizebuf_t *sb, int c);
100 void MSG_WriteByte (sizebuf_t *sb, int c);
101 void MSG_WriteShort (sizebuf_t *sb, int c);
102 void MSG_WriteLong (sizebuf_t *sb, int c);
103 void MSG_WriteFloat (sizebuf_t *sb, float f);
[all …]
/dports/games/q2pro/q2pro/include/
H A Dq_msg.h33 } sizebuf_t; typedef
35 void SZ_Init( sizebuf_t *buf, byte *data, int length );
36 void SZ_Clear( sizebuf_t *buf );
37 void *SZ_GetSpace( sizebuf_t *buf, int length );
39 void SZ_WriteByte( sizebuf_t *sb, int c );
40 void SZ_WriteShort( sizebuf_t *sb, int c );
41 void SZ_WriteLong( sizebuf_t *sb, int c );
42 void SZ_WritePos( sizebuf_t *sb, const vec3_t pos );
68 extern sizebuf_t msg_write;
71 extern sizebuf_t msg_read;
[all …]
/dports/games/nehquake/NehQuake-bjp-bin-src.linux/src/
H A Dcommon.h41 } sizebuf_t; typedef
43 void SZ_Alloc (sizebuf_t *buf, int startsize);
44 void SZ_Free (sizebuf_t *buf);
45 void SZ_Clear (sizebuf_t *buf);
46 void *SZ_GetSpace (sizebuf_t *buf, int length);
114 void MSG_WriteChar (sizebuf_t *sb, int c);
115 void MSG_WriteByte (sizebuf_t *sb, int c);
116 void MSG_WriteShort (sizebuf_t *sb, int c);
117 void MSG_WriteLong (sizebuf_t *sb, int c);
118 void MSG_WriteFloat (sizebuf_t *sb, float f);
[all …]
/dports/games/libretro-tyrquake/tyrquake-e76477d/common/
H A Dcommon.h59 } sizebuf_t; typedef
62 void SZ_Alloc(sizebuf_t *buf, int startsize);
63 void SZ_Free(sizebuf_t *buf);
65 void SZ_Clear(sizebuf_t *buf);
165 void MSG_WriteChar(sizebuf_t *sb, int c);
166 void MSG_WriteByte(sizebuf_t *sb, int c);
167 void MSG_WriteShort(sizebuf_t *sb, int c);
168 void MSG_WriteLong(sizebuf_t *sb, int c);
169 void MSG_WriteFloat(sizebuf_t *sb, float f);
173 void MSG_WriteCoord(sizebuf_t *sb, float f);
[all …]
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dcommon.h52 } sizebuf_t; typedef
54 void SZ_Clear (sizebuf_t *buf);
57 void SZ_HexDumpToConsole(const sizebuf_t *buf);
178 void MSG_WriteChar (sizebuf_t *sb, int c);
179 void MSG_WriteByte (sizebuf_t *sb, int c);
180 void MSG_WriteShort (sizebuf_t *sb, int c);
181 void MSG_WriteLong (sizebuf_t *sb, int c);
182 void MSG_WriteFloat (sizebuf_t *sb, float f);
185 void MSG_WriteAngle8i (sizebuf_t *sb, float f);
186 void MSG_WriteAngle16i (sizebuf_t *sb, float f);
[all …]
/dports/games/vkquake/vkQuake-1.12.2/Quake/
H A Dcommon.h59 } sizebuf_t; typedef
61 void SZ_Alloc (sizebuf_t *buf, int startsize);
62 void SZ_Free (sizebuf_t *buf);
63 void SZ_Clear (sizebuf_t *buf);
64 void *SZ_GetSpace (sizebuf_t *buf, int length);
99 void MSG_WriteChar (sizebuf_t *sb, int c);
100 void MSG_WriteByte (sizebuf_t *sb, int c);
101 void MSG_WriteShort (sizebuf_t *sb, int c);
102 void MSG_WriteLong (sizebuf_t *sb, int c);
103 void MSG_WriteFloat (sizebuf_t *sb, float f);
[all …]

12345678910>>...19