Searched defs:swap (Results 101 - 125 of 191) sorted by relevance

12345678

/external/linux-tools-perf/src/tools/lib/traceevent/
H A Dkbuffer-parse.c54 * @read_4 - Function to read 4 raw bytes (may swap)
55 * @read_8 - Function to read 8 raw bytes (may swap)
56 * @read_long - Function to read a long word (4 or 8 bytes with needed swap)
106 unsigned long long swap; local
108 swap = ((data & 0xffULL) << 56) |
117 return swap;
130 unsigned int swap; local
132 swap = ((data & 0xffULL) << 24) |
137 return swap;
424 * @swap
432 kbuffer_translate_data(int swap, void *data, unsigned int *size) argument
[all...]
/external/lldb/include/lldb/Utility/
H A DSharingPtr.h154 void swap(SharingPtr& r);
258 SharingPtr(r).swap(*this);
268 SharingPtr(r).swap(*this);
275 SharingPtr<T>::swap(SharingPtr& r) function in class:lldb_private::SharingPtr
277 std::swap(ptr_, r.ptr_);
278 std::swap(cntrl_, r.cntrl_);
286 SharingPtr().swap(*this);
295 SharingPtr(p).swap(*this);
445 swap(SharingPtr<T>& __x, SharingPtr<T>& __y) function in namespace:lldb_private
447 __x.swap(__
722 swap (IntrusiveSharingPtr& rhs) function in class:lldb_private::IntrusiveSharingPtr
[all...]
/external/llvm/include/llvm/IR/
H A DPassManager.h78 friend void swap(PreservedAnalyses &LHS, PreservedAnalyses &RHS) { function in class:llvm::PreservedAnalyses
79 using std::swap;
80 swap(LHS.PreservedPassIDs, RHS.PreservedPassIDs);
83 swap(*this, RHS);
619 std::swap(FAM, RHS.FAM);
652 std::swap(FAM, RHS.FAM);
699 std::swap(MAM, RHS.MAM);
727 std::swap(MAM, RHS.MAM);
774 friend void swap(ModuleToFunctionPassAdaptor &LHS, function in class:llvm::ModuleToFunctionPassAdaptor
776 using std::swap;
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftoutln.c568 FT_Vector swap; local
573 swap = *p;
575 *q = swap;
589 char swap; local
592 swap = *p;
594 *q = swap;
/external/skia/include/core/
H A DSkTemplates.h165 void swap(SkAutoTDelete* that) { function in class:SkAutoTDelete
257 void swap(SkAutoTArray& other) { function in class:SkAutoTArray
/external/skia/src/pathops/
H A DSkIntersections.h179 // leaves swap, max alone
186 void set(bool swap, int tIndex, double t) { argument
187 fT[(int) swap][tIndex] = t;
194 void swap() { function in class:SkIntersections
240 // FIXME : does not respect swap
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h270 ANTLR3_BOOLEAN (*swap) (struct ANTLR3_VECTOR_struct *, ANTLR3_UINT32 entry1, ANTLR3_UINT32 entry2); member in struct:ANTLR3_VECTOR_struct
/external/clang/lib/AST/
H A DAPValue.cpp250 void APValue::swap(APValue &RHS) { function in class:APValue
251 std::swap(Kind, RHS.Kind);
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h356 void swap(TriangularBase<OtherDerived> const & other) function in class:Eigen::TriangularView
362 void swap(MatrixBase<OtherDerived> const & other) function in class:Eigen::TriangularView
687 other.derived().swap(other_evaluated);
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h232 * Overloaded for performance: this version performs a \em shallow swap by swaping pointers and attributes only.
233 * \sa SparseMatrixBase::swap()
235 inline void swap(SparseVector& other) function in class:Eigen::SparseVector
237 std::swap(m_size, other.m_size);
238 m_data.swap(other.m_data);
245 swap(other.const_cast_derived());
260 this->swap(tmp);
H A DSparseMatrix.h355 std::swap(m_outerIndex, newOuterIndex);
684 inline void swap(SparseMatrix& other) function in class:Eigen::SparseMatrix
686 //EIGEN_DBG_SPARSE(std::cout << "SparseMatrix:: swap\n");
687 std::swap(m_outerIndex, other.m_outerIndex);
688 std::swap(m_innerSize, other.m_innerSize);
689 std::swap(m_outerSize, other.m_outerSize);
690 std::swap(m_innerNonZeros, other.m_innerNonZeros);
691 m_data.swap(other.m_data);
707 swap(other.const_cast_derived());
1106 this->swap(des
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dpkgitems.cpp62 NativeItem(const Item *item, UDataSwapFn *swap) : swapped(NULL) { argument
63 setItem(item, swap);
78 void setItem(const Item *item, UDataSwapFn *swap) { argument
106 swap(ds, pItem->data, pItem->length, swapped, &errorCode);
526 /* swap the base name, between the header and the extension data */
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h508 swap(RHS);
513 void swap(SmallBitVector &RHS) { function in class:llvm::SmallBitVector
514 std::swap(X, RHS.X);
594 /// Implement std::swap in terms of BitVector swap.
596 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { function in namespace:std
597 LHS.swap(RHS);
H A DStringMap.h101 void swap(StringMapImpl &Other) { function in class:llvm::StringMapImpl
102 std::swap(TheTable, Other.TheTable);
103 std::swap(NumBuckets, Other.NumBuckets);
104 std::swap(NumItems, Other.NumItems);
105 std::swap(NumTombstones, Other.NumTombstones);
233 StringMapImpl::swap(RHS);
234 std::swap(Allocator, RHS.Allocator);
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h186 IntT swap(IntT Int) const { function in class:llvm::RawInstrProfReader
190 ptrdiff_t Offset = (swap(CounterPtr) - CountersDelta) / sizeof(uint64_t);
194 ptrdiff_t Offset = (swap(NamePtr) - NamesDelta) / sizeof(char);
/external/opencv/cvaux/src/
H A Dcvscanlines.cpp1401 float swap; local
1678 swap = l_angle[0];
1680 l_angle[1] = swap;
1686 swap = l_angle[0];
1688 l_angle[1] = swap + (float) (CV_PI * 2);
1694 swap = r_angle[0];
1696 r_angle[1] = swap;
1702 swap = r_angle[0];
1704 r_angle[1] = swap + (float) (CV_PI * 2);
/external/skia/src/core/
H A DSkString.cpp308 this->swap(tmp);
317 this->swap(tmp);
381 this->swap(tmp);
416 this->swap(tmp);
473 this->swap(tmp);
604 this->swap(tmp);
609 void SkString::swap(SkString& other) { function in class:SkString
/external/toybox/toys/posix/
H A Dsed.c487 char *rline = line, *new = logrus->arg2 + (char *)logrus, *swap, *rswap; local
533 swap = xmalloc(len+1);
534 rswap = swap+(rline-line)+match[0].rm_so;
535 memcpy(swap, line, (rline-line)+match[0].rm_so);
563 line = swap;
598 long swap = TT.rememberlen; local
604 len = swap;
843 // regex part can't be multiple lines) and swap them back later.
879 // swap arg1/arg2 so they're back in order arguments occur.
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
H A DPlot.java169 public synchronized void swap() { method in class:Plot.BufferedCanvas
332 pingPong.swap();
/external/fio/t/
H A Dbtrace2fio.c1034 static int trace_needs_swap(const char *trace_file, int *swap) argument
1039 *swap = -1;
1061 *swap = 0;
1068 *swap = 1;
1071 if (*swap == -1) {
/external/fio/
H A Dverify.c107 char swap[200]; local
109 assert(len <= sizeof(swap));
111 memcpy(&swap, buf1, len);
113 memcpy(buf2, &swap, len);
/external/google-breakpad/src/google_breakpad/processor/
H A Dminidump.h959 bool swap() const { return valid_ ? swap_ : false; } function in class:google_breakpad::Minidump
/external/icu/icu4c/source/layoutex/
H A DParagraphLayout.cpp1076 le_int32 swap = rightGlyph; local
1081 leftGlyph = last - swap;
/external/ipsec-tools/src/racoon/
H A Disakmp.c1789 vchar_t *vbuf = NULL, swap; local
1826 swap = *sbuf;
1828 *vbuf = swap;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
H A DParticleEmitter.java938 private void swap(int idx1, int idx2) { method in class:ParticleEmitter
994 this.swap(firstUnUsed, i);

Completed in 1423 milliseconds

12345678