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

1 2

  /external/v8/test/cctest/
test-atomicops.cc 43 template <class AtomicType>
52 AtomicType prev_word;
53 AtomicType count;
54 AtomicType next_word;
57 AtomicType prev_word_value, next_word_value;
58 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
59 memset(&next_word_value, 0xEE, sizeof(AtomicType));
112 template <class AtomicType>
114 AtomicType value = 0;
115 AtomicType prev = NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/libchrome/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/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 448 typedef MatrixLogarithmAtomic<DynMatrixType> AtomicType;
449 AtomicType atomic;
452 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 157 if (const auto *AT = T->getAs<AtomicType>())
614 QualType valueType = cast<AtomicType>(Ty)->getValueType();
640 return isPaddedAtomicType(type->castAs<AtomicType>());
643 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) {
CGExprComplex.cpp 41 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
    [all...]
CodeGenModule.h 52 class AtomicType;
643 bool isPaddedAtomicType(const AtomicType *type);
    [all...]
CGDebugInfo.h 170 llvm::DIType *CreateType(const AtomicType *Ty, llvm::DIFile *F);
CGAtomic.cpp 50 if (auto *ATy = AtomicTy->getAs<AtomicType>())
676 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
    [all...]
CodeGenFunction.cpp 215 type = cast<AtomicType>(type)->getValueType();
    [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 852 void TypePrinter::printAtomicBefore(const AtomicType *T, raw_ostream &OS) {
860 void TypePrinter::printAtomicAfter(const AtomicType *T, raw_ostream &OS) { }
    [all...]
Type.cpp     [all...]
ASTContext.cpp     [all...]
ASTDumper.cpp 402 void VisitAtomicType(const AtomicType *T) {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
SemaExpr.cpp 706 if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
    [all...]
SemaExprCXX.cpp     [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h     [all...]
TypeLoc.h     [all...]
Type.h     [all...]
ASTContext.h 131 mutable llvm::FoldingSet<AtomicType> AtomicTypes;
    [all...]

Completed in 393 milliseconds

1 2