Home
last modified time | relevance | path

Searched refs:LocalStorageKey (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Common/
DThread.hpp63 typedef DWORD LocalStorageKey; typedef in sw::Thread
65 typedef pthread_key_t LocalStorageKey; typedef in sw::Thread
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)) in allocateLocalStorageKey()
153 LocalStorageKey key; in allocateLocalStorageKey()
159 inline void Thread::freeLocalStorageKey(LocalStorageKey key) in freeLocalStorageKey()
[all …]
/third_party/node/deps/v8/src/base/platform/
Dplatform.h505 using LocalStorageKey = SbThreadLocalKey;
507 using LocalStorageKey = int32_t;
554 static LocalStorageKey CreateThreadLocalKey();
555 static void DeleteThreadLocalKey(LocalStorageKey key);
556 static void* GetThreadLocal(LocalStorageKey key);
557 static void SetThreadLocal(LocalStorageKey key, void* value);
558 static bool HasThreadLocal(LocalStorageKey key) { in HasThreadLocal()
563 static inline void* GetExistingThreadLocal(LocalStorageKey key) { in GetExistingThreadLocal()
570 static inline void* GetExistingThreadLocal(LocalStorageKey key) { in GetExistingThreadLocal()
Dplatform-posix.cc1097 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) { in PthreadKeyToLocalKey()
1102 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t)); in PthreadKeyToLocalKey()
1104 return static_cast<Thread::LocalStorageKey>(ptr_key); in PthreadKeyToLocalKey()
1106 return static_cast<Thread::LocalStorageKey>(pthread_key); in PthreadKeyToLocalKey()
1111 static pthread_key_t LocalKeyToPthreadKey(Thread::LocalStorageKey local_key) { in LocalKeyToPthreadKey()
1113 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t)); in LocalKeyToPthreadKey()
1163 static void CheckFastTls(Thread::LocalStorageKey key) { in CheckFastTls()
1176 Thread::LocalStorageKey Thread::CreateThreadLocalKey() { in CreateThreadLocalKey()
1188 LocalStorageKey local_key = PthreadKeyToLocalKey(key); in CreateThreadLocalKey()
1197 void Thread::DeleteThreadLocalKey(LocalStorageKey key) { in DeleteThreadLocalKey()
[all …]
Dplatform-starboard.cc415 Thread::LocalStorageKey Thread::CreateThreadLocalKey() { in CreateThreadLocalKey()
419 void Thread::DeleteThreadLocalKey(LocalStorageKey key) { in DeleteThreadLocalKey()
423 void* Thread::GetThreadLocal(LocalStorageKey key) { in GetThreadLocal()
427 void Thread::SetThreadLocal(LocalStorageKey key, void* value) { in SetThreadLocal()
Dplatform-win32.cc1638 Thread::LocalStorageKey Thread::CreateThreadLocalKey() { in CreateThreadLocalKey()
1641 return static_cast<LocalStorageKey>(result); in CreateThreadLocalKey()
1645 void Thread::DeleteThreadLocalKey(LocalStorageKey key) { in DeleteThreadLocalKey()
1652 void* Thread::GetThreadLocal(LocalStorageKey key) { in GetThreadLocal()
1657 void Thread::SetThreadLocal(LocalStorageKey key, void* value) { in SetThreadLocal()
/third_party/node/deps/v8/src/logging/
Druntime-call-stats.h668 base::Thread::LocalStorageKey GetKey();
680 base::Optional<base::Thread::LocalStorageKey> tls_key_;
Druntime-call-stats.cc294 base::Thread::LocalStorageKey WorkerThreadRuntimeCallStats::GetKey() { in GetKey()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.cpp31 static sw::Thread::LocalStorageKey currentTLS = TLS_OUT_OF_INDEXES;
/third_party/node/deps/v8/src/execution/
Disolate.h2012 static base::Thread::LocalStorageKey per_isolate_thread_data_key_;
2013 static base::Thread::LocalStorageKey isolate_key_;
Disolate.cc461 base::Thread::LocalStorageKey Isolate::isolate_key_;
462 base::Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;