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:_gc_prev
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Include/internal/
H
A
D
pycore_gc.h
19
uintptr_t
_gc_prev
;
member
35
/* Bit flags for
_gc_prev
*/
49
// Lowest two bits of
_gc_prev
is used for _PyGC_PREV_MASK_* flags.
50
#define _PyGCHead_PREV(g) ((PyGC_Head*)((g)->
_gc_prev
& _PyGC_PREV_MASK))
53
(g)->
_gc_prev
= ((g)->
_gc_prev
& ~_PyGC_PREV_MASK) \
58
(((g)->
_gc_prev
& _PyGC_PREV_MASK_FINALIZED) != 0)
60
_Py_RVALUE((g)->
_gc_prev
|= _PyGC_PREV_MASK_FINALIZED)
H
A
D
pycore_object.h
115
* Internal note: interp->gc.generation0->
_gc_prev
doesn't have any bit flags
134
(gc->
_gc_prev
& _PyGC_PREV_MASK_COLLECTING) == 0,
in _PyObject_GC_TRACK()
140
PyGC_Head *last = (PyGC_Head*)(generation0->
_gc_prev
);
in _PyObject_GC_TRACK()
144
generation0->
_gc_prev
= (uintptr_t)gc;
in _PyObject_GC_TRACK()
174
gc->
_gc_prev
&= _PyGC_PREV_MASK_FINALIZED;
in _PyObject_GC_UNTRACK()
/third_party/python/Modules/
H
A
D
gcmodule.c
80
return (g->
_gc_prev
& PREV_MASK_COLLECTING) != 0;
in gc_is_collecting()
86
g->
_gc_prev
&= ~PREV_MASK_COLLECTING;
in gc_clear_collecting()
92
return (Py_ssize_t)(g->
_gc_prev
>> _PyGC_PREV_SHIFT);
in gc_get_refs()
98
g->
_gc_prev
= (g->
_gc_prev
& ~_PyGC_PREV_MASK)
in gc_set_refs()
105
g->
_gc_prev
= (g->
_gc_prev
& _PyGC_PREV_MASK_FINALIZED)
in gc_reset_refs()
116
g->
_gc_prev
-= 1 << _PyGC_PREV_SHIFT;
in gc_decref()
145
GEN.head.
_gc_prev
= (uintptr_t)&GEN.head; \
in _PyGC_InitState()
179
_gc_prev
value
[all...]
Completed in 4 milliseconds