Searched refs:sys_bitarray_alloc (Results  1 – 16 of 16) sorted by relevance
| /Zephyr-latest/include/zephyr/sys/ | 
| D | bitarray.h | 168 int sys_bitarray_alloc(sys_bitarray_t *bitarray, size_t num_bits,
  | 
| /Zephyr-latest/lib/posix/options/ | 
| D | spinlock.c | 85 	ret = sys_bitarray_alloc(&posix_spinlock_bitarray, 1, &bit);  in pthread_spin_init()
  | 
| D | barrier.c | 119 	if (sys_bitarray_alloc(&posix_barrier_bitarray, 1, &bit) < 0) {  in pthread_barrier_init()
  | 
| D | cond.c | 79 	if (sys_bitarray_alloc(&posix_cond_bitarray, 1, &bit) < 0) {  in to_posix_cond()
  | 
| D | key.c | 80 	if (sys_bitarray_alloc(&posix_key_bitarray, 1, &bit) < 0) {  in to_posix_key()
  | 
| D | mutex.c | 93 	if (sys_bitarray_alloc(&posix_mutex_bitarray, 1, &bit) < 0) {  in to_posix_mutex()
  | 
| D | rwlock.c | 95 	if (sys_bitarray_alloc(&posix_rwlock_bitarray, 1, &bit) < 0) {  in to_posix_rwlock()
  | 
| /Zephyr-latest/kernel/ | 
| D | dynamic.c | 46 	rv = sys_bitarray_alloc(&dynamic_ba, 1, &offset);  in z_thread_stack_alloc_pool()
  | 
| D | mmu.c | 303 	ret = sys_bitarray_alloc(&virt_region_bitmap, num_bits, &offset);  in virt_region_alloc()
  | 
| /Zephyr-latest/subsys/portability/cmsis_rtos_v1/ | 
| D | cmsis_thread.c | 102 	ret = sys_bitarray_alloc((sys_bitarray_t *)(thread_def->status_mask),  in osThreadCreate()
  | 
| /Zephyr-latest/tests/kernel/common/src/ | 
| D | bitarray.c | 303 	ret = sys_bitarray_alloc(&ba_128, 5, &offset);  in alloc_and_free_predefined() 309 	ret = sys_bitarray_alloc(&ba_128, 16, &offset);  in alloc_and_free_predefined() 351 	ret = sys_bitarray_alloc(&ba_128, 34, &offset);  in alloc_and_free_predefined() 408 		ret = sys_bitarray_alloc(&ba, num_bits, &offset);  in alloc_and_free_loop() 469 		ret = sys_bitarray_alloc(&ba, 4, &offset);  in alloc_and_free_interval()
  | 
| /Zephyr-latest/cmake/sca/eclair/ECL/ | 
| D | call_properties.ecl | 47 -call_properties+={"name(sys_bitarray_alloc)", {"pointee_read(3=never)","pointee_write(3=maybe)","t…
  | 
| /Zephyr-latest/lib/os/zvfs/ | 
| D | zvfs_eventfd.c | 419 	if (sys_bitarray_alloc(&efds_bitarray, 1, &offset) < 0) {  in zvfs_eventfd()
  | 
| /Zephyr-latest/lib/mem_blocks/ | 
| D | mem_blocks.c | 27 	r = sys_bitarray_alloc(mem_block->bitmap, num_blocks, &offset);  in alloc_blocks()
  | 
| /Zephyr-latest/subsys/ipc/ipc_service/backends/ | 
| D | ipc_icbmsg.c | 353 		r = sys_bitarray_alloc(conf->tx_usage_bitmap, num_blocks,  in alloc_tx_buffer() 378 	r = sys_bitarray_alloc(conf->tx_usage_bitmap, num_blocks, &tx_block_index);  in alloc_tx_buffer()
  | 
| /Zephyr-latest/lib/utils/ | 
| D | bitarray.c | 491 int sys_bitarray_alloc(sys_bitarray_t *bitarray, size_t num_bits,  in sys_bitarray_alloc()  function
  |