HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 176 - 200 of 6142) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/adhd/cras/src/server/
cras_bt_endpoint.h 36 struct cras_bt_endpoint *prev, *next; member in struct:cras_bt_endpoint
cras_bt_profile.h 35 struct cras_bt_profile *prev, *next; member in struct:cras_bt_profile
dev_stream.h 41 struct dev_stream *prev, *next; member in struct:dev_stream
  /external/android-clat/
ring.c 78 ring->next = (struct tpacket2_hdr *) ring->base;
87 * advances to the next position in the packet ring
91 uint8_t *next = (uint8_t *) ring->next; local
94 next += TP_FRAME_SIZE;
101 next += TP_FRAME_GAP;
104 next = (uint8_t *) ring->base;
108 ring->next = (struct tpacket2_hdr *) next;
109 return ring->next;
    [all...]
ring.h 47 struct tpacket2_hdr *next; member in struct:packet_ring
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 75 ss.add(it.next());
79 int nextValue = it.next().intValue();
97 objArray[counter] == it.next());
106 objArray[counter] == it.next());
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 63 * The position of the next header in {@link #allHeaders allHeaders}.
97 * Determines the index of the next header.
102 * @return the index of the next header that matches the filter name,
140 * Obtains the next header from this iteration.
142 * @return the next header in this iteration
161 * Returns the next header.
164 * @return the next header in this iteration
168 public final Object next() method in class:BasicHeaderIterator
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 77 * Returns the next node in the set and advances the position of the
81 * @return The next <code>Node</code> in the set being iterated over, or
89 int next; local
91 m_lastFetched = next = (DTM.NULL == m_lastFetched)
95 // m_lastFetched = next;
96 if (DTM.NULL != next)
99 return next;
SelfIteratorNoPredicate.java 66 * Returns the next node in the set and advances the position of the
70 * @return The next <code>Node</code> in the set being iterated over, or
78 int next; local
80 m_lastFetched = next = (DTM.NULL == m_lastFetched)
84 // m_lastFetched = next;
85 if (DTM.NULL != next)
89 return next;
  /external/autotest/client/tests/monotonic_time/src/
cpuset.c 37 char *next; local
41 start = end = (int)strtol(s, &next, 0);
42 if (s == next)
44 s = next;
48 end = (int)strtol(s, &next, 0);
49 if (s == next)
51 s = next;
  /external/boringssl/src/include/openssl/
lhash.h 109 // for this element and to the next item in the chain. The linked-list is NULL
113 struct lhash_item_st *next; member in struct:lhash_item_st
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
jsmin.c 48 /* get -- return the next character from stdin. Watch out for lookahead. If
71 /* peek -- get the next character without getting it.
82 /* next -- get the next character, excluding comments. peek() is used to see
87 next() function
123 1 Output A. Copy B to A. Get the next B.
124 2 Copy B to A. Get the next B. (Delete A).
125 3 Get the next B. (Delete B).
156 theB = next();
196 theB = next();
    [all...]
  /external/clang/test/CodeGen/
types.c 4 struct FileName *next; member in struct:FileName
9 struct ieeeExternal *next; member in struct:ieeeExternal
  /external/clang/test/SemaTemplate/
overload-uneval.cpp 8 Foo *next; member in struct:Foo
  /external/compiler-rt/lib/stats/
stats.h 32 StatModule *next; member in struct:__sanitizer::StatModule
  /external/curl/lib/
llist.h 33 struct curl_llist_element *next; member in struct:curl_llist_element
slist.c 44 while(item->next) {
45 item = item->next;
70 new_item->next = NULL;
78 last->next = new_item;
123 inlist = inlist->next;
131 struct curl_slist *next; local
139 next = item->next;
142 item = next;
143 } while(next);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineUniqueRandomIterator.hpp 44 T next (void);
95 T UniqueRandomIterator<T>::next (void) function in class:vkt::pipeline::UniqueRandomIterator
  /external/dhcpcd-6.8.2/
control.h 37 TAILQ_ENTRY(fd_data) next; member in struct:fd_data
45 TAILQ_ENTRY(fd_list) next; member in struct:fd_list
  /external/e2fsprogs/lib/et/test_cases/
continuation.c 21 struct et_list *next; member in struct:et_list
42 for (end = list, et = *list; et; end = &et->next, et = et->next)
53 et->next = 0;
heimdal.c 102 struct et_list *next; member in struct:et_list
123 for (end = list, et = *list; et; end = &et->next, et = et->next)
134 et->next = 0;
heimdal2.c 88 struct et_list *next; member in struct:et_list
109 for (end = list, et = *list; et; end = &et->next, et = et->next)
120 et->next = 0;
heimdal3.c 22 struct et_list *next; member in struct:et_list
43 for (end = list, et = *list; et; end = &et->next, et = et->next)
54 et->next = 0;
imap_err.c 50 struct et_list *next; member in struct:et_list
71 for (end = list, et = *list; et; end = &et->next, et = et->next)
82 et->next = 0;
simple.c 42 struct et_list *next; member in struct:et_list
63 for (end = list, et = *list; et; end = &et->next, et = et->next)
74 et->next = 0;

Completed in 502 milliseconds

1 2 3 4 5 6 78 91011>>