Home
last modified time | relevance | path

Searched refs:NbrAllocatedLines (Results 1 – 2 of 2) sorted by relevance

/dports/games/cake/cake_src/cake/
H A Dconsole.cpp286 NbrAllocatedLines = LINESBLOC; in Console()
289 …ConsoleLines = (ConsLine*) cake_malloc(NbrAllocatedLines*sizeof(ConsLine), "Console::Console.… in Console()
290 for (i = 0; i < NbrAllocatedLines; ++i) ConsoleLines[i].Init(); in Console()
323 for (int i = 0; i < NbrAllocatedLines; ++i) ConsoleLines[i].Shut(); in ~Console()
350 for (i = 0; i < NbrAllocatedLines; ++i) ConsoleLines[i].Shut(); in Clear()
356 NbrAllocatedLines = LINESBLOC; in Clear()
357 …ConsoleLines = (ConsLine*) cake_malloc(NbrAllocatedLines*sizeof(ConsLine), "Console::Clear.Console… in Clear()
358 for (i = 0; i < NbrAllocatedLines; ++i) ConsoleLines[i].Init(); in Clear()
635 if (NbrUsedLines == NbrAllocatedLines) in AddLine()
639 for (int i = NbrAllocatedLines; i < NbrAllocatedLines+LINESBLOC; ++i) ConsoleLines[i].Init(); in AddLine()
[all …]
H A Dconsole.h141 long NbrAllocatedLines; /**< number of allocated lines */ variable