Searched refs:_head (Results 1 – 3 of 3) sorted by relevance
53 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 …]
8 const _head = Symbol('_head') constant49 if (!this[_head])55 if (this[_head])56 streams.push(this[_head])111 this[_head] = stream115 if (stream === this[_head])119 return this[_head].write(chunk, enc, cb) &&123 this[_head].end(chunk, enc, cb)
21 private int _head; field in DotZLib.CircularBuffer32 _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()