/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
vmalloc.h | 37 struct vm_struct *next; member in struct:vm_struct
|
/external/ant-glob/src/org/apache/tools/ant/util/ |
FileUtils.java | 161 int next = colon + 1; local 162 root = path.substring(0, next); 166 next = (ca[next] == sep) ? next + 1 : next; 170 for (int i = next; i < ca.length; i++) {
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
BasicTestIterator.java | 31 * Base for iterators that handle predicates. Does the basic next 33 * next node. 120 * Get the next node via getNextXXX. Bottlenecked for derived class override. 121 * @return The next node on the axis, or DTM.NULL. 126 * Returns the next node in the set and advances the position of the 130 * @return The next <code>Node</code> in the set being iterated over, or 146 int next; local 170 next = getNextNode(); 172 if (DTM.NULL != next) 174 if(DTMIterator.FILTER_ACCEPT == acceptNode(next)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
DHDomainParameters.java | 76 ASN1Encodable next = getNext(e); local 78 if (next != null && next instanceof ASN1Integer) 80 this.j = ASN1Integer.getInstance(next); 81 next = getNext(e); 84 if (next != null) 86 this.validationParms = DHValidationParms.getInstance(next.toASN1Primitive());
|
/external/chromium_org/testing/gtest/samples/ |
sample3-inl.h | 47 // type E and a pointer to the next node. 56 // Gets the next node in the queue. 57 QueueNode* next() { return next_; } function in class:QueueNode 58 const QueueNode* next() const { return next_; } function in class:QueueNode 61 // Creates a node with a given element value. The next pointer is 87 QueueNode<E>* next = node->next(); local 90 node = next; 92 next = node->next(); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pipe_cull.c | 15 * next paragraph) shall be included in all copies or substantial portions 83 /* triangle is not culled, pass to next stage */ 84 stage->next->tri( stage->next, header ); 106 stage->next->flush( stage->next, flags ); 112 stage->next->reset_stipple_counter( stage->next ); 134 cull->stage.next = NULL;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
free_list.h | 68 inline void EnsureNonLoop(void* node, void* next) { 71 if (node != next) return; 72 Log(kCrash, __FILE__, __LINE__, "Circular loop in list detected: ", next); 92 // Returns value of the |next| pointer w/out running a sanity check. 116 void *next = FL_Next_No_Check(t); local 117 if (next) { 118 FL_EqualityCheck(FL_Previous_No_Check(next), t, __FILE__, __LINE__); 120 return next; 124 // |*list|, and updates |*list| to point to the next element in the
|