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_next
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Include/internal/
H
A
D
pycore_gc.h
15
uintptr_t
_gc_next
;
member
26
#define _PyObject_GC_IS_TRACKED(o) (_Py_AS_GC(o)->
_gc_next
!= 0)
44
// Lowest bit of
_gc_next
is used for flags only in GC.
46
#define _PyGCHead_NEXT(g) ((PyGC_Head*)(g)->
_gc_next
)
47
#define _PyGCHead_SET_NEXT(g, p) _Py_RVALUE((g)->
_gc_next
= (uintptr_t)(p))
H
A
D
pycore_object.h
173
gc->
_gc_next
= 0;
in _PyObject_GC_UNTRACK()
/third_party/python/Modules/
H
A
D
gcmodule.c
60
// Lowest bit of
_gc_next
is used for UNREACHABLE flag.
144
GEN.head.
_gc_next
= (uintptr_t)&GEN.head; \
in _PyGC_InitState()
203
_gc_next
values
206
_gc_next
takes these values:
237
list->
_gc_next
= (uintptr_t)list;
in gc_list_init()
243
return (list->
_gc_next
== (uintptr_t)list);
in gc_list_is_empty()
271
node->
_gc_next
= 0; /* object is not currently tracked */
in gc_list_remove()
376
assert((head->
_gc_next
& NEXT_MASK_UNREACHABLE) == 0);
in validate_list()
398
PyGC_Head *truenext = (PyGC_Head *)(gc->
_gc_next
& ~NEXT_MASK_UNREACHABLE);
in validate_list()
402
assert((gc->
_gc_next
in validate_list()
[all...]
Completed in 3 milliseconds