HomeSort by relevance Sort by last modified time
    Searched defs:ThreadLocal (Results 1 - 25 of 42) sorted by null

1 2

  /external/deqp/framework/delibs/decpp/
deThreadLocal.cpp 31 ThreadLocal::ThreadLocal (void)
38 ThreadLocal::~ThreadLocal (void)
deThreadLocal.hpp 35 class ThreadLocal
38 ThreadLocal (void);
39 ~ThreadLocal (void);
45 ThreadLocal (const ThreadLocal& other); // Not allowed!
46 ThreadLocal& operator= (const ThreadLocal& other); // Not allowed!
  /external/compiler-rt/test/asan/TestCases/Linux/
static_tls.cc 25 static __thread unsigned ThreadLocal;
27 return &ThreadLocal;
  /build/kati/
thread_local.h 52 // constructor in ThreadLocal class to avoid static initializator.
65 class ThreadLocal {
96 ThreadLocal<Type, &name##_key, &name##_once> name;
  /external/llvm/include/llvm/Support/
ThreadLocal.h 1 //===- llvm/Support/ThreadLocal.h - Thread Local Data ------------*- C++ -*-===//
10 // This file declares the llvm::sys::ThreadLocal class.
23 // ThreadLocalImpl - Common base class of all ThreadLocal instantiations.
43 /// ThreadLocal - A class used to abstract thread-local storage. It holds,
46 class ThreadLocal : public ThreadLocalImpl {
48 ThreadLocal() : ThreadLocalImpl() { }
  /external/v8/src/regexp/
regexp-stack.h 68 return static_cast<int>(sizeof(ThreadLocal));
88 struct ThreadLocal {
89 ThreadLocal() { Clear(); }
117 ThreadLocal thread_local_;
  /external/v8/src/
execution.h 84 static int ArchiveSpacePerThread() { return sizeof(ThreadLocal); }
177 class ThreadLocal final {
179 ThreadLocal() { Clear(); }
226 ThreadLocal thread_local_;