Home
last modified time | relevance | path

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

/third_party/pulseaudio/src/pulsecore/
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)->prev) \
[all …]
/third_party/node/deps/npm/node_modules/minipass-pipeline/
Dindex.js8 const _head = Symbol('_head') constant
49 if (!this[_head])
55 if (this[_head])
56 streams.push(this[_head])
111 this[_head] = stream
115 if (stream === this[_head])
119 return this[_head].write(chunk, enc, cb) &&
123 this[_head].end(chunk, enc, cb)
/third_party/zlib/contrib/dotzlib/DotZLib/
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()