HomeSort by relevance Sort by last modified time
    Searched refs:gc_refs (Results 1 - 16 of 16) sorted by null

  /external/clang/test/CodeGen/
2008-08-07-AlignPadding1.c 10 long gc_refs; member in struct:_gc_head::__anon14696
union-init.c 10 Py_ssize_t gc_refs; member in struct:_gc_head::__anon14909
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 171 gc_refs values.
173 Between collections, every gc'ed object has one of two gc_refs values:
185 During a collection, gc_refs can temporarily take on other states:
189 to gc_refs, for each object in the generation being collected.
190 subtract_refs() then adjusts gc_refs so that it equals the number of
193 gc_refs remains >= 0 throughout these steps.
198 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
199 again. Objects that are found to be unreachable have gc_refs set to
206 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
213 #define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
397 const Py_ssize_t gc_refs = gc->gc.gc_refs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 131 gc_refs values.
133 Between collections, every gc'ed object has one of two gc_refs values:
145 During a collection, gc_refs can temporarily take on other states:
149 to gc_refs, for each object in the generation being collected.
150 subtract_refs() then adjusts gc_refs so that it equals the number of
153 gc_refs remains >= 0 throughout these steps.
158 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
159 again. Objects that are found to be unreachable have gc_refs set to
166 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
173 #define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
357 const Py_ssize_t gc_refs = gc->gc.gc_refs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon5368
273 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
275 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
288 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
289 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
297 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon5674
273 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
275 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
288 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
289 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
297 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /prebuilts/gdb/darwin-x86/include/python2.7/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon53281
279 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
281 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
294 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
295 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
303 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /prebuilts/gdb/linux-x86/include/python2.7/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon53403
279 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
281 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
294 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
295 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
303 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon105123
279 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
281 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
294 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
295 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
303 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
objimpl.h 256 Py_ssize_t gc_refs; member in struct:_gc_head::__anon105246
279 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
281 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
294 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
295 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
303 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
genobject.c 191 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
object.c     [all...]
typeobject.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
genobject.c 194 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
object.c     [all...]
typeobject.c     [all...]

Completed in 191 milliseconds