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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/blkid/tests/
swap0.results 1 TYPE='swap'
swap1.results 1 TYPE='swap'
2 LABEL='SWAP-TEST'
  /external/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_relops_hash_cont.h 9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GL_SwapBuffers.3 3 SDL_GL_SwapBuffers \- Swap OpenGL framebuffers/Update Display
11 Swap the OpenGL buffers, if double-buffering is supported\&.
  /external/chromium_org/remoting/host/win/
window_station_and_desktop.cc 22 std::swap(desktop_, desktop);
28 std::swap(window_station_, window_station);
33 void WindowStationAndDesktop::Swap(WindowStationAndDesktop& other) {
34 std::swap(desktop_, other.desktop_);
35 std::swap(window_station_, other.window_station_);
  /external/llvm/test/CodeGen/SystemZ/
cmpxchg-03.ll 1 ; Test 32-bit compare and swap.
6 define i32 @f1(i32 %cmp, i32 %swap, i32 *%src) {
10 %val = cmpxchg i32 *%src, i32 %cmp, i32 %swap seq_cst
15 define i32 @f2(i32 %cmp, i32 %swap, i32 *%src) {
20 %val = cmpxchg i32 *%ptr, i32 %cmp, i32 %swap seq_cst
25 define i32 @f3(i32 %cmp, i32 %swap, i32 *%src) {
30 %val = cmpxchg i32 *%ptr, i32 %cmp, i32 %swap seq_cst
35 define i32 @f4(i32 %cmp, i32 %swap, i32 *%src) {
40 %val = cmpxchg i32 *%ptr, i32 %cmp, i32 %swap seq_cst
46 define i32 @f5(i32 %cmp, i32 %swap, i32 *%src)
    [all...]
cmpxchg-04.ll 1 ; Test 64-bit compare and swap.
6 define i64 @f1(i64 %cmp, i64 %swap, i64 *%src) {
10 %val = cmpxchg i64 *%src, i64 %cmp, i64 %swap seq_cst
15 define i64 @f2(i64 %cmp, i64 %swap, i64 *%src) {
20 %val = cmpxchg i64 *%ptr, i64 %cmp, i64 %swap seq_cst
26 define i64 @f3(i64 %cmp, i64 %swap, i64 *%src) {
32 %val = cmpxchg i64 *%ptr, i64 %cmp, i64 %swap seq_cst
37 define i64 @f4(i64 %cmp, i64 %swap, i64 *%src) {
42 %val = cmpxchg i64 *%ptr, i64 %cmp, i64 %swap seq_cst
47 define i64 @f5(i64 %cmp, i64 %swap, i64 *%src)
    [all...]
  /external/eigen/test/eigen2/
eigen2_swap.cpp 25 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(MatrixXd(3,3)) ); // dyn size, no vectorization
    [all...]
  /external/eigen/test/
swap.cpp 25 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(MatrixXd(3,3)) ); // dyn size, no vectorization
    [all...]
  /external/clang/www/
libstdc++4.4-clang0x.patch 16 - swap(forward_list&& __list)
17 + swap(forward_list& __list)
18 { _Node_base::swap(this->_M_impl._M_head, __list._M_impl._M_head); }
68 - swap(__shared_ptr<_Tp, _Lp>&& __other) // never throws
69 + swap(__shared_ptr<_Tp, _Lp>& __other) // never throws
71 std::swap(_M_ptr, __other._M_ptr);
74 swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>& __b)
75 { __a.swap(__b); }
79 - swap(__shared_ptr<_Tp, _Lp>&& __a, __shared_ptr<_Tp, _Lp>& __b)
80 - { __a.swap(__b);
    [all...]
  /external/clang/test/Analysis/
unions-region.m 22 union u_testA swap;
23 swap.f = f;
25 if (testA_aux(swap.i)) // no-warning
26 swap.i = ((swap.i & 0xffff0000) >> 16) | ((swap.i & 0x0000fffff) << 16);
28 testA_aux_2(swap); // no-warning
30 return swap.f;
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_frame_usage.spec 36 swap period has elapsed since the last swap operation completed. The
44 where td is the time measured from the last completed buffer swap (or
45 call to enable the statistic) to when the next buffer swap completes, tf
47 depending on the swap interval as set by the GLX_SGI_swap_control or
52 buffer swap occurred within the time period required to maintain a
59 is taken from the completion of one swap to the issuance of the next.
62 issuance of a swap and the swap actually occurring.
64 There is also a mechanism to determine whether a frame swap wa
    [all...]
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 36 swap period has elapsed since the last swap operation completed. The
44 where td is the time measured from the last completed buffer swap (or
45 call to enable the statistic) to when the next buffer swap completes, tf
47 depending on the swap interval as set by the GLX_SGI_swap_control or
52 buffer swap occurred within the time period required to maintain a
59 is taken from the completion of one swap to the issuance of the next.
62 issuance of a swap and the swap actually occurring.
64 There is also a mechanism to determine whether a frame swap wa
    [all...]
  /external/marisa-trie/lib/marisa/
trie.cc 18 temp_mapper.swap(mapper);
42 temp.swap(this);
83 temp.swap(this);
145 Trie().swap(this);
148 void Trie::swap(Trie *rhs) { function in class:marisa::Trie
150 louds_.swap(&rhs->louds_);
151 labels_.swap(&rhs->labels_);
152 terminal_flags_.swap(&rhs->terminal_flags_);
153 link_flags_.swap(&rhs->link_flags_);
154 links_.swap(&rhs->links_)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.cc 18 temp_mapper.swap(mapper);
42 temp.swap(this);
83 temp.swap(this);
145 Trie().swap(this);
148 void Trie::swap(Trie *rhs) { function in class:marisa_alpha::Trie
150 louds_.swap(&rhs->louds_);
151 labels_.swap(&rhs->labels_);
152 terminal_flags_.swap(&rhs->terminal_flags_);
153 link_flags_.swap(&rhs->link_flags_);
154 links_.swap(&rhs->links_)
    [all...]
  /external/stlport/test/unit/
swap_test.cpp 6 #if 0 /* temporary: investigation of problem with swap */
49 swap(a, b);
81 * Following two tests check the corectness of specialization of swap():
82 * for containers with container::swap method swap( a, b ) should
83 * use a.swap( b ), but don't try to do this substitution for container
84 * without swap method (in this case swap should be made via explicit members
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
swap_test.cpp 6 #if 0 /* temporary: investigation of problem with swap */
49 swap(a, b);
81 * Following two tests check the corectness of specialization of swap():
82 * for containers with container::swap method swap( a, b ) should
83 * use a.swap( b ), but don't try to do this substitution for container
84 * without swap method (in this case swap should be made via explicit members
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
    [all...]
  /ndk/tests/device/test-stlport/unit/
swap_test.cpp 6 #if 0 /* temporary: investigation of problem with swap */
49 swap(a, b);
81 * Following two tests check the corectness of specialization of swap():
82 * for containers with container::swap method swap( a, b ) should
83 * use a.swap( b ), but don't try to do this substitution for container
84 * without swap method (in this case swap should be made via explicit members
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method
    [all...]
  /libcore/luni/src/main/java/libcore/io/
NioBufferIterator.java 30 private final boolean swap; field in class:NioBufferIterator
34 NioBufferIterator(long address, int size, boolean swap) {
37 this.swap = swap;
60 int result = Memory.peekInt(address + position, swap);
66 Memory.peekIntArray(address + position, dst, dstOffset, intCount, swap);
71 short result = Memory.peekShort(address + position, swap);

Completed in 1057 milliseconds

1 2 3 4 5 6 7 8 91011>>