Home
last modified time | relevance | path

Searched refs:_head (Results 1 - 3 of 3) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
H A Dllist.h53 t **_head = &(head), *_item = (item); \
55 if ((_item->next = *_head)) \
58 *_head = _item; \
64 t **_head = &(head), *_item = (item); \
71 pa_assert(*_head == _item); \
72 *_head = _item->next; \
80 t **_head = (head), *_item = (item); \
81 *_head = _item; \
82 pa_assert(_head); \
83 while ((*_head)
[all...]
/third_party/zlib/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs21 private int _head; field in DotZLib.CircularBuffer
32 _head = 0; in CircularBuffer()
65 destination[offset + i] = _buffer[(_head+i) % _capacity]; in Get()
66 _head += trueCount; in Get()
67 _head %= _capacity; in Get()
77 int result = (int)_buffer[_head++ % _capacity]; in Get()
/third_party/eudev/src/shared/
H A Dlist.h50 typeof(*(head)) **_head = &(head), *_item = (item); \
52 if ((_item->name##_next = *_head)) \
55 *_head = _item; \
61 typeof(*(head)) **_head = &(head), *_item = (item); \
68 assert(*_head == _item); \
69 *_head = _item->name##_next; \
103 typeof(*(head)) **_head = &(head), *_a = (a), *_b = (b); \
106 if ((_b->name##_next = *_head)) \
109 *_head = _b; \

Completed in 2 milliseconds