OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SZ_GetSpace
(Results
1 - 4
of
4
) sorted by null
/external/quake/quake/src/WinQuake/
common.cpp
519
buf = (byte*)
SZ_GetSpace
(sb, 1);
532
buf = (byte*)
SZ_GetSpace
(sb, 1);
545
buf = (byte*)
SZ_GetSpace
(sb, 2);
554
buf = (byte*)
SZ_GetSpace
(sb, 4);
754
void *
SZ_GetSpace
(sizebuf_t *buf, int length)
761
Sys_Error ("
SZ_GetSpace
: overflow without allowoverflow set");
764
Sys_Error ("
SZ_GetSpace
: %i is > full buffer size", length);
767
Con_Printf ("
SZ_GetSpace
: overflow");
779
Q_memcpy (
SZ_GetSpace
(buf,length),data,length);
790
Q_memcpy ((byte *)
SZ_GetSpace
(buf, len),data,len); // no trailing
[
all
...]
common.h
51
void *
SZ_GetSpace
(sizebuf_t *buf, int length);
/external/quake/quake/src/QW/client/
common.c
520
buf =
SZ_GetSpace
(sb, 1);
533
buf =
SZ_GetSpace
(sb, 1);
546
buf =
SZ_GetSpace
(sb, 2);
555
buf =
SZ_GetSpace
(sb, 4);
856
void *
SZ_GetSpace
(sizebuf_t *buf, int length)
863
Sys_Error ("
SZ_GetSpace
: overflow without allowoverflow set (%d)", buf->maxsize);
866
Sys_Error ("
SZ_GetSpace
: %i is > full buffer size", length);
868
Sys_Printf ("
SZ_GetSpace
: overflow\n"); // because Con_Printf may be redirected
881
Q_memcpy (
SZ_GetSpace
(buf,length),data,length);
891
Q_memcpy ((byte *)
SZ_GetSpace
(buf, len),data,len); // no trailing
[
all
...]
common.h
47
void *
SZ_GetSpace
(sizebuf_t *buf, int length);
Completed in 18 milliseconds