HomeSort by relevance Sort by last modified time
    Searched defs:tail (Results 101 - 125 of 486) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
example-typelist.cpp 7 template<typename Head, typename Tail = nil>
10 typedef Tail tail; typedef in struct:cons
27 template<typename Head, typename Tail>
28 struct length<cons<Head, Tail> > {
29 static const unsigned value = length<Tail>::value + 1;
50 typedef typename reverse<typename T::tail>::type reversed_tail;
52 typedef typename reverse<typename reversed_tail::tail>::type most_of_tail;
83 struct find : find<typename List::tail, T> { };
85 template<typename Tail, typename T
    [all...]
  /external/fio/
io_u_queue.h 39 unsigned int tail; member in struct:io_u_ring
49 if (r->head + 1 != r->tail) {
60 if (r->head != r->tail) {
61 struct io_u *io_u = r->ring[r->tail];
63 r->tail = (r->tail + 1) & (r->max - 1);
72 return ring->head == ring->tail;
  /external/iproute2/ip/
iplink_vlan.c 48 struct rtattr *tail; local
50 tail = NLMSG_TAIL(n);
69 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *)tail;
  /external/iproute2/tc/
m_gact.c 104 struct rtattr *tail; local
190 tail = NLMSG_TAIL(n);
198 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
m_nat.c 92 struct rtattr *tail; local
157 tail = NLMSG_TAIL(n);
160 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
m_skbedit.c 57 struct rtattr *tail; local
142 tail = NLMSG_TAIL(n);
154 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
q_choke.c 46 struct rtattr *tail; local
157 tail = NLMSG_TAIL(n);
163 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
q_red.c 46 struct rtattr *tail; local
147 tail = NLMSG_TAIL(n);
153 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
f_flow.c 138 struct rtattr *tail; local
153 tail = NLMSG_TAIL(n);
265 tail->rta_len = (void *)NLMSG_TAIL(n) - (void *)tail;
f_rsvp.c 176 struct rtattr *tail; local
191 tail = NLMSG_TAIL(n);
284 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
m_csum.c 94 struct rtattr *tail; local
165 tail = NLMSG_TAIL(n);
168 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
  /external/mesa3d/src/gallium/auxiliary/util/
u_ringbuffer.c 18 unsigned tail; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
135 ring_packet = &ring->buf[ring->tail];
149 packet[i] = ring->buf[ring->tail];
150 ring->tail++;
151 ring->tail &= ring->mask;
  /external/opencv/cvaux/src/
extendededges.cpp 137 CvSeq* tail = 0; local
184 if( tail )
186 tail->v_next = newseq;
187 newseq->v_prev = tail;
188 tail = newseq;
192 output = tail = newseq;
204 if( tail )
206 tail->v_next = newseq;
207 newseq->v_prev = tail;
208 tail = newseq
    [all...]
  /external/oprofile/libutil++/
string_manip.cpp 40 string const tail = s.substr(i + 1); local
42 return tail;
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlEntities.java 59 int tail = -1; local
62 end = tail = entityLimit;
69 tail = end + 1;
92 tail = i;
191 return (((long) tail) << 32) | codepoint;
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 66 int64 tail = GetTail(); local
67 return tail + size_ - head_logical_;
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.cpp 50 int tail; member in struct:ring_buffer
71 // just before the tail (meaning that the head would advance to the
72 // current location of the tail), we're about to overflow the buffer
74 if (i != rx_buffer->tail) {
234 return (unsigned int)(RX_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) % RX_BUFFER_SIZE;
239 if (_rx_buffer->head == _rx_buffer->tail) {
242 return _rx_buffer->buffer[_rx_buffer->tail];
248 // if the head isn't ahead of the tail, we don't have any characters
249 if (_rx_buffer->head == _rx_buffer->tail) {
252 unsigned char c = _rx_buffer->buffer[_rx_buffer->tail];
    [all...]
  /external/bluetooth/bluedroid/osi/src/
list.c 13 list_node_t *tail; member in struct:list_t
71 return list->tail->data;
86 if (list->tail == prev_node)
87 list->tail = node;
106 if (list->tail == NULL)
107 list->tail = list->head;
125 if (list->tail == NULL) {
127 list->tail = node;
129 list->tail->next = node;
130 list->tail = node
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteStatement.cpp 75 const char* tail = 0; local
76 int error = sqlite3_prepare_v2(m_database.sqlite3Handle(), query.data(), lengthIncludingNullCharacter, &m_statement, &tail);
80 else if (tail && *tail)
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 124 // tail
126 const uint8_t * tail = (const uint8_t*)(data + nblocks*4); local
132 case 3: k1 ^= tail[2] << 16;
133 case 2: k1 ^= tail[1] << 8;
134 case 1: k1 ^= tail[0];
196 // tail
198 const uint8_t * tail = (const uint8_t*)(data + nblocks*16); local
207 case 15: k4 ^= tail[14] << 16;
208 case 14: k4 ^= tail[13] << 8;
209 case 13: k4 ^= tail[12] << 0
289 const uint8_t * tail = (const uint8_t*)(data + nblocks*16); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_screen.h 32 struct nouveau_fence *tail; member in struct:nouveau_screen::__anon17438
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
dri_drawable.h 65 unsigned int tail; member in struct:dri_drawable
  /external/chromium_org/third_party/tcmalloc/chromium/src/
central_freelist.h 88 void *tail; // Tail of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
  /external/chromium_org/third_party/tcmalloc/vendor/src/
central_freelist.h 88 void *tail; // Tail of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
  /external/chromium_org/v8/src/
objects-visiting.cc 212 T* tail = NULL; local
225 ASSERT(tail != NULL);
226 WeakListVisitor<T>::SetWeakNext(tail, retained);
229 HeapObject::RawField(tail, WeakListVisitor<T>::WeakNextOffset());
233 // Retained object is new tail.
236 tail = candidate;
239 // tail is a live object, visit it.
240 WeakListVisitor<T>::VisitLiveObject(heap, tail, retainer);
250 if (tail != NULL) {
251 WeakListVisitor<T>::SetWeakNext(tail, undefined)
    [all...]

Completed in 912 milliseconds

1 2 3 45 6 7 8 91011>>