HomeSort by: relevance | last modified time | path
    Searched refs:_head (Results 1 - 13 of 13) sorted by relevancy

  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 21 private int _head; field in class:DotZLib.CircularBuffer
32 _head = 0;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
66 _head += trueCount;
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 21 private int _head; field in class:DotZLib.CircularBuffer
32 _head = 0;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
66 _head += trueCount;
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 21 private int _head; field in class:DotZLib.CircularBuffer
32 _head = 0;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
66 _head += trueCount;
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 21 private int _head; field in class:DotZLib.CircularBuffer
32 _head = 0;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
66 _head += trueCount;
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 21 private int _head; field in class:DotZLib.CircularBuffer
32 _head = 0;
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
66 _head += trueCount;
67 _head %= _capacity;
77 int result = (int)_buffer[_head++ % _capacity];
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/
slist.d 233 private Node * _head;
234 private this(Node * p) { _head = p; }
237 @property bool empty() const { return !_head; }
243 return _head._payload;
250 _head = _head._next;
261 return move(_head._payload);
266 return _head && _head == rhs._head;
    [all...]
  /src/external/gpl2/lvm2/dist/libdm/mm/
dbg_malloc.c 56 static struct memblock *_head = 0; variable in typeref:struct:memblock
103 if (!_head)
104 _head = _tail = nb;
150 _head = mb->next;
194 if (_head)
197 for (mb = _head; mb; mb = mb->next) {
216 if (_head)
224 struct memblock *mb = _head;
  /src/external/bsd/atf/dist/atf-c/
macros.h 58 static void atfu_ ## tc ## _head(atf_tc_t *); \
63 .m_head = atfu_ ## tc ## _head, \
69 static void atfu_ ## tc ## _head(atf_tc_t *); \
75 .m_head = atfu_ ## tc ## _head, \
83 atfu_ ## tc ## _head(atf_tc_t *tcptr ATF_DEFS_ATTRIBUTE_UNUSED)
86 (atfu_ ## tc ## _head)
  /src/external/bsd/atf/dist/atf-sh/
libatf-sh.subr 72 # named after it: <tc-name>_head and <tc-name>_body, and optionally by
377 # accompanied by two functions named after it: <tc-name>_head and
383 eval "${1}_head() { :; }"
575 ${1}_head
  /src/usr.bin/man/
manconf.c 65 TAILQ_HEAD(_head, _tag);
66 static struct _head head; /* 'head' -- top level data structure */
  /src/crypto/external/apache2/openssl/dist/include/internal/
list.h 28 OSSL_LIST_FOREACH_FROM(p, name, ossl_list_##name##_head(l))
42 OSSL_LIST_FOREACH_DELSAFE_FROM(p, pn, name, ossl_list_##name##_head(l))
91 ossl_list_##name##_head(const OSSL_LIST(name) * list) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
printers.py 411 self._head = head.address
418 if self._base == self._head:
647 self._head = head
651 nodes = self._head.type.fields()
654 self._head = self._head.cast(nodes[0].type)
662 # For a GCC 5+ tuple self._head is None after visiting all nodes:
663 if not self._head:
665 nodes = self._head.type.fields()
676 impl = self._head.cast(nodes[0].type
    [all...]
  /src/tests/lib/libc/stdio/
t_fmemopen.c 39 #define ATF_TC(arg0) static void arg0##_head(void)
40 #define ATF_TC_HEAD(arg0, arg1) static void arg0##_head()
48 #define ATF_TP_ADD_TC(arg0, arg1) arg1##_head(); arg1##_body()

Completed in 38 milliseconds