Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:datastack_top
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Include/internal/
H
A
D
pycore_frame.h
202
(tstate->
datastack_top
== NULL && tstate->datastack_limit == NULL)
in _PyThreadState_HasStackSpace()
204
(tstate->
datastack_top
!= NULL && tstate->datastack_limit != NULL)
in _PyThreadState_HasStackSpace()
206
return tstate->
datastack_top
!= NULL &&
in _PyThreadState_HasStackSpace()
207
size < (size_t)(tstate->datastack_limit - tstate->
datastack_top
);
in _PyThreadState_HasStackSpace()
214
_PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->
datastack_top
;
in _PyThreadState_BumpFramePointer()
215
tstate->
datastack_top
+= size;
in _PyThreadState_BumpFramePointer()
/third_party/python/Python/
H
A
D
pystate.c
799
tstate->
datastack_top
= NULL;
in init_threadstate()
2189
tstate->datastack_chunk->top = tstate->
datastack_top
-
in push_chunk()
2198
tstate->
datastack_top
= res + size;
in push_chunk()
2206
_PyInterpreterFrame *res = (_PyInterpreterFrame *)tstate->
datastack_top
;
in _PyThreadState_BumpFramePointerSlow()
2207
tstate->
datastack_top
+= size;
in _PyThreadState_BumpFramePointerSlow()
2227
tstate->
datastack_top
= &previous->data[previous->top];
in _PyThreadState_PopFrame()
2233
assert(tstate->
datastack_top
);
in _PyThreadState_PopFrame()
2234
assert(tstate->
datastack_top
>= base);
in _PyThreadState_PopFrame()
2235
tstate->
datastack_top
= base;
in _PyThreadState_PopFrame()
H
A
D
ceval.c
6407
frame->f_code->co_stacksize + FRAME_SPECIALS_SIZE == tstate->
datastack_top
);
/third_party/python/Include/cpython/
H
A
D
pystate.h
183
PyObject **
datastack_top
;
member
Completed in 26 milliseconds