HomeSort by relevance Sort by last modified time
    Searched refs:tstate (Results 1 - 25 of 64) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystate.c 53 static void _PyGILState_NoteThreadState(PyThreadState* tstate);
159 PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState)); local
164 if (tstate != NULL) {
165 tstate->interp = interp;
167 tstate->frame = NULL;
168 tstate->recursion_depth = 0;
169 tstate->tracing = 0;
170 tstate->use_tracing = 0;
171 tstate->tick_counter = 0;
172 tstate->gilstate_counter = 0;
313 PyThreadState *tstate = _PyThreadState_Current; local
393 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
ceval.c 86 PyThreadState *tstate = PyThreadState_Get(); local
87 if (!tstate->interp->tscdump)
271 PyEval_AcquireThread(PyThreadState *tstate)
273 if (tstate == NULL)
278 if (PyThreadState_Swap(tstate) != NULL)
284 PyEval_ReleaseThread(PyThreadState *tstate)
286 if (tstate == NULL)
288 if (PyThreadState_Swap(NULL) != tstate)
302 PyThreadState *tstate; local
317 tstate = PyThreadState_GET();
341 PyThreadState *tstate = PyThreadState_Swap(NULL); local
620 PyThreadState *tstate = PyThreadState_GET(); local
708 PyThreadState *tstate = PyThreadState_GET(); local
3037 PyThreadState *tstate = PyThreadState_GET(); local
3478 PyThreadState *tstate = PyThreadState_GET(); local
3700 register PyThreadState *tstate = frame->f_tstate; local
3717 PyThreadState *tstate = frame->f_tstate; local
3764 PyThreadState *tstate = PyThreadState_GET(); local
3781 PyThreadState *tstate = PyThreadState_GET(); local
3830 PyThreadState *tstate = PyThreadState_GET(); local
4012 PyThreadState *tstate = PyThreadState_GET(); local
4099 PyThreadState *tstate = PyThreadState_GET(); local
4249 PyThreadState *tstate = PyThreadState_GET(); local
4344 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
sysmodule.c 52 PyThreadState *tstate = PyThreadState_GET(); local
53 PyObject *sd = tstate->interp->sysdict;
74 PyThreadState *tstate = PyThreadState_GET(); local
75 PyObject *sd = tstate->interp->sysdict;
152 PyThreadState *tstate; local
153 tstate = PyThreadState_GET();
156 tstate->exc_type != NULL ? tstate->exc_type : Py_None,
157 tstate->exc_value != NULL ? tstate->exc_value : Py_None,
172 PyThreadState *tstate; local
339 PyThreadState *tstate = frame->f_tstate; local
357 PyThreadState *tstate = frame->f_tstate; local
408 PyThreadState *tstate = PyThreadState_GET(); local
447 PyThreadState *tstate = PyThreadState_GET(); local
495 PyThreadState *tstate = PyThreadState_Get(); local
632 PyThreadState *tstate = PyThreadState_GET(); local
657 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
errors.c 27 PyThreadState *tstate = PyThreadState_GET(); local
39 oldtype = tstate->curexc_type;
40 oldvalue = tstate->curexc_value;
41 oldtraceback = tstate->curexc_traceback;
43 tstate->curexc_type = type;
44 tstate->curexc_value = value;
45 tstate->curexc_traceback = traceback;
78 PyThreadState *tstate = PyThreadState_GET(); local
80 return tstate->curexc_type;
151 PyThreadState *tstate = NULL; local
249 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystate.c 54 static void _PyGILState_NoteThreadState(PyThreadState* tstate);
160 PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState)); local
165 if (tstate != NULL) {
166 tstate->interp = interp;
168 tstate->frame = NULL;
169 tstate->recursion_depth = 0;
170 tstate->tracing = 0;
171 tstate->use_tracing = 0;
172 tstate->tick_counter = 0;
173 tstate->gilstate_counter = 0;
311 PyThreadState *tstate = _PyThreadState_Current; local
391 PyThreadState *tstate = PyThreadState_GET(); local
547 PyThreadState *tstate = PyGILState_GetThisThreadState(); local
    [all...]
ceval.c 84 PyThreadState *tstate = PyThreadState_Get(); local
85 if (!tstate->interp->tscdump)
269 PyEval_AcquireThread(PyThreadState *tstate)
271 if (tstate == NULL)
276 if (PyThreadState_Swap(tstate) != NULL)
282 PyEval_ReleaseThread(PyThreadState *tstate)
284 if (tstate == NULL)
286 if (PyThreadState_Swap(NULL) != tstate)
300 PyThreadState *tstate; local
315 tstate = PyThreadState_GET();
339 PyThreadState *tstate = PyThreadState_Swap(NULL); local
618 PyThreadState *tstate = PyThreadState_GET(); local
706 PyThreadState *tstate = PyThreadState_GET(); local
3022 PyThreadState *tstate = PyThreadState_GET(); local
3464 PyThreadState *tstate = PyThreadState_GET(); local
3678 register PyThreadState *tstate = frame->f_tstate; local
3695 PyThreadState *tstate = frame->f_tstate; local
3742 PyThreadState *tstate = PyThreadState_GET(); local
3759 PyThreadState *tstate = PyThreadState_GET(); local
3808 PyThreadState *tstate = PyThreadState_GET(); local
3990 PyThreadState *tstate = PyThreadState_GET(); local
4077 PyThreadState *tstate = PyThreadState_GET(); local
4227 PyThreadState *tstate = PyThreadState_GET(); local
4322 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
sysmodule.c 52 PyThreadState *tstate = PyThreadState_GET(); local
53 PyObject *sd = tstate->interp->sysdict;
74 PyThreadState *tstate = PyThreadState_GET(); local
75 PyObject *sd = tstate->interp->sysdict;
152 PyThreadState *tstate; local
153 tstate = PyThreadState_GET();
156 tstate->exc_type != NULL ? tstate->exc_type : Py_None,
157 tstate->exc_value != NULL ? tstate->exc_value : Py_None,
172 PyThreadState *tstate; local
339 PyThreadState *tstate = frame->f_tstate; local
357 PyThreadState *tstate = frame->f_tstate; local
409 PyThreadState *tstate = PyThreadState_GET(); local
448 PyThreadState *tstate = PyThreadState_GET(); local
495 PyThreadState *tstate = PyThreadState_Get(); local
628 PyThreadState *tstate = PyThreadState_GET(); local
653 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
errors.c 27 PyThreadState *tstate = PyThreadState_GET(); local
39 oldtype = tstate->curexc_type;
40 oldvalue = tstate->curexc_value;
41 oldtraceback = tstate->curexc_traceback;
43 tstate->curexc_type = type;
44 tstate->curexc_value = value;
45 tstate->curexc_traceback = traceback;
78 PyThreadState *tstate = PyThreadState_GET(); local
80 return tstate->curexc_type;
149 PyThreadState *tstate = NULL; local
247 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /external/python/cpython2/Python/
pystate.c 53 static void _PyGILState_NoteThreadState(PyThreadState* tstate);
159 PyThreadState *tstate = (PyThreadState *)malloc(sizeof(PyThreadState)); local
164 if (tstate != NULL) {
165 tstate->interp = interp;
167 tstate->frame = NULL;
168 tstate->recursion_depth = 0;
169 tstate->tracing = 0;
170 tstate->use_tracing = 0;
171 tstate->tick_counter = 0;
172 tstate->gilstate_counter = 0
313 PyThreadState *tstate = _PyThreadState_Current; local
393 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
ceval.c 86 PyThreadState *tstate = PyThreadState_Get(); local
87 if (!tstate->interp->tscdump)
271 PyEval_AcquireThread(PyThreadState *tstate)
273 if (tstate == NULL)
278 if (PyThreadState_Swap(tstate) != NULL)
284 PyEval_ReleaseThread(PyThreadState *tstate)
286 if (tstate == NULL)
288 if (PyThreadState_Swap(NULL) != tstate)
302 PyThreadState *tstate; local
317 tstate = PyThreadState_GET()
341 PyThreadState *tstate = PyThreadState_Swap(NULL); local
620 PyThreadState *tstate = PyThreadState_GET(); local
802 PyThreadState *tstate = PyThreadState_GET(); local
3354 PyThreadState *tstate = PyThreadState_GET(); local
3795 PyThreadState *tstate = PyThreadState_GET(); local
4017 register PyThreadState *tstate = frame->f_tstate; local
4034 PyThreadState *tstate = frame->f_tstate; local
4081 PyThreadState *tstate = PyThreadState_GET(); local
4098 PyThreadState *tstate = PyThreadState_GET(); local
4147 PyThreadState *tstate = PyThreadState_GET(); local
4329 PyThreadState *tstate = PyThreadState_GET(); local
4415 PyThreadState *tstate = PyThreadState_GET(); local
4565 PyThreadState *tstate = PyThreadState_GET(); local
4662 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
sysmodule.c 52 PyThreadState *tstate = PyThreadState_GET(); local
53 PyObject *sd = tstate->interp->sysdict;
74 PyThreadState *tstate = PyThreadState_GET(); local
75 PyObject *sd = tstate->interp->sysdict;
152 PyThreadState *tstate; local
153 tstate = PyThreadState_GET();
156 tstate->exc_type != NULL ? tstate->exc_type : Py_None,
157 tstate->exc_value != NULL ? tstate->exc_value : Py_None
172 PyThreadState *tstate; local
339 PyThreadState *tstate = frame->f_tstate; local
357 PyThreadState *tstate = frame->f_tstate; local
408 PyThreadState *tstate = PyThreadState_GET(); local
447 PyThreadState *tstate = PyThreadState_GET(); local
495 PyThreadState *tstate = PyThreadState_Get(); local
632 PyThreadState *tstate = PyThreadState_GET(); local
657 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
errors.c 27 PyThreadState *tstate = PyThreadState_GET(); local
39 oldtype = tstate->curexc_type;
40 oldvalue = tstate->curexc_value;
41 oldtraceback = tstate->curexc_traceback;
43 tstate->curexc_type = type;
44 tstate->curexc_value = value;
45 tstate->curexc_traceback = traceback;
78 PyThreadState *tstate = PyThreadState_GET(); local
80 return tstate->curexc_type;
151 PyThreadState *tstate = NULL local
246 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /external/strace/linux/sparc64/
set_error.c 4 sparc_regs.tstate |= 0x1100000000UL;
12 sparc_regs.tstate &= ~0x1100000000UL;
get_error.c 4 if (sparc_regs.tstate & 0x1100000000UL) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
threadmodule.c 392 PyThreadState *tstate; local
399 && (tstate = PyThreadState_Get())
400 && tstate->interp) {
401 for(tstate = PyInterpreterState_ThreadHead(tstate->interp);
402 tstate;
403 tstate = PyThreadState_Next(tstate))
404 if (tstate->dict &&
405 PyDict_GetItem(tstate->dict, self->key))
599 PyThreadState *tstate; member in struct:bootstate
606 PyThreadState *tstate; local
    [all...]
  /external/python/cpython2/Modules/
threadmodule.c 398 PyThreadState *tstate; local
405 && (tstate = PyThreadState_Get())
406 && tstate->interp) {
407 for(tstate = PyInterpreterState_ThreadHead(tstate->interp);
408 tstate;
409 tstate = PyThreadState_Next(tstate))
410 if (tstate->dict &&
411 PyDict_GetItem(tstate->dict, self->key)
605 PyThreadState *tstate; member in struct:bootstate
612 PyThreadState *tstate; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
rdpr.s 5 rdpr %tstate,%g3
wrpr.s 5 wrpr %g3,%tstate
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /external/python/cpython2/Include/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /prebuilts/gdb/darwin-x86/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /prebuilts/gdb/linux-x86/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ceval.h 126 PyAPI_FUNC(void) PyEval_AcquireThread(PyThreadState *tstate); variable
127 PyAPI_FUNC(void) PyEval_ReleaseThread(PyThreadState *tstate); variable

Completed in 1028 milliseconds

1 2 3