HomeSort by relevance Sort by last modified time
    Searched refs:AtomicType (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
atomicops_unittest.cc 40 template <class AtomicType>
50 AtomicType prev_word;
51 AtomicType count;
52 AtomicType next_word;
55 AtomicType prev_word_value, next_word_value;
56 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
57 memset(&next_word_value, 0xEE, sizeof(AtomicType));
113 template <class AtomicType>
115 AtomicType value = 0;
116 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
atomicops_unittest.cc 40 template <class AtomicType>
50 AtomicType prev_word;
51 AtomicType count;
52 AtomicType next_word;
55 AtomicType prev_word_value, next_word_value;
56 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
57 memset(&next_word_value, 0xEE, sizeof(AtomicType));
113 template <class AtomicType>
115 AtomicType value = 0;
116 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/chromium/base/
atomicops_unittest.cc 12 template <class AtomicType>
22 AtomicType prev_word;
23 AtomicType count;
24 AtomicType next_word;
27 AtomicType prev_word_value, next_word_value;
28 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
29 memset(&next_word_value, 0xEE, sizeof(AtomicType));
85 template <class AtomicType>
87 AtomicType value = 0;
88 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/chromium_org/base/
atomicops_unittest.cc 12 template <class AtomicType>
22 AtomicType prev_word;
23 AtomicType count;
24 AtomicType next_word;
27 AtomicType prev_word_value, next_word_value;
28 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
29 memset(&next_word_value, 0xEE, sizeof(AtomicType));
85 template <class AtomicType>
87 AtomicType value = 0;
88 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/chromium/base/allocator/
allocator_unittests.cc 87 template <class AtomicType>
96 AtomicType prev_word;
97 AtomicType count;
98 AtomicType next_word;
101 AtomicType prev_word_value, next_word_value;
102 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
103 memset(&next_word_value, 0xEE, sizeof(AtomicType));
159 template <class AtomicType>
161 AtomicType value = 0;
162 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 23 * \tparam AtomicType type for computing matrix function of atomic blocks.
29 * \p AtomicType and uses these results to compute the matrix function of the whole matrix. The class
30 * \p AtomicType should have a \p compute() member function for computing the matrix function of a block.
35 typename AtomicType,
49 MatrixFunction(const MatrixType& A, AtomicType& atomic);
67 template <typename MatrixType, typename AtomicType>
68 class MatrixFunction<MatrixType, AtomicType, 0>
90 MatrixFunction(const MatrixType& A, AtomicType& atomic) : m_A(A), m_atomic(atomic) { }
106 MatrixFunction<ComplexMatrix, AtomicType> mf(CA, m_atomic);
113 AtomicType& m_atomic; /**< \brief Class for computing matrix function of atomic blocks. *
    [all...]
MatrixLogarithm.h 457 typedef MatrixLogarithmAtomic<DynMatrixType> AtomicType;
458 AtomicType atomic;
461 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
  /external/chromium_org/base/allocator/
allocator_unittests.cc 86 template <class AtomicType>
95 AtomicType prev_word;
96 AtomicType count;
97 AtomicType next_word;
100 AtomicType prev_word_value, next_word_value;
101 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
102 memset(&next_word_value, 0xEE, sizeof(AtomicType));
158 template <class AtomicType>
160 AtomicType value = 0;
161 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 592 QualType valueType = cast<AtomicType>(Ty)->getValueType();
618 return isPaddedAtomicType(type->castAs<AtomicType>());
621 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) {
CGAtomic.cpp 53 ValueTy = AtomicTy->castAs<AtomicType>()->getValueType();
340 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
    [all...]
CGDebugInfo.h 126 llvm::DIType CreateType(const AtomicType *Ty, llvm::DIFile F);
CodeGenModule.h 50 class AtomicType;
536 bool isPaddedAtomicType(const AtomicType *type);
    [all...]
CodeGenFunction.cpp 130 type = cast<AtomicType>(type)->getValueType();
    [all...]
CGExprScalar.cpp     [all...]
CGExprAgg.cpp 589 QualType atomicType = E->getSubExpr()->getType();
591 if (isToAtomic) std::swap(atomicType, valueType);
593 assert(atomicType->isAtomicType());
595 atomicType->castAs<AtomicType>()->getValueType()));
599 if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) {
618 if (!valueDest.isIgnored() && CGF.CGM.isPaddedAtomicType(atomicType)) {
622 CGF.EmitNullInitialization(Dest.getAddr(), atomicType);
643 CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp");
    [all...]
CGExprComplex.cpp 37 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
Type.cpp     [all...]
TypePrinter.cpp 806 void TypePrinter::printAtomicBefore(const AtomicType *T, raw_ostream &OS) {
814 void TypePrinter::printAtomicAfter(const AtomicType *T, raw_ostream &OS) { }
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h     [all...]
ASTContext.h 119 mutable llvm::FoldingSet<AtomicType> AtomicTypes;
    [all...]
TypeLoc.h     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]

Completed in 333 milliseconds

1 2