OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadStack
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/third_party/vtune/
jitprofiling.cc
136
}
ThreadStack
, *pThreadStack;
203
pThreadStack
threadStack
= (pThreadStack)TlsGetValue (threadLocalStorageHandle);
205
pThreadStack
threadStack
= (pThreadStack)pthread_getspecific(threadLocalStorageHandle);
212
if (!
threadStack
)
215
threadStack
= (pThreadStack) calloc (sizeof(
ThreadStack
), 1);
216
threadStack
->TopStack = INIT_TOP_Stack;
217
threadStack
->CurrentStack = INIT_TOP_Stack;
219
TlsSetValue(threadLocalStorageHandle,(void*)
threadStack
);
221
pthread_setspecific(threadLocalStorageHandle,(void*)
threadStack
);
[
all
...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c
98
}
ThreadStack
, *pThreadStack;
166
pThreadStack
threadStack
=
169
pThreadStack
threadStack
=
177
if (!
threadStack
)
180
threadStack
= (pThreadStack) calloc (sizeof(
ThreadStack
), 1);
181
threadStack
->TopStack = INIT_TOP_Stack;
182
threadStack
->CurrentStack = INIT_TOP_Stack;
184
TlsSetValue(threadLocalStorageHandle,(void*)
threadStack
);
186
pthread_setspecific(threadLocalStorageHandle,(void*)
threadStack
);
[
all
...]
Completed in 251 milliseconds