Home
last modified time | relevance | path

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

/f-stack/app/micro_thread/
H A Dheap.h98 int _count; variable
107 _count = 0;
115 _count = 0; in ~HeapList()
146 return _count; in HeapSize()
251 _count++; in HeapPush()
252 _list[_count] = item; in HeapPush()
253 item->SetIndex(_count); in HeapPush()
271 _list[_count] = 0; in HeapPop()
273 _count--; in HeapPop()
298 _list[_count] = 0; in HeapDelete()
[all …]
H A Dhash_list.h73 _count = 0;
80 _count = 0; in ~HashList()
84 return _count; in HashSize()
105 _count++; in HashInsert()
169 _count--; in HashRemove()
237 int _count; variable
H A Dmt_net.h53 _count = 0; in CRecyclePool()
65 _count = 0; in ~CRecyclePool()
73 _count--; in AllocItem()
90 _count++; in FreeItem()
104 _count--; in RecycleItem()
116 uint32_t _count; variable
/f-stack/freebsd/sys/
H A D_umtx.h66 volatile __uint32_t _count; member
71 volatile __uint32_t _count; /* Waiters flag in high bit. */ member
H A Dlinker.h162 void *_start, void *_stop, int *_count);
H A Dacl.h396 acl_t acl_init(int _count);
/f-stack/tools/compat/include/sys/
H A Dlinker.h154 void *_start, void *_stop, int *_count);
/f-stack/freebsd/kern/
H A Dbus_if.m288 * @param _count hint at the size of range required - pass @c 1
304 rman_res_t _count;
558 * to start at @p _start and to include @p _count indices in its
566 * @param _count the size of the resource range
574 rman_res_t _count;
589 * @param _count the address of a location to receive the size
H A Dkern_umtx.c3189 rv1 = fueword32(&sem->_count, &count); in do_sem_wait()
3289 rv = fueword32(&sem->_count, &count); in do_sem2_wait()
3309 rv = casueword32(&sem->_count, 0, &count, USEM_HAS_WAITERS); in do_sem2_wait()
3374 rv = fueword32(&sem->_count, &count); in do_sem2_wake()
3376 rv = casueword32(&sem->_count, count, &count, in do_sem2_wake()