Searched defs:swap (Results 1 - 25 of 191) sorted by relevance

12345678

/external/llvm/test/Instrumentation/AddressSanitizer/X86/
H A Dasm_swap_intel.s4 .globl swap
6 .type swap,@function
7 # CHECK-LABEL: swap:
32 swap: # @swap label
54 .size swap, .Ltmp2-swap
/external/toybox/toys/other/
H A Dmkswap.c1 /* mkswap.c - Format swap device.
13 Sets up a Linux swap area on a device or file.
22 unsigned int pages = (len/pagesize)-1, *swap = (unsigned int *)toybuf; local
27 swap[0] = 1;
28 swap[1] = pages;
30 xwrite(fd, swap, 129*sizeof(unsigned int));
/external/libcxx/test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_iostream& rhs);
34 void swap(test_iostream& s) {base::swap(s);} function in struct:test_iostream
44 is1.swap(is2);
67 is1.swap(is2);
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_istream& rhs);
34 void swap(test_istream& s) {base::swap(s);} function in struct:test_istream
44 is1.swap(is2);
67 is1.swap(is2);
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_ostream& rhs);
34 void swap(test_ostream& s) {base::swap(s);} function in struct:test_ostream
44 os1.swap(os2);
67 os1.swap(os2);
/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py15 def swap(cls, dir): member in class:Holder
32 Holder.swap(os.getcwd())
/external/skia/include/gpu/gl/
H A DGrGLExtensions.h30 void swap(GrGLExtensions* that) { function in class:GrGLExtensions
31 fStrings.swap(&that->fStrings);
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DBubbleSort.java40 swap(a, j, j + 1);
46 static void swap(int[] a, int i, int j) { method in class:BubbleSort
/external/eigen/test/eigen2/
H A Deigen2_swap.cpp25 template<typename MatrixType> void swap(const MatrixType& m) function
44 m1.swap(m2);
51 m1.swap(m3);
58 m1.swap(m2.block(0,0,rows,cols));
65 m1.transpose().swap(m3.transpose());
72 VERIFY_RAISES_ASSERT(m1.swap(m1.row(0)));
74 VERIFY_RAISES_ASSERT(m1.row(0).swap(m1));
79 CALL_SUBTEST_1( swap(Matrix3f()) ); // fixed size, no vectorization
80 CALL_SUBTEST_1( swap(Matrix4d()) ); // fixed size, possible vectorization
81 CALL_SUBTEST_1( swap(MatrixX
[all...]
/external/eigen/test/
H A Dswap.cpp25 template<typename MatrixType> void swap(const MatrixType& m) function
44 m1.swap(m2);
51 m1.swap(m3);
58 m1.swap(m2.block(0,0,rows,cols));
65 m1.transpose().swap(m3.transpose());
72 VERIFY_RAISES_ASSERT(m1.swap(m1.row(0)));
74 VERIFY_RAISES_ASSERT(m1.row(0).swap(m1));
79 CALL_SUBTEST_1( swap(Matrix3f()) ); // fixed size, no vectorization
80 CALL_SUBTEST_2( swap(Matrix4d()) ); // fixed size, possible vectorization
81 CALL_SUBTEST_3( swap(MatrixX
[all...]
/external/freetype/src/autofit/
H A Dafangles.c191 FT_Pos swap; local
201 swap = table[j];
203 table[j - 1] = swap;
218 AF_WidthRec swap; local
232 swap = table[j];
234 table[j - 1] = swap;
/external/guava/guava/src/com/google/thirdparty/publicsuffix/
H A DTrieParser.java123 swap(buffer, i - 1, i);
130 private static void swap(char[] buffer, int f, int s) { method in class:TrieParser
/external/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp80 le_int32 swap = array[front]; local
83 array[back] = swap;
92 float swap = array[front]; local
95 array[back] = swap;
/external/replicaisland/src/com/replica/replicaisland/
H A DCrusherAndouComponent.java50 public void setSwap(ChangeComponentsComponent swap) { argument
51 mSwap = swap;
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.swap/
H A Dswap.pass.cpp12 // void swap(optional&)
14 // noexcept(swap(declval<T&>(), declval<T&>())));
49 friend void swap(Y& x, Y& y) {std::swap(x.i_, y.i_);} function in class:Y
62 friend void swap(Z& x, Z& y) {throw 6;} function in class:Z
74 static_assert(noexcept(opt1.swap(opt2)) == true, "");
77 opt1.swap(opt2);
84 static_assert(noexcept(opt1.swap(opt2)) == true, "");
88 opt1.swap(opt2);
96 static_assert(noexcept(opt1.swap(opt
[all...]
/external/libcxx/test/std/experimental/optional/optional.specalg/
H A Dswap.pass.cpp12 // template <class T> void swap(optional<T>& x, optional<T>& y)
13 // noexcept(noexcept(x.swap(y)));
48 friend void swap(Y& x, Y& y) {std::swap(x.i_, y.i_);} function in class:Y
61 friend void swap(Z& x, Z& y) {throw 6;} function in class:Z
73 static_assert(noexcept(swap(opt1, opt2)) == true, "");
76 swap(opt1, opt2);
83 static_assert(noexcept(swap(opt1, opt2)) == true, "");
87 swap(opt1, opt2);
95 static_assert(noexcept(swap(opt
[all...]
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dswap.pass.cpp15 // void swap(basic_streambuf& rhs);
29 void swap(test& t) function in struct:test
33 base::swap(t);
67 swap(t2, t);
72 swap(t2, t);
80 swap(t2, t);
88 swap(t2, t);
94 swap(t2, t);
99 swap(t2, t);
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/
H A Dtest_deleter.h61 swap(test_deleter<T>& x, test_deleter<T>& y) function
/external/marisa-trie/lib/marisa/
H A Dmapper.cc89 temp.swap(this);
113 temp.swap(this);
118 Mapper().swap(this);
121 void Mapper::swap(Mapper *rhs) { function in class:marisa::Mapper
H A Dreader.cc53 Reader().swap(this);
56 void Reader::swap(Reader *rhs) { function in class:marisa::Reader
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dmapper.cc92 temp.swap(this);
117 temp.swap(this);
122 Mapper().swap(this);
125 void Mapper::swap(Mapper *rhs) { function in class:marisa_alpha::Mapper
H A Dreader.cc53 Reader().swap(this);
56 void Reader::swap(Reader *rhs) { function in class:marisa_alpha::Reader
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h63 void swap(SkTScopedComPtr<T>& that) { function in class:SkTScopedComPtr
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_refptr.h46 // b.swap(a);
122 void swap(T** pp) { function in class:webrtc::scoped_refptr
128 void swap(scoped_refptr<T>& r) { function in class:webrtc::scoped_refptr
129 swap(&r.ptr_);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp47 function(other).swap(*this);
53 function(f).swap(*this);
57 void swap(function& other) { function in class:function

Completed in 4000 milliseconds

12345678