HomeSort by relevance Sort by last modified time
    Searched full:swap (Results 176 - 200 of 6003) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/binary_heap_/
constructors_destructor_fn_imps.hpp 111 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
117 std::swap((entry_cmp&)(*this), (entry_cmp&)other);
127 std::swap(m_a_entries, other.m_a_entries);
128 std::swap(m_size, other.m_size);
129 std::swap(m_actual_size, other.m_actual_size);
130 static_cast<resize_policy*>(this)->swap(other);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/resize_policy/
cc_hash_max_collision_check_resize_trigger_imp.hpp 177 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
179 std::swap(m_load, other.m_load);
180 std::swap(m_size, other.m_size);
181 std::swap(m_num_col, other.m_num_col);
182 std::swap(m_max_col, other.m_max_col);
183 std::swap(m_resize_needed, other.m_resize_needed);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/binary_heap_/
constructors_destructor_fn_imps.hpp 110 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
116 std::swap((entry_cmp&)(*this), (entry_cmp&)other);
126 std::swap(m_a_entries, other.m_a_entries);
127 std::swap(m_size, other.m_size);
128 std::swap(m_actual_size, other.m_actual_size);
129 static_cast<resize_policy*>(this)->swap(other);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/resize_policy/
cc_hash_max_collision_check_resize_trigger_imp.hpp 177 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
179 std::swap(m_load, other.m_load);
180 std::swap(m_size, other.m_size);
181 std::swap(m_num_col, other.m_num_col);
182 std::swap(m_max_col, other.m_max_col);
183 std::swap(m_resize_needed, other.m_resize_needed);
  /dalvik/vm/
Atomic.h 41 * Swap the 64-bit value at "addr" with "value". Returns the previous
47 * Swap the 64-bit value at "addr" with "value". Returns the previous
60 * and return 0. Otherwise, don't swap, and return nonzero.
  /external/chromium/chrome/browser/policy/
policy_map.cc 26 std::swap(map_[policy], value);
38 void PolicyMap::Swap(PolicyMap* other) {
39 map_.swap(other->map_);
policy_map_unittest.cc 47 TEST(PolicyMapTest, Swap) {
53 a.Swap(&b);
62 a.Swap(&b);
  /external/chromium_org/base/
pending_task.cc 56 void TaskQueue::Swap(TaskQueue* queue) {
57 c.swap(queue->c); // Calls std::deque::swap.
  /external/kernel-headers/original/asm-x86/
byteorder.h 16 __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
17 "rorl $16,%0\n\t" /* swap words */
18 "xchgb %b0,%h0" /* swap higher bytes */
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.cpp 80 InstrInfoSE.swap(InstrInfo);
81 FrameLoweringSE.swap(FrameLowering);
82 TLInfoSE.swap(TLInfo);
88 InstrInfo16.swap(InstrInfo);
89 FrameLowering16.swap(FrameLowering);
90 TLInfo16.swap(TLInfo);
98 InstrInfo16.swap(InstrInfo);
99 FrameLowering16.swap(FrameLowering);
100 TLInfo16.swap(TLInfo);
106 InstrInfoSE.swap(InstrInfo)
    [all...]
  /external/stlport/src/
sparc_atomic64.s 16 casx [%o0], %o2, %o3 ! Do the compare and swap
35 casx [%o0], %o2, %o3 ! Do the compare and swap
55 casx [%o0], %o2, %o3 ! Do the compare and swap
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/
non_member_swap.pass.cpp 16 // swap(map<Key, T, Compare, Allocator>& x, map<Key, T, Compare, Allocator>& y);
40 swap(m1, m2);
63 swap(m1, m2);
82 swap(m1, m2);
109 swap(m1, m2);
139 swap(m1, m2);
173 swap(m1, m2);
197 swap(m1, m2);
220 swap(m1, m2);
239 swap(m1, m2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/
non_member_swap.pass.cpp 16 // swap(multimap<Key, T, Compare, Allocator>& x, multimap<Key, T, Compare, Allocator>& y);
40 swap(m1, m2);
63 swap(m1, m2);
82 swap(m1, m2);
109 swap(m1, m2);
139 swap(m1, m2);
173 swap(m1, m2);
196 swap(m1, m2);
219 swap(m1, m2);
238 swap(m1, m2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/array.special/
swap.pass.cpp 12 // template <class T, size_t N> void swap(array<T,N>& x, array<T,N>& y);
24 swap(c1, c2);
39 swap(c1, c2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/array.swap/
swap.pass.cpp 12 // void swap(array& a);
24 c1.swap(c2);
39 c1.swap(c2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/
swap.pass.cpp 13 // void swap(list<T,Alloc>& x, list<T,Alloc>& y);
27 swap(c1, c2);
36 swap(c1, c2);
46 swap(c1, c2);
56 swap(c1, c2);
70 swap(c1, c2);
83 swap(c1, c2);
95 swap(c1, c2);
104 swap(c1, c2);
114 swap(c1, c2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
swap.pass.cpp 12 // void swap(vector& x);
24 v1.swap(v2);
34 v1.swap(v2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/
swap.pass.cpp 13 // void swap(vector<T,Alloc>& x, vector<T,Alloc>& y);
27 swap(c1, c2);
36 swap(c1, c2);
46 swap(c1, c2);
56 swap(c1, c2);
70 swap(c1, c2);
83 swap(c1, c2);
95 swap(c1, c2);
104 swap(c1, c2);
114 swap(c1, c2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/
member_swap.pass.cpp 15 // void swap(basic_ifstream& rhs);
25 fs1.swap(fs2);
35 fs1.swap(fs2);
nonmember_swap.pass.cpp 16 // void swap(basic_ifstream<charT, traits>& x, basic_ifstream<charT, traits>& y);
26 swap(fs1, fs2);
36 swap(fs1, fs2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.assign/
member_swap.pass.cpp 15 // void swap(basic_ostringstream& rhs);
25 ss.swap(ss0);
38 ss.swap(ss0);
nonmember_swap.pass.cpp 15 // void swap(basic_ostringstream& rhs);
25 swap(ss, ss0);
38 swap(ss, ss0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
swap.pass.cpp 14 // void swap(packaged_task& other);
34 p.swap(p0);
44 p.swap(p0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.nonmembers/
swap.pass.cpp 16 // swap(packaged_task<R(ArgTypes...)>& x, packaged_task<R(ArgTypes...)>& y);
36 swap(p, p0);
46 swap(p, p0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/utility.swap/
swap.pass.cpp 15 // swap(T& a, T& b);
28 std::swap(i, j);
40 std::swap(i, j);

Completed in 1501 milliseconds

1 2 3 4 5 6 78 91011>>