/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
o64loop.asm | 2 o64 loop next 3 next: label
|
/bionic/libc/stdio/ |
glue.h | 40 struct glue *next; member in struct:glue
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
ptw32_tkAssocDestroy.c | 65 ThreadKeyAssoc * prev, * next; local 69 next = assoc->nextKey; 72 prev->nextKey = next; 74 if (next != NULL) 76 next->prevKey = prev; 82 assoc->thread->keys = next; 87 * Thread is exiting and we're deleting the assoc to be processed next. 90 assoc->thread->nextAssoc = next; 95 next = assoc->nextThread; 98 prev->nextThread = next; [all...] |
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
syscall_iterator_unittest.cc | 17 uint32_t next = iter.Next(); local 21 SANDBOX_ASSERT(next == 0); 23 for (uint32_t last = next; !iter.Done(); last = next) { 24 next = iter.Next(); 25 SANDBOX_ASSERT(last < next); 28 SANDBOX_ASSERT(next == 0xFFFFFFFFu); 34 uint32_t next = iter.Next() [all...] |
/external/clang/test/CodeGenCXX/ |
function-template-specialization.cpp | 3 T* next(T* ptr, const U& diff); 6 T* next(T* ptr, const U& diff) { function 12 iptr = next(iptr, diff); 15 fptr = next(fptr, diff); 19 T* next(T* ptr, const U& diff); 22 iptr = next(iptr, diff); 25 dptr = next(dptr, diff);
|
/external/elfutils/libdwfl/ |
dwfl_end.c | 62 Dwfl_Module *next = dwfl->modulelist; local 63 while (next != NULL) 65 Dwfl_Module *dead = next; 66 next = dead->next;
|
/external/llvm/test/CodeGen/SystemZ/Large/ |
branch-range-02.py | 70 next = 'b%d' % (i + 1) if i + 1 < blocks else 'end' variable 77 print ' br i1 %%atest%d, label %%%s, label %%%s' % (i, other, next) 80 print '%s:' % next
|
branch-range-01.py | 79 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable 84 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) 87 print '%s:' % next
|
branch-range-03.py | 79 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable 85 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) 88 print '%s:' % next
|
branch-range-04.py | 44 # ...as mentioned above, the next one could be a CGRJE instead... 83 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable 89 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) 92 print '%s:' % next
|
branch-range-05.py | 44 # ...as mentioned above, the next one could be a CIJL instead... 83 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable 88 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) 91 print '%s:' % next
|
branch-range-06.py | 44 # ...as mentioned above, the next one could be a CGIJL instead... 83 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable 88 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next) 91 print '%s:' % next
|
/external/openssh/ |
auth-options.h | 20 struct envstring *next; member in struct:envstring
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
arg.hpp | 34 typedef arg<2> next; typedef in struct:arg 52 typedef arg<3> next; typedef in struct:arg 70 typedef arg<4> next; typedef in struct:arg 88 typedef arg<5> next; typedef in struct:arg 106 typedef arg<6> next; typedef in struct:arg
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
next_prior.hpp | 10 // 13 Dec 2003 Added next(x, n) and prior(x, n) (Daniel Walker) 25 // const std::list<T>::iterator next = boost::next(prev, 2); 30 inline T next(T x) { return ++x; } function in namespace:boost 33 inline T next(T x, Distance n) function in namespace:boost
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3exception.c | 135 /* Move to next in the chain (if any) 156 pANTLR3_EXCEPTION next; local 165 next = ex->nextException; 185 ex = next;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_mm.h | 11 struct nouveau_mm_allocation *next; member in struct:nouveau_mm_allocation
|
/external/chromium_org/v8/test/mjsunit/ |
json-stringify-recursive.js | 51 for (var i = 0; i < depth; i++) deepObject = { next: deepObject };
|
/external/clang/test/CodeGen/ |
debug-info-var-location.c | 4 // CHECK-NEXT: byte 145 9 struct s *next; member in struct:s 16 struct s *sp = s->next;
|
/external/dhcpcd/ |
control.h | 36 struct fd_list *next; member in struct:fd_list
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_mm.h | 11 struct nouveau_mm_allocation *next; member in struct:nouveau_mm_allocation
|
/external/wpa_supplicant_8/wpa_supplicant/ |
blacklist.h | 13 struct wpa_blacklist *next; member in struct:wpa_blacklist
|
/system/extras/fatblock/ |
fdpool.h | 22 struct pooled_fd *next; member in struct:pooled_fd
|
/bionic/libc/bionic/ |
debug_mapinfo.h | 35 struct mapinfo_t* next; member in struct:mapinfo_t
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
IntIterator.java | 25 * Checks to see if the iterator has a next value. 27 * @return true if next() will succeed 32 * Returns the next value in the iterator. 34 * @return next value 35 * @throws java.util.NoSuchElementException if no next element exists 37 int next(); method in interface:IntIterator
|