Home
last modified time | relevance | path

Searched refs:hightag (Results 1 – 25 of 26) sorted by relevance

12

/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/
H A Dz_native.c292 void Z_FreeTags(int lowtag, int hightag) in Z_FreeTags() argument
296 for (i=lowtag; i<= hightag; ++i) in Z_FreeTags()
332 void Z_DumpHeap(int lowtag, int hightag) in Z_DumpHeap() argument
343 lowtag, hightag); in Z_DumpHeap()
347 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
H A Dz_zone.h56 void Z_FreeTags (int lowtag, int hightag);
57 void Z_DumpHeap (int lowtag, int hightag);
H A Dz_zone.c364 int hightag ) in Z_FreeTags() argument
380 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
394 int hightag ) in Z_DumpHeap() argument
402 lowtag, hightag); in Z_DumpHeap()
406 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/
H A Dz_native.c292 void Z_FreeTags(int lowtag, int hightag) in Z_FreeTags() argument
296 for (i=lowtag; i<= hightag; ++i) in Z_FreeTags()
332 void Z_DumpHeap(int lowtag, int hightag) in Z_DumpHeap() argument
343 lowtag, hightag); in Z_DumpHeap()
347 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
H A Dz_zone.h56 void Z_FreeTags (int lowtag, int hightag);
57 void Z_DumpHeap (int lowtag, int hightag);
H A Dz_zone.c371 int hightag ) in Z_FreeTags() argument
387 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
401 int hightag ) in Z_DumpHeap() argument
409 lowtag, hightag); in Z_DumpHeap()
413 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
/dports/games/rottdc/rottdc-1.0-2/rott/
H A Dz_zone.c480 void Z_FreeTags (int lowtag, int hightag) in Z_FreeTags() argument
490 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
499 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
512 void Z_DumpHeap (int lowtag, int hightag) in Z_DumpHeap() argument
519 SoftError("tag range: %i to %i\n",lowtag, hightag); in Z_DumpHeap()
525 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
549 SoftError("tag range: %i to %i\n",lowtag, hightag); in Z_DumpHeap()
555 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
H A Dz_zone.h66 void Z_FreeTags (int lowtag, int hightag); // Free a series of memory tags
67 void Z_DumpHeap (int lowtag, int hightag); // Dump the heap (for debugging purposes)
/dports/games/heretic/glheretic-1.2/
H A Dz_zone.c251 void Z_FreeTags (int lowtag, int hightag) in Z_FreeTags() argument
262 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
275 void Z_DumpHeap (int lowtag, int hightag) in Z_DumpHeap() argument
280 printf ("tag range: %i to %i\n",lowtag, hightag); in Z_DumpHeap()
284 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
H A Ddoomdef.h932 void Z_FreeTags (int lowtag, int hightag);
933 void Z_DumpHeap (int lowtag, int hightag);
/dports/games/libretro-prboom/libretro-prboom-cc80175/src/
H A Dz_zone.c217 void Z_FreeTags(int lowtag, int hightag) in Z_FreeTags() argument
223 if (hightag > PU_CACHE) in Z_FreeTags()
224 hightag = PU_CACHE; in Z_FreeTags()
226 for (;lowtag <= hightag; lowtag++) in Z_FreeTags()
H A Dz_zone.h70 void (Z_FreeTags)(int lowtag, int hightag DA(const char *, int));
/dports/games/odamex/odamex-src-0.7.0/common/
H A Dz_zone.cpp290 int hightag ) in Z_FreeTags() argument
310 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
322 int hightag ) in Z_DumpHeap() argument
327 Printf (PRINT_HIGH, "tag range: %i to %i\n", lowtag, hightag); in Z_DumpHeap()
331 if (block->tag >= lowtag && block->tag <= hightag) in Z_DumpHeap()
H A Dz_zone.h50 void Z_FreeTags (int lowtag, int hightag);
51 void Z_DumpHeap (int lowtag, int hightag);
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dz_zone.h112 void Z_FreeTags(INT32 lowtag, INT32 hightag);
116 void Z_IterateTags(INT32 lowtag, INT32 hightag, boolean (*iterfunc)(void *));
146 size_t Z_TagsUsage(INT32 lowtag, INT32 hightag);
H A Dz_zone.c485 void Z_FreeTags(INT32 lowtag, INT32 hightag) in Z_FreeTags() argument
494 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()
505 void Z_IterateTags(INT32 lowtag, INT32 hightag, boolean (*iterfunc)(void *)) in Z_IterateTags() argument
516 if (block->tag >= lowtag && block->tag <= hightag) in Z_IterateTags()
770 size_t Z_TagsUsage(INT32 lowtag, INT32 hightag) in Z_TagsUsage() argument
777 if (rover->tag < lowtag || rover->tag > hightag) in Z_TagsUsage()
H A Dr_patch.c122 void Patch_FreeTags(INT32 lowtag, INT32 hightag) in Patch_FreeTags() argument
124 Z_IterateTags(lowtag, hightag, Patch_FreeTagsCallback); in Patch_FreeTags()
H A Dr_patch.h24 void Patch_FreeTags(INT32 lowtag, INT32 hightag);
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/
H A Dz_zone.h107 void Z_FreeTags(memtag_e lowtag, memtag_e hightag);
108 void Z_DumpHeap(memtag_e lowtag, memtag_e hightag);
H A Dz_zone.c898 void Z_FreeTags( memtag_e lowtag, memtag_e hightag ) in Z_FreeTags() argument
917 if (block->memtag >= lowtag && block->memtag <= hightag) in Z_FreeTags()
924 if (block->memtag >= lowtag && block->memtag <= hightag) in Z_FreeTags()
968 void Z_DumpHeap(memtag_e lowtag, memtag_e hightag) in Z_DumpHeap() argument
976 lowtag, hightag); in Z_DumpHeap()
980 if (block->memtag >= lowtag && block->memtag <= hightag) in Z_DumpHeap()
/dports/games/prboom/prboom-2.5.0/src/
H A Dz_zone.c518 void (Z_FreeTags)(int lowtag, int hightag
531 if (hightag > PU_CACHE)
532 hightag = PU_CACHE;
534 for (;lowtag <= hightag; lowtag++)
H A Dz_zone.h75 void (Z_FreeTags)(int lowtag, int hightag DA(const char *, int));
/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/
H A Dz_zone.c518 void (Z_FreeTags)(int lowtag, int hightag
531 if (hightag > PU_CACHE)
532 hightag = PU_CACHE;
534 for (;lowtag <= hightag; lowtag++)
H A Dz_zone.h75 void (Z_FreeTags)(int lowtag, int hightag DA(const char *, int));
/dports/games/uhexen/uhexen-0.601/src/
H A Dz_zone.c247 void Z_FreeTags (int lowtag, int hightag) in Z_FreeTags() argument
257 if (block->tag >= lowtag && block->tag <= hightag) in Z_FreeTags()

12