Searched defs:gc (Results 1 - 25 of 50) sorted by last modified time

12

/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
H A DX11GraphicsWindow.c45 GC gc; member in struct:__anon5168
533 Drv->display, Drv->win, Drv->gc, Drv->image, X, Y, X, Y, Width, Height, False
537 Drv->display, Drv->win, Drv->gc, Drv->image, X, Y, X, Y, Width, Height
836 Private->display, Private->win, Private->win, Private->gc,
851 XSetForeground (Private->display, Private->gc, Color);
853 Private->display, Private->win, Private->gc,
974 Drv->gc = DefaultGC (Drv->display, Drv->screen);
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlobject.h154 #define gcvalue(o) check_exp(iscollectable(o), val_(o).gc)
156 #define rawtsvalue(o) check_exp(ttisstring(o), &val_(o).gc->ts)
158 #define rawuvalue(o) check_exp(ttisuserdata(o), &val_(o).gc->u)
160 #define clvalue(o) check_exp(ttisclosure(o), &val_(o).gc->cl)
161 #define clLvalue(o) check_exp(ttisLclosure(o), &val_(o).gc->cl.l)
162 #define clCvalue(o) check_exp(ttisCclosure(o), &val_(o).gc->cl.c)
164 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h)
166 #define thvalue(o) check_exp(ttisthread(o), &val_(o).gc->th)
167 /* a dead value may get the 'gc' field, but cannot access its contents */
168 #define deadvalue(o) check_exp(ttisdeadkey(o), cast(void *, val_(o).gc))
389 GCObject *gc; /* collectable objects */ member in union:Value
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dobjimpl.h171 vrbl-size object with nitems items, exclusive of gc overhead (if any). The
234 /* C equivalent of gc.collect(). */
257 } gc; member in union:_gc_head
273 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
275 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
276 g->gc.gc_next = _PyGC_generation0; \
277 g->gc.gc_prev = _PyGC_generation0->gc.gc_prev; \
278 g->gc.gc_prev->gc
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dgcmodule.c11 http://www.arctrix.com/nas/python/gc/
161 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
173 Between collections, every gc'ed object has one of two gc_refs values:
213 #define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
214 #define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
216 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
223 list->gc.gc_prev = list;
224 list->gc.gc_next = list;
230 return (list->gc.gc_next == list);
239 node->gc
293 PyGC_Head *gc; local
307 PyGC_Head *gc; local
329 PyGC_Head *gc = containers->gc.gc_next; local
361 PyGC_Head *gc = AS_GC(op); local
382 PyGC_Head *gc = containers->gc.gc_next; local
396 PyGC_Head *gc = AS_GC(op); local
445 PyGC_Head *gc = young->gc.gc_next; local
522 PyGC_Head *next, *gc = head->gc.gc_next; local
539 PyGC_Head *gc; local
564 PyGC_Head *gc = AS_GC(op); local
579 PyGC_Head *gc = finalizers->gc.gc_next; local
603 PyGC_Head *gc; local
780 PyGC_Head *gc = finalizers->gc.gc_next; local
810 PyGC_Head *gc = collectable->gc.gc_next; local
881 PyGC_Head *gc; local
1230 PyGC_Head *gc; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dobjimpl.h171 vrbl-size object with nitems items, exclusive of gc overhead (if any). The
234 /* C equivalent of gc.collect(). */
257 } gc; member in union:_gc_head
273 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
275 g->gc.gc_refs = _PyGC_REFS_REACHABLE; \
276 g->gc.gc_next = _PyGC_generation0; \
277 g->gc.gc_prev = _PyGC_generation0->gc.gc_prev; \
278 g->gc.gc_prev->gc
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
H A Dgc_has_finalizer.py2 The gc module can still invoke arbitrary Python code and crash.
15 import gc namespace
33 gc.collect()
36 gc.collect()
H A Dgc_inspection.py2 gc.get_referrers() can be used to see objects before they are fully built.
5 by using gc.get_referrers(), as well as many extension modules (even
17 "gc.get_referrers() is dangerous, use only for debugging".
20 import gc namespace
27 [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
H A Dtest_ctypes.py6 import gc namespace
16 gc.collect()
H A Dtest_dictself.py3 import gc namespace
12 gc.collect(); gc.collect(); gc.collect()
H A Dtest_selftype.py4 import gc namespace
13 gc.collect(); gc.collect(); gc.collect()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dregrtest.py58 -- call gc.set_threshold(THRESHOLD)
302 import gc namespace
303 gc.set_threshold(int(a))
379 import gc namespace
387 #gc.set_debug(gc.DEBUG_SAVEALL)
575 gc.collect()
576 if gc.garbage:
577 print "Warning: test created", len(gc.garbage),
581 found_garbage.extend(gc
929 import gc namespace
1031 import gc, copy_reg namespace
[all...]
H A Dtest_array.py753 import gc namespace
759 gc.collect()
1086 import gc namespace
1090 gc.collect()
H A Dtest_bisect.py308 import gc namespace
312 gc.collect()
H A Dtest_builtin.py1698 import gc namespace
1702 gc.collect()
H A Dtest_class.py476 import gc namespace
477 gc.collect()
H A Dtest_csv.py11 import gc namespace
973 gc.collect()
974 self.assertEqual(gc.garbage, [])
989 gc.collect()
990 self.assertEqual(gc.garbage, [])
1005 gc.collect()
1006 self.assertEqual(gc.garbage, [])
1022 gc.collect()
1023 self.assertEqual(gc.garbage, [])
H A Dtest_deque.py4 import gc namespace
496 import gc namespace
502 gc.collect()
517 gc.collect()
774 import gc namespace
778 gc.collect()
H A Dtest_descr.py1130 import gc namespace
1131 if hasattr(gc, 'get_objects'):
1137 orig_objects = len(gc.get_objects())
1140 new_objects = len(gc.get_objects())
4544 import gc namespace
4552 gc.collect()
H A Dtest_dict.py5 import gc, weakref namespace
549 gc.collect()
554 gc.collect()
555 gc.collect()
556 self.assertFalse(gc.is_tracked(t), t)
559 self.assertTrue(gc.is_tracked(t), t)
560 gc.collect()
561 gc.collect()
562 self.assertTrue(gc.is_tracked(t), t)
H A Dtest_dictcomps.py45 import gc namespace
49 gc.collect()
H A Dtest_functools.py469 import gc namespace
473 gc.collect()
H A Dtest_gc.py4 import gc namespace
11 # cyclic gc.
21 # Create an instance I. Then gc hasn't happened again so long as
31 # gc collects it.
42 gc.collect()
44 self.assertEqual(gc.collect(), 1)
49 gc.collect()
51 self.assertEqual(gc.collect(), 1)
58 gc.collect()
61 self.assertEqual(gc
[all...]
H A Dtest_genexps.py273 import gc namespace
277 gc.collect()
H A Dtest_heapq.py384 import gc namespace
388 gc.collect()
H A Dtest_hotshot.py6 import gc namespace
138 gc.collect()

Completed in 739 milliseconds

12