HomeSort by relevance Sort by last modified time
    Searched full:atomictype (Results 1 - 25 of 48) 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/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/
CGExprAgg.cpp 611 QualType atomicType = E->getSubExpr()->getType();
613 if (isToAtomic) std::swap(atomicType, valueType);
615 assert(atomicType->isAtomicType());
617 atomicType->castAs<AtomicType>()->getValueType()));
621 if (Dest.isIgnored() || !CGF.CGM.isPaddedAtomicType(atomicType)) {
640 if (!valueDest.isIgnored() && CGF.CGM.isPaddedAtomicType(atomicType)) {
644 CGF.EmitNullInitialization(Dest.getAddr(), atomicType);
665 CGF.CreateAggTemp(atomicType, "atomic-to-nonatomic.temp");
    [all...]
CodeGenTypes.cpp 599 QualType valueType = cast<AtomicType>(Ty)->getValueType();
625 return isPaddedAtomicType(type->castAs<AtomicType>());
628 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) {
CGExprComplex.cpp 41 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
823 if (const AtomicType *AT = LHSTy->getAs<AtomicType>())
    [all...]
CGAtomic.cpp 50 if (auto *ATy = AtomicTy->getAs<AtomicType>())
649 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
    [all...]
CodeGenModule.h 52 class AtomicType;
646 bool isPaddedAtomicType(const AtomicType *type);
    [all...]
CGDebugInfo.h 143 llvm::DIType CreateType(const AtomicType *Ty, llvm::DIFile F);
CodeGenFunction.cpp 158 type = cast<AtomicType>(type)->getValueType();
    [all...]
CGExpr.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/lldb/source/Symbol/
ClangASTImporter.cpp 306 if (const AtomicType *atomic_type = type->getAs<AtomicType>())
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 106 REGISTER_MATCHER(atomicType);
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
TypePrinter.cpp 848 void TypePrinter::printAtomicBefore(const AtomicType *T, raw_ostream &OS) {
856 void TypePrinter::printAtomicAfter(const AtomicType *T, raw_ostream &OS) { }
    [all...]
Type.cpp     [all...]
  /prebuilts/android-emulator/linux-x86_64/
emulator 
  /external/clang/lib/Sema/
SemaExpr.cpp 678 if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
    [all...]
SemaChecking.cpp     [all...]
SemaTemplateDeduction.cpp     [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/clang/include/clang/AST/
TypeLoc.h     [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h     [all...]

Completed in 1109 milliseconds

1 2