Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/subsys/testsuite/ztest/src/
Dztest_mock.c121 unsigned int allocation_index = param - params; in free_parameter() local
126 __ASSERT(allocation_index < CONFIG_ZTEST_PARAMETER_COUNT, in free_parameter()
129 sys_bitfield_clear_bit((mem_addr_t)params_allocation, allocation_index); in free_parameter()
134 int allocation_index; in alloc_parameter() local
137 allocation_index = sys_bitfield_find_first_clear( in alloc_parameter()
139 if (allocation_index == -1) { in alloc_parameter()
143 sys_bitfield_set_bit((mem_addr_t)params_allocation, allocation_index); in alloc_parameter()
144 param = params + allocation_index; in alloc_parameter()