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

1 2 3 4 5 6 7 8 91011>>

  /external/libnl/lib/route/sch/
netem.c 296 struct nlattr* tail = (struct nlattr *)(((void *) (msg->nm_nlh)) + local
300 head->nla_len = (void *)tail - (void *)head;
  /external/libsepol/src/
conditional.c 271 cond_expr_t *cur, *head, *tail, *new_expr; local
272 tail = head = NULL;
285 if (tail)
286 tail->next = new_expr;
287 tail = new_expr;
294 tail = head->next;
296 head = tail;
622 cond_av_list_t *tail; member in struct:cond_insertf_data
701 data->tail->next = list;
702 data->tail = list
    [all...]
  /external/libvpx/libvpx/vpx_mem/
vpx_mem_tracker.c 99 * tail; member in struct:memory_tracker
166 memtrack.tail = memtrack.head;
228 memtrack.tail = NULL;
539 p->prev = memtrack.tail;
548 memtrack.tail = p;
590 memtrack.tail = p->prev;
  /external/skia/experimental/Intersection/
SkAntiEdge.cpp 503 SkAntiEdge* tail = fEdges.end(); local
507 for (active = prev + 1; active != tail; ++active) {
523 if (++prev == tail) {
527 for (active = prev + 1; active != tail; ++active) {
601 SkAntiEdge tail; local
602 tail.fFirstY = tail.fLastY = kEDGE_TAIL_XY;
603 *list.append() = &tail;
    [all...]
  /external/skia/src/core/
SkString.cpp 605 size_t tail = size - offset - length; local
606 SkASSERT((int32_t)tail >= 0);
607 if (tail) {
609 memcpy(dst + offset, src + offset + length, tail);
SkTLList.h 106 iterator refers to a NULL location then the new element is added at the tail */
117 /** Convenience methods for getting an iterator initialized to the head/tail of the list. */
122 T* tail() { return Iter(*this, Iter::kTail_IterStart).get(); } function in class:SkTLList
124 const T* tail() const { return Iter(*this, Iter::kTail_IterStart).get(); } function in class:SkTLList
196 //!< Start the iterator at the tail of the list.
  /external/srec/portable/src/
pstream.c 943 const char *tail; local
951 tail = PortFile->filename + (lenny - 11);
953 tail = PortFile->filename;
954 /* printf( "8.3 filename is %s.\n", tail ); */
961 return PortSaveFileToDisk(PortFile, "/CFC", tail);
  /external/strace/
unwind.c 84 struct call_t *tail; member in struct:queue_t
114 tcp->queue->tail = NULL;
506 queue->tail = call;
508 queue->tail->next = call;
509 queue->tail = call;
541 queue->tail = NULL;
  /external/tremolo/Tremolo/
ogg.h 88 ogg_reference *tail; member in struct:oggpack_buffer
91 long count; /* doesn't count the tail */
  /external/wpa_supplicant_8/src/ap/
beacon.c 722 u8 *tail = NULL; local
744 tailpos = tail = os_malloc(tail_len);
745 if (head == NULL || tail == NULL) {
748 os_free(tail);
792 tail + BEACON_TAIL_BUF_SIZE - tailpos);
804 tailpos = hostapd_eid_wpa(hapd, tailpos, tail + BEACON_TAIL_BUF_SIZE -
808 tail + BEACON_TAIL_BUF_SIZE - tailpos);
826 tailpos = hostapd_add_csa_elems(hapd, tailpos, tail,
868 tail_len = tailpos > tail ? tailpos - tail : 0
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 355 struct wpa_ssid *ssid, *tail, *head; local
372 tail = head = config->ssid;
373 while (tail && tail->next)
374 tail = tail->next;
398 head = tail = ssid;
400 tail->next = ssid;
401 tail = ssid;
config_winreg.c 375 struct wpa_ssid *ssid, *tail = NULL, *head = NULL; local
417 head = tail = ssid;
419 tail->next = ssid;
420 tail = ssid;
  /frameworks/native/libs/binder/
MemoryDealer.cpp 59 NODE const* tail() const { return mLast; } function in class:android::LinkedList
60 NODE* tail() { return mLast; } function in class:android::LinkedList
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
vpx_mem_tracker.c 99 * tail; member in struct:memory_tracker
166 memtrack.tail = memtrack.head;
228 memtrack.tail = NULL;
539 p->prev = memtrack.tail;
548 memtrack.tail = p;
590 memtrack.tail = p->prev;
  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 62 * thus avoiding head and tail wrapping around to equal each
71 * arbitrary number equal to tail if the deque is empty.
76 * The index at which the next element would be added to the tail
79 private transient int tail; field in class:ArrayDeque
115 * when head and tail have wrapped around to become equal.
118 // assert head == tail;
130 tail = n;
141 if (head < tail) {
143 } else if (head > tail) {
146 System.arraycopy(elements, 0, a, headPortionLen, tail);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 25 * The <em>tail</em> of the queue is that element that has been on the
27 * are inserted at the tail of the queue, and the queue retrieval
93 * reached in O(1) time from tail, but tail is merely an
117 * Both head and tail are permitted to lag. In fact, failing to
121 * that is, we update head/tail when the current pointer appears
124 * Since head and tail are updated concurrently and independently,
125 * it is possible for tail to lag behind head (why not)?
140 * Both head and tail may or may not point to a Node with a
142 * be null. Upon creation, both head and tail refer to a dumm
218 private transient volatile Node<E> tail; field in class:ConcurrentLinkedQueue
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 454 Map tail = tm.tailMap(objArray[900].toString()); local
455 assertTrue("Returned map of incorrect size : " + tail.size(), tail
458 assertTrue("Map contains incorrect entries", tail
486 assertTrue(tail instanceof Serializable);
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 299 char *tail; /* string unmatched by rest of RE */ local
352 tail = slow(m, rest, stop, es, stopst);
353 if (tail == stop)
377 tail = slow(m, rest, stop, es, stopst);
378 if (tail == stop)
414 tail = slow(m, rest, stop, es, stopst);
415 if (tail == stop)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
typelist.h 70 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
typelist.h 70 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
typelist.h 70 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 66 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 66 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 66 typedef Typelist tail; typedef in struct:typelist::chain
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
typelist.h 66 typedef Typelist tail; typedef in struct:typelist::chain

Completed in 822 milliseconds

1 2 3 4 5 6 7 8 91011>>