Home | History | Annotate | Download | only in crypto

Lines Matching defs:arg

35 static DWORD WINAPI thread_run(LPVOID arg) {
38 OPENSSL_memcpy(&thread_func, &arg, sizeof(thread_func));
44 void *arg;
46 OPENSSL_memcpy(&arg, &thread_func, sizeof(arg));
49 0 /* default stack size */, thread_run, arg,
66 static void *thread_run(void *arg) {
67 void (*thread_func)(void) = reinterpret_cast<void (*)(void)>(arg);
148 static void thread_local_destructor(void *arg) {
149 if (arg == NULL) {
153 unsigned *count = reinterpret_cast<unsigned*>(arg);