HomeSort by relevance Sort by last modified time
    Searched refs:LocalStorageKey (Results 1 - 10 of 10) sorted by null

  /external/swiftshader/src/Common/
Thread.hpp 63 typedef DWORD LocalStorageKey;
65 typedef pthread_key_t LocalStorageKey;
68 static LocalStorageKey allocateLocalStorageKey(void (*destructor)(void *storage) = free);
69 static void freeLocalStorageKey(LocalStorageKey key);
70 static void *allocateLocalStorage(LocalStorageKey key, size_t size);
71 static void *getLocalStorage(LocalStorageKey key);
72 static void freeLocalStorage(LocalStorageKey key);
148 inline Thread::LocalStorageKey Thread::allocateLocalStorageKey(void (*destructor)(void *storage))
153 LocalStorageKey key;
159 inline void Thread::freeLocalStorageKey(LocalStorageKey key
    [all...]
  /external/swiftshader/src/Reactor/
Thread.hpp 63 typedef DWORD LocalStorageKey;
65 typedef pthread_key_t LocalStorageKey;
68 static LocalStorageKey allocateLocalStorageKey(void (*destructor)(void *storage) = free);
69 static void freeLocalStorageKey(LocalStorageKey key);
70 static void *allocateLocalStorage(LocalStorageKey key, size_t size);
71 static void *getLocalStorage(LocalStorageKey key);
72 static void freeLocalStorage(LocalStorageKey key);
148 inline Thread::LocalStorageKey Thread::allocateLocalStorageKey(void (*destructor)(void *storage))
153 LocalStorageKey key;
159 inline void Thread::freeLocalStorageKey(LocalStorageKey key
    [all...]
  /external/swiftshader/src/System/
Thread.hpp 63 typedef DWORD LocalStorageKey;
65 typedef pthread_key_t LocalStorageKey;
68 static LocalStorageKey allocateLocalStorageKey(void (*destructor)(void *storage) = free);
69 static void freeLocalStorageKey(LocalStorageKey key);
70 static void *allocateLocalStorage(LocalStorageKey key, size_t size);
71 static void *getLocalStorage(LocalStorageKey key);
72 static void freeLocalStorage(LocalStorageKey key);
148 inline Thread::LocalStorageKey Thread::allocateLocalStorageKey(void (*destructor)(void *storage))
153 LocalStorageKey key;
159 inline void Thread::freeLocalStorageKey(LocalStorageKey key
    [all...]
  /external/v8/src/base/platform/
platform.h 308 typedef int32_t LocalStorageKey;
351 static LocalStorageKey CreateThreadLocalKey();
352 static void DeleteThreadLocalKey(LocalStorageKey key);
353 static void* GetThreadLocal(LocalStorageKey key);
354 static int GetThreadLocalInt(LocalStorageKey key) {
357 static void SetThreadLocal(LocalStorageKey key, void* value);
358 static void SetThreadLocalInt(LocalStorageKey key, int value) {
361 static bool HasThreadLocal(LocalStorageKey key) {
366 static inline void* GetExistingThreadLocal(LocalStorageKey key) {
373 static inline void* GetExistingThreadLocal(LocalStorageKey key)
    [all...]
platform-posix.cc 787 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) {
789 // We need to cast pthread_key_t to Thread::LocalStorageKey in two steps
792 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t));
794 return static_cast<Thread::LocalStorageKey>(ptr_key);
796 return static_cast<Thread::LocalStorageKey>(pthread_key);
801 static pthread_key_t LocalKeyToPthreadKey(Thread::LocalStorageKey local_key) {
803 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t));
854 static void CheckFastTls(Thread::LocalStorageKey key) {
867 Thread::LocalStorageKey Thread::CreateThreadLocalKey() {
879 LocalStorageKey local_key = PthreadKeyToLocalKey(key)
    [all...]
platform-win32.cc     [all...]
  /external/v8/src/
assert-scope.cc 19 auto key = reinterpret_cast<base::Thread::LocalStorageKey*>(key_arg);
25 typedef base::LazyStaticInstance<base::Thread::LocalStorageKey,
isolate.h 688 static base::Thread::LocalStorageKey isolate_key() {
693 static base::Thread::LocalStorageKey thread_id_key() {
697 static base::Thread::LocalStorageKey per_isolate_thread_data_key();
    [all...]
isolate.cc 170 base::Thread::LocalStorageKey Isolate::isolate_key_;
171 base::Thread::LocalStorageKey Isolate::thread_id_key_;
172 base::Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;
    [all...]
  /external/swiftshader/src/OpenGL/libEGL/
main.cpp 30 static sw::Thread::LocalStorageKey currentTLS = TLS_OUT_OF_INDEXES;

Completed in 456 milliseconds