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

  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c 99 } ThreadStack, *pThreadStack;
167 pThreadStack threadStack =
170 pThreadStack threadStack =
178 if (!threadStack)
181 threadStack = (pThreadStack) calloc (sizeof(ThreadStack), 1);
182 threadStack->TopStack = INIT_TOP_Stack;
183 threadStack->CurrentStack = INIT_TOP_Stack;
185 TlsSetValue(threadLocalStorageHandle,(void*)threadStack);
187 pthread_setspecific(threadLocalStorageHandle,(void*)threadStack);
    [all...]
  /external/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...]

Completed in 1309 milliseconds