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:PyGC_Head
(Results
1 - 6
of
6
) sorted by relevance
/third_party/python/Modules/
H
A
D
gcmodule.c
72
#define AS_GC(o) ((
PyGC_Head
*)(((char *)(o))-sizeof(
PyGC_Head
)))
75
#define FROM_GC(g) ((PyObject *)(((char *)(g))+sizeof(
PyGC_Head
)))
78
gc_is_collecting(
PyGC_Head
*g)
in gc_is_collecting()
84
gc_clear_collecting(
PyGC_Head
*g)
in gc_clear_collecting()
90
gc_get_refs(
PyGC_Head
*g)
in gc_get_refs()
96
gc_set_refs(
PyGC_Head
*g, Py_ssize_t refs)
in gc_set_refs()
103
gc_reset_refs(
PyGC_Head
*g, Py_ssize_t refs)
in gc_reset_refs()
111
gc_decref(
PyGC_Head
*g)
in gc_decref()
232
gc_list_init(
PyGC_Head
*lis
[all...]
H
A
D
_testinternalcapi.c
19
#include "pycore_gc.h" //
PyGC_Head
572
PyLong_FromSsize_t(sizeof(
PyGC_Head
))) < 0) {
in PyInit__testinternalcapi()
H
A
D
_tracemalloc.c
3
#include "pycore_gc.h" //
PyGC_Head
1469
ptr = (void *)((char *)obj - sizeof(
PyGC_Head
));
in _tracemalloc__get_object_traceback()
1790
ptr = (uintptr_t)((char *)op - sizeof(
PyGC_Head
));
in _PyTraceMalloc_NewReference()
/third_party/python/Include/internal/
H
A
D
pycore_gc.h
20
}
PyGC_Head
;
typedef
22
#define _Py_AS_GC(o) ((
PyGC_Head
*)(o)-1)
23
#define _PyGC_Head_UNUSED
PyGC_Head
46
#define _PyGCHead_NEXT(g) ((
PyGC_Head
*)(g)->_gc_next)
50
#define _PyGCHead_PREV(g) ((
PyGC_Head
*)((g)->_gc_prev & _PyGC_PREV_MASK))
115
PyGC_Head
head;
143
PyGC_Head
*generation0;
H
A
D
pycore_object.h
132
PyGC_Head
*gc = _Py_AS_GC(op);
in _PyObject_GC_TRACK()
139
PyGC_Head
*generation0 = interp->gc.generation0;
in _PyObject_GC_TRACK()
140
PyGC_Head
*last = (
PyGC_Head
*)(generation0->_gc_prev);
in _PyObject_GC_TRACK()
168
PyGC_Head
*gc = _Py_AS_GC(op);
in _PyObject_GC_UNTRACK()
169
PyGC_Head
*prev = _PyGCHead_PREV(gc);
in _PyObject_GC_UNTRACK()
170
PyGC_Head
*next = _PyGCHead_NEXT(gc);
in _PyObject_GC_UNTRACK()
224
return _PyType_IS_GC(tp) * sizeof(
PyGC_Head
) +
in _PyType_PreHeaderSize()
/third_party/python/Objects/
H
A
D
object.c
2353
ptr = (void *)((char *)obj - sizeof(
PyGC_Head
));
in _PyObject_AssertFailed()
Completed in 9 milliseconds