Home
last modified time | relevance | path

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

/dports/databases/pgbackrest/pgbackrest-release-2.35/src/common/
H A DmemContext.c233 if (memContext->contextChildFreeIdx == memContext->contextChildListSize) in memContextNewIndex()
236 if (memContext->contextChildListSize == 0) in memContextNewIndex()
242 memContext->contextChildListSize = MEM_CONTEXT_INITIAL_SIZE; in memContextNewIndex()
248 unsigned int contextChildListSizeNew = memContext->contextChildListSize * 2; in memContextNewIndex()
255 memContext->contextChildListSize = contextChildListSizeNew; in memContextNewIndex()
544 for (contextIdx = 0; contextIdx < parentOld->contextChildListSize; contextIdx++) in memContextMove()
554 if (contextIdx == parentOld->contextChildListSize) in memContextMove()
745 sizeof(MemContext) + (this->contextChildListSize * sizeof(MemContext *)) + in memContextSize()
820 if (this->contextChildListSize > 0) in memContextFree()
839 if (this->contextChildListSize > 0) in memContextFree()
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/module/common/
H A DmemContextTest.c84 …TEST_RESULT_INT(memContextTop()->contextChildListSize, 0, "top context should init with zero child… in testRun()
97 …TEST_RESULT_INT(memContextTop()->contextChildListSize, MEM_CONTEXT_INITIAL_SIZE, "initial top cont… in testRun()
119 …TEST_RESULT_INT(memContextTop()->contextChildListSize, MEM_CONTEXT_INITIAL_SIZE * 2, "increased ch… in testRun()
150 …memContextTop()->contextChildList[MEM_CONTEXT_INITIAL_SIZE]->contextChildListSize, MEM_CONTEXT_INI… in testRun()