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

12 3

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
wrpr.d 12 8: 85 90 c0 00 wrpr %g3, %tstate
rdpr.d 12 8: 87 50 80 00 rdpr %tstate, %g3
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c 144 PyThreadState *tstate; local
186 tstate = PyThreadState_New(interp);
187 if (tstate == NULL)
189 (void) PyThreadState_Swap(tstate);
266 _PyGILState_Init(interp, tstate);
408 PyThreadState *tstate; local
428 tstate = PyThreadState_GET();
429 interp = tstate->interp;
580 PyThreadState *tstate, *save_tstate; local
590 tstate = PyThreadState_New(interp);
1713 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
traceback.c 108 PyThreadState *tstate = PyThreadState_GET(); local
109 PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
113 tstate->curexc_traceback = (PyObject *)tb;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c 138 PyThreadState *tstate; local
174 tstate = PyThreadState_New(interp);
175 if (tstate == NULL)
177 (void) PyThreadState_Swap(tstate);
254 _PyGILState_Init(interp, tstate);
396 PyThreadState *tstate; local
416 tstate = PyThreadState_GET();
417 interp = tstate->interp;
567 PyThreadState *tstate, *save_tstate; local
577 tstate = PyThreadState_New(interp);
1688 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
traceback.c 108 PyThreadState *tstate = PyThreadState_GET(); local
109 PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
113 tstate->curexc_traceback = (PyObject *)tb;
  /external/python/cpython2/Python/
pythonrun.c 158 PyThreadState *tstate; local
200 tstate = PyThreadState_New(interp);
201 if (tstate == NULL)
203 (void) PyThreadState_Swap(tstate);
280 _PyGILState_Init(interp, tstate);
407 PyThreadState *tstate; local
427 tstate = PyThreadState_GET();
428 interp = tstate->interp;
579 PyThreadState *tstate, *save_tstate; local
589 tstate = PyThreadState_New(interp)
1718 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
traceback.c 108 PyThreadState *tstate = PyThreadState_GET(); local
109 PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
113 tstate->curexc_traceback = (PyObject *)tb;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
pyexpat.c 273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val)
276 if (!tstate->use_tracing || tstate->tracing)
278 if (tstate->c_profilefunc != NULL) {
279 tstate->tracing++;
280 result = tstate->c_profilefunc(tstate->c_profileobj,
282 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
283 || (tstate->c_profilefunc != NULL));
339 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
pyexpat.c 273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val)
276 if (!tstate->use_tracing || tstate->tracing)
278 if (tstate->c_profilefunc != NULL) {
279 tstate->tracing++;
280 result = tstate->c_profilefunc(tstate->c_profileobj,
282 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
283 || (tstate->c_profilefunc != NULL));
339 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /external/python/cpython2/Modules/
pyexpat.c 273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val)
276 if (!tstate->use_tracing || tstate->tracing)
278 if (tstate->c_profilefunc != NULL) {
279 tstate->tracing++;
280 result = tstate->c_profilefunc(tstate->c_profileobj,
282 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
283 || (tstate->c_profilefunc != NULL))
339 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
_tkinter.c 210 { PyThreadState *tstate = PyThreadState_Get(); Py_BEGIN_ALLOW_THREADS \
211 if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); tcl_tstate = tstate;
223 { PyThreadState *tstate = tcl_tstate; tcl_tstate = NULL; \
224 if(tcl_lock)PyThread_release_lock(tcl_lock); PyEval_RestoreThread((tstate)); }
227 { PyThreadState *tstate = PyEval_SaveThread(); \
228 if(tcl_lock)PyThread_acquire_lock(tcl_lock, 1); tcl_tstate = tstate; }
2998 PyThreadState *tstate = PyThreadState_Get(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
genobject.c 47 PyThreadState *tstate = PyThreadState_GET(); local
79 Py_XINCREF(tstate->frame);
81 f->f_back = tstate->frame;
90 assert(f->f_back == tstate->frame);
frameobject.c 622 PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
625 PyFrameObject *back = tstate->frame;
736 f->f_tstate = tstate;
    [all...]
  /external/ppp/pppd/include/net/
slcompress.h 120 struct cstate *last_cs; /* most recently used tstate */
134 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:slcompress
vjcompress.h 119 struct cstate *last_cs; /* most recently used tstate */
126 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member in struct:vjcompress
  /external/python/cpython2/Demo/pysvr/
pysvr.c 278 PyThreadState *tstate; local
286 tstate = Py_NewInterpreter();
287 if (tstate == NULL) {
337 Py_EndInterpreter(tstate);
  /external/syslinux/core/lwip/src/netif/ppp/
vj.h 134 struct cstate *last_cs; /* most recently used tstate */
143 struct cstate tstate[MAX_SLOTS]; /* xmit connection states */ member in struct:vjcompress
vj.c 54 register struct cstate *tstate = comp->tstate; local
62 tstate[i].cs_id = i;
63 tstate[i].cs_next = &tstate[i - 1];
65 tstate[0].cs_next = &tstate[MAX_SLOTS - 1];
66 tstate[0].cs_id = 0;
67 comp->last_cs = &tstate[0];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
genobject.c 47 PyThreadState *tstate = PyThreadState_GET(); local
79 f->f_tstate = tstate;
80 Py_XINCREF(tstate->frame);
82 f->f_back = tstate->frame;
91 assert(f->f_back == tstate->frame);
object.c 2452 PyThreadState *tstate = PyThreadState_GET(); local
2490 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
frameobject.c 624 PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
627 PyFrameObject *back = tstate->frame;
738 f->f_tstate = tstate;
    [all...]
  /external/python/cpython2/Objects/
genobject.c 47 PyThreadState *tstate = PyThreadState_GET(); local
79 f->f_tstate = tstate;
80 Py_XINCREF(tstate->frame);
82 f->f_back = tstate->frame;
91 assert(f->f_back == tstate->frame);
object.c 2452 PyThreadState *tstate = PyThreadState_GET(); local
2490 PyThreadState *tstate = PyThreadState_GET(); local
    [all...]
  /external/llvm/test/MC/Sparc/
sparcv9-instructions.s 123 ! V8-NEXT: wrpr %g6,%i6,%tstate
124 ! V9: wrpr %g6, %fp, %tstate ! encoding: [0x85,0x91,0x80,0x1e]
125 wrpr %g6,%i6,%tstate
184 ! V8-NEXT: wrpr %g6,255,%tstate
185 ! V9: wrpr %g6, 255, %tstate ! encoding: [0x85,0x91,0xa0,0xff]
186 wrpr %g6,255,%tstate
245 ! V8-NEXT: rdpr %tstate,%i5
246 ! V9: rdpr %tstate, %i5 ! encoding: [0xbb,0x50,0x80,0x00]
247 rdpr %tstate,%i5

Completed in 1014 milliseconds

12 3