HomeSort by relevance Sort by last modified time
    Searched full:next (Results 1176 - 1200 of 30278) sorted by null

<<41424344454647484950>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/
insert_iter_iter.pass.cpp 45 assert(next(m.begin())->first == 2);
46 assert(next(m.begin())->second == 1);
47 assert(next(m.begin(), 2)->first == 3);
48 assert(next(m.begin(), 2)->second == 1);
71 assert(next(m.begin())->first == 2);
72 assert(next(m.begin())->second == 1);
73 assert(next(m.begin(), 2)->first == 3);
74 assert(next(m.begin(), 2)->second == 1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
copy.pass.cpp 47 assert(*next(m.begin()) == 2);
48 assert(*next(m.begin(), 2) == 3);
55 assert(*next(mo.begin()) == 2);
56 assert(*next(mo.begin(), 2) == 3);
82 assert(*next(m.begin()) == 2);
83 assert(*next(m.begin(), 2) == 3);
90 assert(*next(mo.begin()) == 2);
91 assert(*next(mo.begin(), 2) == 3);
copy_assign.pass.cpp 48 assert(*next(m.begin()) == 2);
49 assert(*next(m.begin(), 2) == 3);
56 assert(*next(mo.begin()) == 2);
57 assert(*next(mo.begin(), 2) == 3);
83 assert(*next(m.begin()) == 2);
84 assert(*next(m.begin(), 2) == 3);
91 assert(*next(mo.begin()) == 2);
92 assert(*next(mo.begin(), 2) == 3);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
push_front.hpp 18 #include <boost/mpl/next.hpp>
30 typename next<typename List::size>::type
  /external/llvm/test/Transforms/SROA/
vector-promotion.ll 26 ; CHECK-NEXT: extractelement <4 x i32> %y, i32 3
27 ; CHECK-NEXT: extractelement <4 x i32> %y, i32 0
32 ; CHECK-NEXT: add
33 ; CHECK-NEXT: add
34 ; CHECK-NEXT: ret
59 ; CHECK-NEXT: %[[extract2:.*]] = extractelement <4 x i32> %y, i32 3
60 ; CHECK-NEXT: %[[extract3:.*]] = shufflevector <4 x i32> %y, <4 x i32> undef, <2 x i32> <i32 0, i32 1>
61 ; CHECK-NEXT: %[[extract4:.*]] = extractelement <2 x i32> %[[extract3]], i32 0
66 ; CHECK-NEXT: %[[sum1:.*]] = add i32 %[[extract1]], %[[extract2]]
67 ; CHECK-NEXT: %[[sum2:.*]] = add i32 %[[extract4]], %[[sum1]
    [all...]
  /system/core/adb/
transport.c 31 .next = &transport_list,
36 .next = &pending_list,
91 adisconnect* dis = t->disconnects.next;
95 adisconnect* next = dis->next; local
97 dis = next;
394 device_tracker* next; member in struct:device_tracker
409 *pnode = node->next;
412 pnode = &node->next;
489 tracker->next = device_tracker_list
507 device_tracker* next = tracker->next; local
1077 atransport *t, *next; local
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-encoding-ext.s 116 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
119 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
126 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
129 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
137 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
140 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
147 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
150 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
158 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
161 # CHECK-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14ab
    [all...]
  /external/llvm/test/Transforms/LoopVectorize/
memdep.ll 20 %indvars.iv = phi i32 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
21 %indvars.iv.next = add i32 %indvars.iv, 1
22 %arrayidx = getelementptr inbounds i32* %A, i32 %indvars.iv.next
27 %exitcond = icmp ne i32 %indvars.iv.next, 1024
46 %indvars.iv = phi i32 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
50 %indvars.iv.next = add i32 %indvars.iv, 1
51 %arrayidx3 = getelementptr inbounds i32* %A, i32 %indvars.iv.next
53 %exitcond = icmp ne i32 %indvars.iv.next, 1024
107 %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
112 %indvars.iv.next = add nsw i64 %indvars.iv,
    [all...]
  /hardware/ril/libril/
ril_event.cpp 82 dlog(" next = %x", (unsigned int)ev->next);
111 list->next = list;
118 ev->next = list;
120 ev->prev->next = ev;
130 ev->next->prev = ev->prev;
131 ev->prev->next = ev->next;
132 ev->next = NULL;
164 struct ril_event * tev = timer_list.next;
165 struct ril_event * next; local
208 struct ril_event * next = ev->next; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 121 lineno, line = lineno+1, f.next()
123 lineno, line = lineno+1, f.next()
127 lineno, line = lineno+1, f.next()
138 lineno, line = lineno+1, f.next()
143 lineno, line = lineno+1, f.next()
146 lineno, line = lineno+1, f.next()
153 lineno, line = lineno+1, f.next()
161 lineno, line = lineno+1, f.next()
163 lineno, line = lineno+1, f.next()
172 lineno, line = lineno+1, f.next()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 121 lineno, line = lineno+1, f.next()
123 lineno, line = lineno+1, f.next()
127 lineno, line = lineno+1, f.next()
138 lineno, line = lineno+1, f.next()
143 lineno, line = lineno+1, f.next()
146 lineno, line = lineno+1, f.next()
153 lineno, line = lineno+1, f.next()
161 lineno, line = lineno+1, f.next()
163 lineno, line = lineno+1, f.next()
172 lineno, line = lineno+1, f.next()
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
system.h 14 *** Any manual change here will be lost the next time this script will
34 #define switch_to(prev, next, last) do { __mips_mt_fpaff_switch_to(prev); if (cpu_has_dsp) __save_dsp(prev); (last) = resume(prev, next, task_thread_info(next)); } while (0)
  /dalvik/vm/mterp/armv5te/
OP_CONST.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_4.S 10 GOTO_OPCODE(ip) @ execute next instruction
OP_CONST_HIGH16.S 9 GOTO_OPCODE(ip) @ jump to next instruction
OP_CONST_WIDE_16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE.S 11 GOTO_OPCODE(ip) @ execute next instruction
OP_MOVE_16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_EXCEPTION.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_FROM16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_RESULT.S 9 GOTO_OPCODE(ip) @ jump to next instruction
  /dalvik/vm/mterp/armv6t2/
OP_CONST_4.S 9 GOTO_OPCODE(ip) @ execute next instruction
OP_MOVE.S 10 GOTO_OPCODE(ip) @ execute next instruction
  /dalvik/vm/mterp/mips/
OP_CONST_WIDE_16.S 10 GOTO_OPCODE(t0) # jump to next instruction
OP_CONST_WIDE_32.S 13 GOTO_OPCODE(t0) # jump to next instruction

Completed in 1466 milliseconds

<<41424344454647484950>>