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

1 2

  /external/chromium_org/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/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...]
  /sdk/emulator/opengl/shared/emugl/common/
lazy_instance.cpp 27 typedef LazyInstanceState::AtomicType AtomicType;
44 static inline AtomicType loadAcquire(AtomicType volatile* ptr) {
45 AtomicType ret = *ptr;
50 static inline void storeRelease(AtomicType volatile* ptr, AtomicType value) {
55 static int atomicCompareAndSwap(AtomicType volatile* ptr,
80 AtomicType state = loadAcquire(&mState);
lazy_instance.h 100 typedef LONG volatile AtomicType;
102 typedef int volatile AtomicType;
105 volatile AtomicType mState;
  /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/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/chromium_org/base/allocator/
allocator_unittest.cc 85 template <class AtomicType>
94 AtomicType prev_word;
95 AtomicType count;
96 AtomicType next_word;
99 AtomicType prev_word_value, next_word_value;
100 memset(&prev_word_value, 0xFF, sizeof(AtomicType));
101 memset(&next_word_value, 0xEE, sizeof(AtomicType));
157 template <class AtomicType>
159 AtomicType value = 0;
160 AtomicType prev = base::subtle::NoBarrier_CompareAndSwap(&value, 0, 1)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 590 QualType valueType = cast<AtomicType>(Ty)->getValueType();
616 return isPaddedAtomicType(type->castAs<AtomicType>());
619 bool CodeGenModule::isPaddedAtomicType(const AtomicType *type) {
CGAtomic.cpp 44 ValueTy = AtomicTy->castAs<AtomicType>()->getValueType();
480 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
    [all...]
CodeGenModule.h 51 class AtomicType;
621 bool isPaddedAtomicType(const AtomicType *type);
    [all...]
CGDebugInfo.h 136 llvm::DIType CreateType(const AtomicType *Ty, llvm::DIFile F);
CodeGenFunction.cpp 135 type = cast<AtomicType>(type)->getValueType();
    [all...]
CGExprScalar.cpp     [all...]
CGExprComplex.cpp 37 return cast<ComplexType>(cast<AtomicType>(type)->getValueType());
    [all...]
  /external/lldb/source/Symbol/
ClangASTImporter.cpp 306 if (const AtomicType *atomic_type = type->getAs<AtomicType>())
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
Type.cpp     [all...]
TypePrinter.cpp 831 void TypePrinter::printAtomicBefore(const AtomicType *T, raw_ostream &OS) {
839 void TypePrinter::printAtomicAfter(const AtomicType *T, raw_ostream &OS) { }
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/include/clang/AST/
DataRecursiveASTVisitor.h     [all...]
RecursiveASTVisitor.h     [all...]
TypeLoc.h     [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]

Completed in 585 milliseconds

1 2